Overview
Anthropic introduced Claude Opus 5 on July 24, 2026. Built for complex agentic coding and enterprise work, it provides greatly improved performance for the same cost as its predecessor, Opus 4.8. The model ID is claude-opus-5 and pricing is $5 per million input tokens and $25 per million output tokens. It is the new default model on Claude Max and the strongest model on Claude Pro.
Key features
-
Verifying its work
On long agentic runs, users often had to build verification steps into their prompts because the model would not check its own results. Claude Opus 5 is much stronger at verifying its work and iterating carefully until it succeeds. The official migration guide recommends removing existing self-check scaffolding, since explicit verification instructions now cause over-verification.
-
Thinking on by default
On Claude Opus 4.8, requests without a
thinkingfield run without thinking. On Claude Opus 5, the same requests run with adaptive thinking enabled by default. Thinking tokens count againstmax_tokens, so that limit needs revisiting; to preserve the old behavior, setthinking: {"type": "disabled"}explicitly. -
Full effort range
Claude Opus 5 supports the full effort range —
low,medium,high,xhigh, andmax— which customers can use to optimize for intelligence or conserve tokens for faster and cheaper results. The default ishighon the Claude API and Claude Code, andmaxis worth testing for capability-critical work. -
Mid-conversation tool changes (beta)
Changing the tool list partway through a conversation used to invalidate the prompt cache, adding cost and latency. With the
mid-conversation-tool-changes-2026-07-01beta header on the Claude Platform, developers can now change which tools Claude can use without invalidating the prompt cache. -
Automatic fallbacks (beta)
Requests flagged by the safety classifiers previously had to be handled by the application. With the
server-side-fallback-2026-07-01beta header andfallbacks: "default", users can now choose to have requests that are flagged on Opus 5 (or Fable 5) automatically route to another model. In Claude.ai, Claude Code, and Claude Cowork, any flagged requests will fall back to Opus 4.8 by default. -
Lower prompt caching minimum
The minimum cacheable prompt length is now 512 tokens, down from 1,024, so shorter prompts can create cache entries with no code changes.
Benchmarks
| Benchmark | Result |
|---|---|
| Frontier-Bench v0.1 | Surpasses all models, with more than 2x Opus 4.8’s performance at a lower cost |
| CursorBench 3.2 | Within 0.5% of Fable 5’s peak at half Fable 5’s cost per task |
| ARC-AGI 3 | 3x higher score than the next-best model |
| Zapier AutomationBench | Around 1.5x the pass rate at the same cost as prior Claude models |
| OSWorld 2.0 | Surpasses Fable 5 at a third of Fable 5’s cost |
Pricing & availability
| Item | Detail |
|---|---|
| Input / output | $5 / $25 per MTok (same as Opus 4.8) |
| Fast mode | Around 2.5x the default speed, at twice the base price on the Claude Platform and through usage credits in Claude Code |
| Model ID | claude-opus-5 (Amazon Bedrock anthropic.claude-opus-5, Google Cloud claude-opus-5) |
| Context window | 1M tokens |
| Max output | 128k tokens (up to 300k on the Message Batches API with the output-300k-2026-03-24 beta header) |
| Training data cutoff | May 2026 |
| Plans | New default model on Claude Max, strongest model on Claude Pro |
| Platforms | Claude.ai, Claude Code, Claude Cowork, Claude API, Amazon Bedrock, Google Cloud |
Notes
- Existing Opus 4.8 code does not work unchanged — requests without a
thinkingfield now run with thinking, andthinking: {"type": "disabled"}combined withxhighormaxeffort returns a 400 error. To keep thinking disabled, lower effort tohighor below. - Response length and instruction following changed — Claude Opus 5 calibrates response length to task complexity, so default responses run longer, and it follows instructions more literally with less implicit generalization. Prompt explicitly for conciseness or a target length.
- Spawns subagents more readily — it delegates to subagents more readily than Opus 4.8, so give explicit guidance or cap the subagent count where that matters.
- Built-in progress updates — agentic traces include progress updates, so scaffolding that forces interim status messages can be removed.
- Safeguards — Claude Opus 5’s safeguards are designed to allow beneficial uses of the model in both cybersecurity and biology. They allow Opus 5 to find vulnerabilities in source code, but block “binary-based” vulnerability scanning; the Cyber Verification Program facilitates cybersecurity work that would otherwise be impeded by the model’s safeguards. Opus 5 remains behind Mythos 5 on cybersecurity exploitation tasks and autonomous biology research.
- Opus 4.1 retirement —
claude-opus-4-1-20250805is deprecated and will be retired on August 5, 2026; migrate to Claude Opus 5 before then.