Claude Sonnet 4.6 API pricing

Anthropic's Sonnet 4.6 tier. Available at about 50% below official list.

In short: Claude Sonnet 4.6 costs $1.5 per 1M input tokens and $7.5 per 1M output tokens through this route, against an official list price of $3 / $15 — about 50% below official list. At 50M input and 10M output tokens a month that works out to about $150. Rates verified 2026-09-26.
RouteInput / 1MOutput / 1M
Official list price$3$15
Discounted route$1.5$7.5

USD, standard tier, verified 2026-09-26.

Check live rates on the platform →Free to sign up · $1 minimum top-up · No prepayment

Specifications

VendorAnthropic
Context window—
Max output—
CategoryUS frontier

What Claude Sonnet 4.6 costs at your volume

Usage levelInput / output per monthMonthly cost
Light — prototyping, a few thousand calls5M / 1M$15.00
Working — one developer, daily use50M / 10M$150.00
Heavy — team or agent loops in production500M / 100M$1,500.00

Calculated at $1.5 input / $7.5 output per 1M tokens, assuming a 5:1 input-to-output ratio. Your ratio decides the real number — run your own figures through the cost calculator.

When Claude Sonnet 4.6 is the right call

At $1.5 per million input tokens this sits in the mid-range band. It is a good fit for the everyday mix — agent loops, chat assistants, code editing, and anything interactive where latency and quality both matter.

It is usually the wrong call for either extreme: trivial bulk jobs that a cheaper model handles identically, or the hardest reasoning tasks where a flagship earns its premium.

Where Claude Sonnet 4.6 sits in the index

One model, three rankings — because the model that is cheapest per input token is frequently not the cheapest per task. Output tokens cost a median of 4.0× what input costs across these 216 models, so a workload that generates more than it reads flips the order. Percentile is the share of models that cost more than this one.

Claude Sonnet 4.6 against all 216 models in the rate index. Rates checked 2026-09-26.
Ranked byPositionPercentileRate
Input rate173 of 21620%$1.5
Output rate180 of 21617%$7.5
Agent mix 1:3, blended182 of 21616%$6.00

On an agent mix the lowest blended rate in the same index is Gemma2 9B It at $0.01 per 1M tokens — about 600.0× less than this model at the same ratio. That gap is what the re-ranked index exists to show: sorting by input price alone can put a model 68 places out.

Inside Anthropic's 12 listed models, Claude Sonnet 4.6 is 3 of 12 on the same agent mix, between Claude Haiku 4.5 at $2.00 and Claude 4 Opus at $30.00 per 1M blended tokens. Most real decisions are made inside one vendor's range rather than across the whole index — see the full Anthropic range.

Similarly priced alternatives

Similarly pricedVendorIn / out per 1Mvs this
Kimi K3Moonshot$1.5 / $7.5same
GPT-5.6 TerraOpenAI$1 / $6−$2.00
Claude Sonnet 5Anthropic$1 / $5−$3.00

Blended comparison (input + output per 1M). Price is one axis — the models above are not interchangeable, they are the ones worth testing side by side at this budget.

Calling Claude Sonnet 4.6

The identifier you send is claude-sonnet-4-6 — copy it exactly, because a mismatch returns a model error rather than a connection error, which sends most people to debug the wrong thing. Everything else is a base URL argument; official SDKs work unchanged.

from openai import OpenAI

client = OpenAI(base_url="https://aicomp.ai/v1", api_key="sk-...")

resp = client.chat.completions.create(
    model="claude-sonnet-4-6",
    messages=[
        {"role": "system", "content": "Answer in one short paragraph."},
        {"role": "user", "content": "Explain what changed in this release."},
    ],
    max_tokens=300,
)

# prompt_tokens / completion_tokens 是真实账单的唯一依据 —— 记下来,别猜
print(resp.usage.prompt_tokens, resp.usage.completion_tokens)

Log the usage object on every call, not just while you are optimising. Rates follow vendor promotions and can move without notice, so a per-call record is the only thing that tells you later whether a price change actually hit you — and in which direction.

import json

# 把每次调用的 usage 落盘,一周后你就有了自己的 in:out 比例。
# 拿这个比例去 /calculator/ 比价,比对着价目表猜准得多 ——
# output 单价是 input 的好几倍,猜错方向就是往贵了算。
with open("usage.jsonl", "a") as fh:
    fh.write(json.dumps({
        "model": model,
        "in": resp.usage.prompt_tokens,
        "out": resp.usage.completion_tokens,
    }) + "\n")

Setting it up

Pointing an existing integration at this model is a base URL change, not a rewrite. Pick your tool:

FAQ

How much does Claude Sonnet 4.6 cost per million tokens?

$1.5 per million input tokens and $7.5 per million output tokens. Anthropic/OpenAI list the same model at $3 / $15

Is Claude Sonnet 4.6 cheaper than buying direct?

Yes — currently 50% lower on input and 50% lower on output than the published list price. Rates move with upstream promotions, so check the live number before budgeting.

What does Claude Sonnet 4.6 cost per month in practice?

At a 5:1 input-to-output ratio it is about $15.00 a month for light use (5M input tokens) and roughly $1,500.00 for heavy use (500M input). Agent workloads sit at the high end because every turn resends the context — see what actually drives Claude Code cost.

Which models cost about the same as Claude Sonnet 4.6?

The comparison table further up this page lists the three closest in blended price. If you are choosing on cost alone, start there and test the top two on your own prompts — price per token is only half the equation, the other half is how many tokens a model needs to finish the task.

How do I start using Claude Sonnet 4.6?

You need an API key, then point your client at the gateway base URL. It is a one-line change in most SDKs — see the SDK setup guide, or the Claude Code and Cursor guides for those tools.

What is the Claude Sonnet 4.6 API price per 1M tokens?

$1.5 per 1M input and $7.5 per 1M output. The two directions are quoted separately because a request is billed twice — once for what you send, once for what comes back — and the rates differ.

How much more does Claude Sonnet 4.6 charge for output than input?

Output tokens cost 5.0x what input tokens do here — $1.5 per 1M in against $7.5 per 1M out. The median output-to-input multiple across our full price index is 4.0x, so this model sits above that line. It matters more than it looks: a coding agent writes far more than it reads, so on this model the output rate — not the input rate people usually compare — decides the bill. See why output pricing dominates.

How much does Claude Sonnet 4.6 cost for a coding agent?

About $1,500.00 a month at 500M input and 100M output tokens — the shape a coding assistant really produces, because every turn resends the whole context and the model writes more than it reads. The same workload at official list would be roughly $3,000.00. The biggest lever is usually not the model but how much context you resend each turn — see what actually drives agent cost.

Why does Claude Sonnet 4.6 show two different prices?

Because there are two routes to the same model. Anthropic publishes a list price ($3 / $15 per 1M) while gateways resell access to the same weights, occasionally under upstream promotional pricing. The table at the top of this page shows both side by side. Promotions move, so read the number as a snapshot taken 2026-09-26, not as a standing discount.

Get Claude Sonnet 4.6 access