All models
OpenAI
GPT-5.6 Sol
openai/gpt-5.6-solimagesInput
$5
per M tokens
Output
$30
per M tokens
Cache read
$0.5
per M tokens
Context
1,050K
tokens
Pricing
| Input | $5 / M tokens |
| Output | $30 / M tokens |
| Cache read | $0.5 / M tokens |
| Routing | Free |
Provider list price. BYOK requests bill on your own provider account; managed credits draw down at exactly these rates. No markup, no request fee. Every request is metered per engineer and joined to the work it shipped.
Run it
Claude Code
export ANTHROPIC_BASE_URL=https://api.tokenspend.dev export ANTHROPIC_API_KEY=$TOKENSPEND_RAIL_KEY export ANTHROPIC_MODEL=openai/gpt-5.6-sol
curl
curl https://api.tokenspend.dev/v1/messages \
-H "content-type: application/json" \
-H "x-api-key: $TOKENSPEND_RAIL_KEY" \
-d '{"model":"openai/gpt-5.6-sol","max_tokens":256,"messages":[{"role":"user","content":"hello"}]}'Python · OpenAI SDK
from openai import OpenAI
client = OpenAI(base_url="https://api.tokenspend.dev/v1", api_key=os.environ["TOKENSPEND_RAIL_KEY"])
resp = client.chat.completions.create(
model="openai/gpt-5.6-sol",
messages=[{"role": "user", "content": "hello"}],
)Both dialects reach every model: send Anthropic-shaped requests or OpenAI-shaped requests and the rail translates. Prompts and responses are never stored.
