DoppAPI is a non-custodial API credit reseller. Pay in crypto, get an instant model-locked key at a fraction of the vendor list price. Works with any OpenAI SDK, Cursor, Claude Code, or raw /v1 call.
sk-… key is delivered on the success screen and via Telegram. It is model-locked (only works for the model you bought) and hard-capped at exactly the amount you paid — no surprise bills.base_url = "https://doppapi.com/v1"
api_key = "sk-…" # your DoppAPI key
from openai import OpenAI
client = OpenAI(
base_url="https://doppapi.com/v1",
api_key="sk-…",
)
resp = client.chat.completions.create(
model="gpt-5.6-sol",
messages=[{"role": "user", "content": "hello"}],
)
print(resp.choices[0].message.content)
curl https://doppapi.com/v1/chat/completions \
-H "Authorization: Bearer sk-…" \
-H "Content-Type: application/json" \
-d '{"model":"gpt-5.6-sol","messages":[{"role":"user","content":"hello"}]}'
Set the base URL and key in your agent's model config. Any tool that speaks the OpenAI /v1/chat/completions schema works unchanged — just swap the endpoint and the key.
The bigger your order, the more tokens per dollar (bonus multiplier over the vendor list price).
| Model | Provider | DoppAPI $ / 1M tokens |
|---|---|---|
| gpt-5.6-sol | OpenAI | $5.00 |
| claude-opus-4-8 | Anthropic | $5.00 |
| claude-fable-5 | Anthropic | $10.00 |
| claude-sonnet-5 | Anthropic | $2.00 |
| gemini-3.1-pro-preview | $2.00 | |
| grok-4.5 | xAI | $2.00 |
| o3-pro | OpenAI | $20.00 |
| Model | Type | DoppAPI price |
|---|---|---|
| grok-imagine-video-1.5-preview | image→video, audio | $0.06 / sec |
| grok-imagine-image | image | $0.018 / image |
| gemini-3.1-flash-lite-image | image | $0.03 / image |
| gemini-3-pro-image-preview | image | $0.12 / image |
| speech-2.8-turbo | voice | $0.01 / call |
| gpt-4o-mini-tts | voice | $0.09 / call |
| doubao-seedream-5-0-pro temporarily down | image | $0.01 / image |
/v1/chat/completions for LLM, native endpoints for image/voice).