Ψ
PHANTOM
Hardware TEE Attestation · Hugging Face Weight Verification · Zero Logs

Anonymous AI Inference.Crypto in, zero accounts.

Run frontier models (DeepSeek V3.2, DeepSeek R1, Claude 3.7 Sonnet, o3-mini) inside hardware-attested Intel TDX enclaves and confidential zero-retention proxies.

Zero Accounts & KYC

No email, phone, or identity verification. Pay with Monero, Bitcoin, USDT, or card and receive an instant cryptographically encrypted API key.

Model Weight Attestation

Curated models run in Intel TDX + NVIDIA CC enclaves. Cryptographic Merkle roots prove exact Hugging Face model weights with anti-downgrade guarantees.

OpenAI Drop-in API

Change your base URL to https://phantom.codes/v1. Works natively with OpenAI Python/Node SDKs, LangChain, and Cursor.

Drop-in OpenAI SDK Compatibility

Works immediately with your existing tools, agents, and libraries.

Python / OpenAI SDK● Live TEE Gateway
from openai import OpenAI

client = OpenAI(
    base_url="https://phantom.codes/v1",
    api_key="sk-phantom-your-key-here"
)

response = client.chat.completions.create(
    model="phala/deepseek-v3.2",
    messages=[{"role": "user", "content": "Explain confidential compute in one sentence."}],
    stream=True
)

for chunk in response:
    print(chunk.choices[0].delta.content or "", end="")