Anthropic releases Claude Opus 5. The flagship model gains stronger reasoning and coding.
Anthropic has unveiled Claude Opus 5, its latest flagship AI model with improvements across reasoning, coding, and multimodal capabilities. The release marks another step in the competitive race for advanced language models.
July 29, 2026

Claude Opus 5 costs $5.00 per million input tokens and $25.00 per million output tokens, which puts it at exactly the same price point as Claude Opus 4.7 and Claude Opus 4.8 before it. Anthropic did not use this release to move the price up or down. That pricing decision is itself a signal: the capability gains were large enough to justify a new flagship name, but Anthropic held the line rather than charging a premium for the upgrade.
What this release costs beyond the API price
The $5.00/$25.00 per million token rate is the easy number. The harder costs are the ones that do not appear on the pricing page.
If you are running Claude Opus 4.7 or 4.8 in production today, switching to Claude Opus 5 is not a drop-in replacement in the way that a minor patch version update would be. A new flagship model with improvements across reasoning and coding means the output distribution has shifted. Prompts that were tuned against previous Opus behavior may produce different results, not necessarily worse ones, but different. Regression testing a production prompt library takes real time.
Rough cost estimate for a team migrating from Opus 4.8 to Opus 5:
- Prompt regression testing: 4 to 12 hours depending on how many production prompts you maintain
- Output format validation: if your application parses structured outputs, any format drift from the new model needs to be caught before it hits users
- Eval reruns: if you have an internal benchmark suite, budget time to rerun it against Opus 5 specifically
- Stakeholder sign-off: any customer-facing AI product will need someone to review a sample of new outputs before a production cutover
The token price is identical to the previous generation. The migration cost is not zero, but it is also not large. For teams that are not running Opus in production, the cost is simply the time to read the release notes and decide whether the improvements are relevant to your use case.
One category where the cost calculus changes: if you are using Claude Code or any agentic workflow that chains multiple Opus calls, the per-call cost is identical but the number of calls needed to complete a task may decrease if reasoning quality has improved. That is where the effective cost per task could actually drop even though the nominal price per token did not.
Steps to switch your integration to Claude Opus 5
- Update your model string. In any API call currently using
claude-opus-4-8orclaude-opus-4-7, change the model parameter toclaude-opus-5-20260707or the appropriate versioned identifier from the Anthropic release page. - Run your existing prompt suite against the new model before changing anything in production. Log both the old and new outputs side by side for at least 50 representative inputs.
- Check structured output parsing. If your code expects a specific JSON schema or formatted response, verify the new model's output still matches. Improved reasoning models sometimes produce more verbose or differently structured outputs by default.
- Review any few-shot examples in your prompts. If you included examples to steer behavior on prior Opus versions, test whether those examples still produce the intended effect or whether the model's improved baseline makes some of them redundant or counterproductive.
- Update any hardcoded cost estimates in your internal tooling. The price is the same as Opus 4.7 and 4.8, but if your team tracks model versions explicitly, update those references.
- Cut over production traffic incrementally. Route 5 to 10 percent of traffic to Opus 5 first, monitor outputs for a day, then increase.
Verification test: Send a single complex multi-step reasoning prompt that previously required multiple back-and-forth exchanges with Opus 4.8. If Opus 5 resolves it in fewer turns while maintaining accuracy, the upgrade is working as expected. This takes under five minutes to run.
How defensive prompt scaffolding written for old model failures becomes a bug against the new model
The failure mode that hits teams hardest with flagship model upgrades is not the obvious one. It is not that the new model is worse. It is that it is better in ways that invalidate assumptions baked into your prompts.
Here is the specific pattern: a team has a prompt that was carefully engineered to coax a previous Opus version into following a structured output format. The prompt includes explicit instructions like "respond only with valid JSON, no other text" because the older model occasionally added explanatory prose around the JSON block. The new model, with improved instruction-following, follows the format correctly on the first try. The prompt still works. But the team also added a validation layer that strips a specific prefix the old model used to add. That stripping logic now occasionally fires on valid content it was never designed to handle, because the new model's outputs are structured differently.
This class of bug, where defensive code written for a model's old failure modes becomes a source of errors against the model's new behavior, is documented across multiple model upgrade cycles. It does not show up in evals because evals test correctness, not the behavior of your downstream parsing logic.
The teams that avoid this problem do two things: they treat the output parsing layer as a first-class test target during any model upgrade, and they remove prompt scaffolding that was compensating for specific old-model weaknesses once they confirm the new model no longer needs it.
What the Hacker News thread focused on
It's wild that Opus 5 is at the same price as 4.8. Either the cost to serve has dropped significantly or Anthropic is subsidizing the frontier to hold market share. Probably both.
That comment from the Hacker News thread captures something real. Anthropic has now released multiple successive Opus generations without a price increase. Claude Opus 4.7, Claude Opus 4.8, and now Claude Opus 5 all land at $5.00/$25.00 per million tokens. Meanwhile, OpenAI's o1 sits at $15.00/$60.00, and Claude Fable 5 is priced at $10.00/$50.00 for specialized use cases.
The flat Opus pricing is a competitive choice, not just an engineering one. Anthropic is signaling that access to their flagship reasoning model should not require a pricing tier jump every six months. Whether that holds through the next generation is a separate question, but for now it makes the comparison between Claude and competing models at the premium tier more straightforward: you are paying frontier prices for frontier capability, and the price has not crept up as the capability has.
The Hacker News thread also surfaced skepticism about the "improvements across reasoning, coding, and multimodal capabilities" framing, which is nearly identical to the language used for every prior Opus release. That skepticism is fair. The specific benchmarks and comparisons that would make the claim meaningful are what matter, and those are in the Anthropic announcement rather than in the headline summary.
How model capability improvements actually compound in agentic pipelines
The "improvements across reasoning and coding" claim sounds like marketing language until you understand how small per-step gains multiply in agentic systems.
Think of a multi-step agent as a telephone game. Each step passes its output to the next step as context. If a model makes a reasoning error at step three of a ten-step task, every subsequent step is working from corrupted context. The final output reflects not just the error itself but all the downstream work built on top of it. A 5 percent improvement in per-step reasoning accuracy does not produce a 5 percent better final output. It produces something closer to 5 percent compounded across ten steps, which is meaningfully larger.
This is why teams running Claude Code or complex multi-agent workflows with tools like Multi-Claude tend to see larger practical gains from flagship model upgrades than teams doing single-turn question answering. The improvement at each node multiplies across the graph. A model that is more reliable at maintaining task state, not hallucinating function signatures, and following structured tool-call formats will produce qualitatively different outcomes at the end of a long agentic run, even if the per-token capability delta looks modest in a benchmark context.
The multimodal improvements are worth watching for teams building document processing pipelines. If the model's ability to reason about images and mixed-content documents has improved, tasks that previously required explicit image description preprocessing steps may now work with the raw content passed directly. That is a setup simplification that reduces latency and the surface area for preprocessing errors, even before any quality improvements are counted.
For context on how Claude's current generation compares to alternatives at similar price points, see our guide to separating LLM hype from real capability differences.
If Claude Opus 5 is relevant to your work, the earliest you could act on this productively is now, specifically by running your existing eval suite against the new model this week, because the price is identical to what you are already paying and the only cost is the testing cycle. There is no reason to wait for a future version or a price drop that may not come. The upgrade window where you get a better model at the same price does not stay open indefinitely once the next Opus generation ships.
Tools mentioned in this article
Some links in this article are affiliate links. Learn more.