claudekit / updates / claude-opus-5
[ NEW · ]

Claude Opus 5

Anthropic introduced Claude Opus 5 on July 24, 2026, for complex agentic coding and enterprise work. It is priced at $5 per million input tokens and $25 per million output tokens, the same as Opus 4.8, with the model ID claude-opus-5, a 1M token context window, and 128k max output tokens. Adaptive thinking is now on by default, effort runs up to max, and two betas ship alongside it: mid-conversation tool changes and automatic fallbacks. It is the new default model on Claude Max and the strongest model on Claude Pro.

Official announcement →

This article is a summary based on official documentation.

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 thinking field run without thinking. On Claude Opus 5, the same requests run with adaptive thinking enabled by default. Thinking tokens count against max_tokens, so that limit needs revisiting; to preserve the old behavior, set thinking: {"type": "disabled"} explicitly.

  • Full effort range

    Claude Opus 5 supports the full effort range — low, medium, high, xhigh, and max — which customers can use to optimize for intelligence or conserve tokens for faster and cheaper results. The default is high on the Claude API and Claude Code, and max is 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-01 beta 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-01 beta header and fallbacks: "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

BenchmarkResult
Frontier-Bench v0.1Surpasses all models, with more than 2x Opus 4.8’s performance at a lower cost
CursorBench 3.2Within 0.5% of Fable 5’s peak at half Fable 5’s cost per task
ARC-AGI 33x higher score than the next-best model
Zapier AutomationBenchAround 1.5x the pass rate at the same cost as prior Claude models
OSWorld 2.0Surpasses Fable 5 at a third of Fable 5’s cost

Pricing & availability

ItemDetail
Input / output$5 / $25 per MTok (same as Opus 4.8)
Fast modeAround 2.5x the default speed, at twice the base price on the Claude Platform and through usage credits in Claude Code
Model IDclaude-opus-5 (Amazon Bedrock anthropic.claude-opus-5, Google Cloud claude-opus-5)
Context window1M tokens
Max output128k tokens (up to 300k on the Message Batches API with the output-300k-2026-03-24 beta header)
Training data cutoffMay 2026
PlansNew default model on Claude Max, strongest model on Claude Pro
PlatformsClaude.ai, Claude Code, Claude Cowork, Claude API, Amazon Bedrock, Google Cloud

Notes

  • Existing Opus 4.8 code does not work unchanged — requests without a thinking field now run with thinking, and thinking: {"type": "disabled"} combined with xhigh or max effort returns a 400 error. To keep thinking disabled, lower effort to high or 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 retirementclaude-opus-4-1-20250805 is deprecated and will be retired on August 5, 2026; migrate to Claude Opus 5 before then.
§ 6

Frequently Asked Questions

frequently asked
§ 6.1
What is Claude Opus 5?
It is Anthropic's model for complex agentic coding and enterprise work, providing greatly improved performance for the same cost as its predecessor, Opus 4.8. It is much stronger at verifying its work and iterating carefully until it succeeds. The model ID is `claude-opus-5` and pricing is $5 / $25 per MTok.
§ 6.2
When and where is it available?
Claude Opus 5 is available today on all platforms as of July 24, 2026. It is the new default model on Claude Max and the strongest model on Claude Pro, and it is available in Claude.ai, Claude Code, Claude Cowork, and on the Claude API.
§ 6.3
Does existing Opus 4.8 code work unchanged?
No. Requests sent without a `thinking` field now run with adaptive thinking enabled by default, so `max_tokens` needs to be revisited, and `thinking: {type: "disabled"}` combined with `xhigh` or `max` effort returns a 400 error. Everything else — the 1M context window, 128k output, prompt caching, batch processing, vision, and tools — is unchanged.
§ 6.4
What benchmark results were reported?
On Frontier-Bench v0.1 it surpasses all models, delivering more than 2x Opus 4.8's performance at a lower cost, and it scores 3x higher than the next-best model on ARC-AGI 3. On CursorBench 3.2 it comes within 0.5% of Fable 5's peak at half the cost per task, and on OSWorld 2.0 it surpasses Fable 5 at a third of the cost.
§ 6.5
How much does Fast mode cost?
Claude Opus 5 is offered in Fast mode, where it runs around 2.5 times the default speed. As with Opus 4.8, Fast mode is available at twice Opus 5's base price on the Claude Platform and through usage credits in Claude Code.
§ 6.6
Where can I find the official announcement?
The announcement is at anthropic.com/news/claude-opus-5, and the migration steps are in "Migrating from Claude Opus 4.8 to Claude Opus 5" on platform.claude.com.