Direct access to Claude Opus/Sonnet, GPT-5.4, Gemini 3.x and more.
Up to 94% cheaper than official pricing. No VPN required.
Same models, same quality. Dramatically lower price.
One env var. Full Claude Code CLI support with Opus/Sonnet/Haiku.
Change base_url, done. Works with Python, Node.js, any OpenAI client.
Direct connect from anywhere. Low-latency global routing.
Cache tokens = input tokens. No hidden surcharges. Pay only for what you use.
Same SDK you already know. Just change the base URL.
from openai import OpenAI
client = OpenAI(
api_key="sk-your-key",
base_url="https://token.openclaw-token.shop/v1"
)
# Works with Claude, GPT, Gemini - same interface
response = client.chat.completions.create(
model="claude-sonnet-4-6",
max_tokens=1024,
messages=[{"role": "user", "content": "Hello!"}]
)
print(response.choices[0].message.content)
import OpenAI from "openai";
const client = new OpenAI({
apiKey: "sk-your-key",
baseURL: "https://token.openclaw-token.shop/v1",
});
const res = await client.chat.completions.create({
model: "claude-sonnet-4-6",
max_tokens: 1024,
messages: [{ role: "user", content: "Hello!" }],
});
console.log(res.choices[0].message.content);
# One-time setup
export ANTHROPIC_BASE_URL="https://token.openclaw-token.shop"
export ANTHROPIC_API_KEY="sk-your-key"
# Launch Claude Code
claude
# Or with specific model
claude --model claude-opus-4-6
curl https://token.openclaw-token.shop/v1/chat/completions \
-H "Authorization: Bearer sk-your-key" \
-H "Content-Type: application/json" \
-d '{
"model": "claude-sonnet-4-6",
"max_tokens": 1024,
"messages": [{"role": "user", "content": "Hello!"}]
}'
View all models → •
Live API: GET /api/pricing
Create your API key and start making requests in under a minute.