Skip to content
All models
Most Popular · Anthropic

Claude Sonnet 4.6

Best balance of speed and intelligence. Production ready.

Context
200k
Max output
64k
Pro input
$0.6/M
Pro output
$3/M

Pricing — every plan

Plan
Input / 1M
Output / 1M
Official direct
$3.00
$15.00
Basic (free, 70% off)
$0.90
$4.50
Pro ($19 lifetime, 80% off)
$0.60
$3.00

Code samples

Anthropic SDK (Python)
from anthropic import Anthropic

client = Anthropic(
    base_url="https://claudeapi.cheap/api/proxy",
    api_key="sk-cc-your-key-here",
)
msg = client.messages.create(
    model="claude-sonnet-4-6",
    max_tokens=1024,
    messages=[{"role": "user", "content": "Hello!"}],
)
print(msg.content[0].text)
OpenAI SDK (Python) — works for all 3 vendors
from openai import OpenAI

client = OpenAI(
    base_url="https://claudeapi.cheap/api/proxy/v1",
    api_key="sk-cc-your-key-here",
)
resp = client.chat.completions.create(
    model="claude-sonnet-4-6",
    messages=[{"role": "user", "content": "Hello!"}],
)
print(resp.choices[0].message.content)
cURL
curl https://claudeapi.cheap/api/proxy/v1/messages \
  -H "x-api-key: sk-cc-your-key-here" \
  -H "anthropic-version: 2023-06-01" \
  -H "content-type: application/json" \
  -d '{
    "model": "claude-sonnet-4-6",
    "max_tokens": 1024,
    "messages": [{"role": "user", "content": "Hello!"}]
  }'

Tools that work great with Claude Sonnet 4.6

FAQ

What does Claude Sonnet 4.6 cost via ClaudeAPI.cheap?

On the Pro plan ($19 lifetime), Claude Sonnet 4.6 is $0.60 per 1M input tokens and $3.00 per 1M output tokens. That's 80% off the official price ($3/$15). The Basic plan is free forever at 70% off.

Is Claude Sonnet 4.6 the same model as direct API access?

Yes. The proxy forwards requests to the same underlying model with the same context window (200k tokens) and capabilities. Only vendor-fingerprint headers are stripped. Behavior, output quality, and reasoning are identical.

How do I switch my existing code to Claude Sonnet 4.6 via ClaudeAPI.cheap?

Change one line — the base URL — in your existing Anthropic or OpenAI SDK initialization. Use https://claudeapi.cheap/api/proxy for Anthropic-format calls or https://claudeapi.cheap/api/proxy/v1 for OpenAI-format. Use your sk-cc-... key as the API key. No code changes beyond that.

What's the rate limit on Claude Sonnet 4.6?

Pro plan caps at 500 requests/min and 2M tokens/min globally across all models. Basic plan is 200 RPM / 1M TPM. Newer models may have lower upstream caps that float — see /status for live availability.

Does Claude Sonnet 4.6 support streaming and tools?

Yes. Streaming, tool/function calling, and prompt caching all work end-to-end. Vision is supported where the upstream model supports it.

Ready to use Claude Sonnet 4.6 cheaper?

Free Basic plan, $19 lifetime Pro. Crypto only. No subscription.

Get an API key — free