Anthropic released Claude Sonnet 5 on June 30, 2026, and the pitch is simple: near-flagship performance at a fraction of the price. It is now the default model for every Free and Pro user, and it is built to act rather than just answer - planning, browsing, running terminals, and working autonomously at a level that used to require a much bigger model.
If you build agents, ship AI features, or just want to know what changed before you upgrade your API calls, here is what matters: what is new, how it is priced, how it benchmarks against Opus 4.8 and Sonnet 4.6, and what you need to fix before you migrate.
For the full technical profile, you can also visit our Claude 5 Sonnet model page.
What Is Claude Sonnet 5?
Claude Sonnet 5 is the newest model in Anthropic’s mid-tier Sonnet line, replacing Sonnet 4.6 as the default across Claude’s Free and Pro plans. Max, Team, and Enterprise users also have access, and it is available in Claude Code and via the Claude API as claude-sonnet-5.
Anthropic calls it the most agentic Sonnet model yet. Rather than positioning it purely as a cheaper Opus substitute, the company frames Sonnet 5 as a model built for multi-step, tool-using work: making a plan, executing it across browsers and terminals, and running for long stretches without supervision - the kind of task that a few months ago needed Opus-class compute.
The result lands close to Opus 4.8 on reasoning, tool use, coding, and knowledge work, clearly beats Sonnet 4.6, and costs less than half as much as Opus to run.
What Is New in Claude Sonnet 5
Here is what actually changed under the hood.
1. Built for Agentic Work by Default
Sonnet 5 is tuned specifically for multi-step, tool-using tasks - planning a sequence of actions, operating a browser, driving a terminal, and recovering when a step fails, rather than stopping and waiting for a human to intervene. This is the headline capability shift from Sonnet 4.6, and it is why Anthropic is positioning Sonnet 5 as an agent model first, a chat model second.
2. Adaptive Thinking, On by Default
Adaptive thinking - where the model decides for itself how much reasoning a given turn actually needs - is now the default behavior on Sonnet 5. You no longer opt into it; it is simply how the model runs.
3. An Effort Dial Instead of a Model Switch
Sonnet 5 exposes the same effort parameter used across recent Claude models, letting you trade cost for accuracy on a single model rather than jumping between Sonnet and Opus. Lower effort keeps latency and spend down for routine calls; higher effort pushes performance closer to Opus 4.8 territory on the tasks that need it. That single-model cost-performance curve is the core idea behind this release.
4. 1M Token Context, 128K Output
Sonnet 5 ships with a 1 million token context window and up to 128,000 output tokens per request - matching the ceiling on Anthropic’s flagship models. For agents that need to hold an entire codebase, a long research thread, or hours of tool output in context, that headroom carries straight through to Sonnet-tier pricing.
5. Built-In Cyber Safety Protections
Sonnet 5 launches with cyber safety protections enabled by default, designed to detect and block cybersecurity-related misuse. Anthropic has deliberately kept these lighter-touch than the classifiers it shipped with Claude Fable 5, which drew heavy criticism for silently degrading legitimate research and security queries - more on that below.
6. A New Tokenizer
Sonnet 5 uses an updated tokenizer that produces roughly 30% more tokens for the same input text compared to Sonnet 4.6. It is the same tokenizer change Anthropic introduced with Opus 4.7 and carried into Fable 5. It does not show up in the per-token price, but it absolutely shows up in your bill - see the migration section below.
Claude Sonnet 5 Pricing
| Model | Input (intro, through Aug 31, 2026) | Output (intro) | Input (standard) | Output (standard) |
|---|---|---|---|---|
| Claude Sonnet 5 | $2 / MTok | $10 / MTok | $3 / MTok | $15 / MTok |
| Claude Sonnet 4.6 | - | - | $3 / MTok | $15 / MTok |
| Claude Opus 4.8 | - | - | $5 / MTok | $25 / MTok |
A few details worth flagging:
- The introductory rate is temporary. $2/$10 per MTok holds through August 31, 2026, after which Sonnet 5 reverts to $3/$15 - the exact same price Sonnet 4.6 already charges. In other words, once the promotional window ends, you are paying Sonnet 4.6 pricing for a materially better model.
- No Priority Tier. Every other Claude Sonnet 4.6 feature carries over to Sonnet 5 except Priority Tier, which is not supported at launch.
- Rate limits went up. Anthropic increased rate limits across Chat, Cowork, Claude Code, and the Claude Platform to absorb the higher token counts that come with running higher effort levels more often.
- The tokenizer changes your real cost. Because the same text now produces about 30% more tokens, your effective cost per request can rise even though the advertised per-token price is lower than Opus. Measure this on your own traffic - do not assume the sticker price tells the whole story.
Claude Sonnet 5 vs Opus 4.8 and Sonnet 4.6
Early benchmark reporting on Anthropic’s agentic coding evaluation puts the three models like this:
| Benchmark | Claude Sonnet 5 | Claude Opus 4.8 | Claude Sonnet 4.6 |
|---|---|---|---|
| Agentic coding | 63.2% | 69.2% | 58.1% |
| Input pricing | $2-3 / MTok | $5 / MTok | $3 / MTok |
| Output pricing | $10-15 / MTok | $25 / MTok | $15 / MTok |
| Context window | 1M tokens | 1M tokens | 1M tokens |
| Max output | 128K tokens | 128K tokens | 128K tokens |
The pattern is clear: Sonnet 5 sits meaningfully above Sonnet 4.6 and closes a real chunk of the gap to Opus 4.8, without closing the price gap in the same direction - it is still less than half of Opus on both input and output. Anthropic has also said Sonnet 5 edges ahead of Opus on at least one knowledge-work benchmark, which is a reminder that “flagship” and “best for this specific task” are not always the same model.
Migrating From Sonnet 4.6 to Sonnet 5
Anthropic flags three behavior changes that will actually break existing integrations if you swap the model string without reading the docs:
- Manual extended thinking is gone. Setting
thinking: {type: "enabled", budget_tokens: N}now returns a 400 error. It was already deprecated on Sonnet 4.6; on Sonnet 5 it is removed outright. Adaptive thinking is the only mode. - Non-default sampling parameters now error. Setting
temperature,top_p, ortop_kto a non-default value returns a 400 error, matching the behavior already in place on Opus 4.7 and Opus 4.8. If your harness tunes these per-request, that code path will start failing. - Token counts will shift. The new tokenizer produces about 30% more tokens for the same text. Use the token counting API with
model: "claude-sonnet-5"before you migrate production traffic, not after.
Practical checklist:
- Swap
claude-sonnet-4-6forclaude-sonnet-5in staging first, not production. - Remove any manual
thinking.budget_tokensconfiguration and any customtemperature/top_p/top_koverrides. - Re-run the token counting API against representative prompts to see your real cost delta under the new tokenizer.
- Set your
effortlevel deliberately instead of relying on defaults - low for routine calls, higher for the agentic work Sonnet 5 is built for. - If you were relying on Priority Tier, keep that traffic on a model that still supports it.
The Bigger Picture
Sonnet 5 is not landing in a vacuum. It is the first major model release since Anthropic confidentially filed a draft S-1 with the SEC on June 1, 2026, following a $65 billion Series H round that valued the company at $965 billion. It also arrives less than three weeks after the US Commerce Department ordered Anthropic to suspend Claude Fable 5 and Mythos 5 worldwide - a story we covered in full in Claude Fable 5: The Launch, the Backlash, and the Government Ban.
That context matters for the safety framing here. Sonnet 5’s built-in cyber protections are deliberately lighter-touch than what shipped with Fable 5, which silently downgraded responses for users it suspected of legitimate security and biology research - and triggered both a public apology and, days later, a government-ordered shutdown. With Fable 5 and Mythos 5 still offline, Sonnet 5 and Opus 4.8 are effectively the ceiling of what most developers can access from Anthropic right now, which raises the stakes on getting this release right.
Who Should Care About Claude Sonnet 5
Sonnet 5 is worth your attention if you fall into any of these buckets:
- Agent builders running multi-step, tool-using workflows who previously needed Opus just to keep an agent from stalling out.
- Cost-sensitive teams who want near-flagship performance without flagship pricing, especially while the introductory rate lasts.
- Anyone still on Sonnet 4.6 - the standard-rate pricing is identical, so this is close to a free upgrade once you handle the breaking changes.
- Teams running long, high-context agents that benefit from the full 1M token window and 128K output ceiling at Sonnet-tier cost.
If your workload is genuinely at the hardest end of the difficulty curve - deep multi-hour investigations, the most demanding coding tasks - Opus 4.8 still leads on raw benchmark performance. For most everyday agentic and coding work, Sonnet 5 at high effort is now a serious contender.
Where Claude Sonnet 5 Fits for Appaca Users
A cheaper, more agentic model is most useful when it is wired into something that can actually act on it.
Appaca is an AI workspace for operations teams - describe the internal tool you need and Appaca builds it with a database, integrations, and AI co-workers already wired in, powered by OpenAI, Anthropic, and Google out of the box. When Anthropic ships a model like Sonnet 5, Appaca teams get the upgrade without touching a single API key or model string.
That matters most for the AI co-workers and autonomous agents you run inside Appaca - lead scoring assistants, invoice processors, SOP assistants, onboarding trackers. Sonnet 5’s whole selling point is agentic reliability at a lower price, which is exactly the profile you want powering a tool that runs unattended in the background of your operation.
You can browse the full range of models Appaca supports, including Anthropic’s lineup, on our AI models directory.
The Bottom Line
Claude Sonnet 5 is Anthropic’s bet that most agentic work does not need a flagship model - it needs a flagship-adjacent model at half the price, with an effort dial to reach for more when a task actually demands it. It beats Sonnet 4.6 outright, narrows the gap to Opus 4.8 on agentic coding, and will cost the same as Sonnet 4.6 once the introductory pricing window closes on August 31, 2026.
The catch is the same one that has followed every recent Claude release: a new tokenizer that inflates token counts by roughly 30%, plus breaking changes around manual thinking budgets and sampling parameters that will trip up anyone who migrates without reading the release notes first.
If you are running production traffic on Sonnet 4.6, this is worth testing in staging now - the introductory pricing window will not last, and the earlier you catch the breaking changes, the smoother the switch.
For the full spec sheet, benchmark breakdown, and side-by-side comparisons with other leading models, visit the Claude 5 Sonnet model page next.