AI Development

Claude Opus 5.5: Fable 5.1 Performance at Opus Price

September 24, 2026
10 min read
Orange neural network glowing over a developer desk at night
Share:

On September 22, 2026, Anthropic released Claude Opus 5.5, the first model of the new Claude 5.5 family. The pitch is one sentence: it performs at the level of Claude Fable 5.1 on most work and costs 40% less to run than Opus 5.

Same day it landed everywhere at once: Claude API, Bedrock, Google Cloud, Microsoft Foundry and GitHub Copilot. Here are the verified numbers, the new price table, the four breaking API changes, and what to do about them this week.

1. The launch facts

Opus 5.5 arrives three weeks after Fable 5.1 and two months after Opus 5, and it is the first release since Anthropic publicly called for pacing the frontier. It was tested before release by external evaluators including Frontier Design and METR, and on Anthropic’s automated behavioral audit of ~2,000 scenarios it is the strongest-performing model the company has tested to date.

Knowledge cutoff is June 2026. Active status with retirement not sooner than September 22, 2027. Claude Sonnet 5.5 and Claude Haiku 5.5 are promised in the coming weeks, and five-hour usage limits were raised on Pro, Max and Team plans.

Ficha del modelo

  • Launch: September 22, 2026 — model ID claude-opus-5-5 (Bedrock: anthropic.claude-opus-5-5)
  • Price: $4 input / $20 output per 1M tokens (was $5 / $25 on Opus 5)
  • Cache: $5 writes (was $6.25), $0.20 reads (was $0.50, −60%)
  • Speed: 30%+ faster output; Fast mode in Claude Code up to 2.5x at $8/$40
  • Availability: API + AWS, GCP, Foundry + GitHub Copilot (Pro+, Max, Business, Enterprise)

2. What actually improved

Three things changed at once: capability per dollar, raw speed, and safety. Anthropic positions it as Fable 5.1-class work — long codebase migrations, multi-repo engineering, computer use — at 40% of the running cost of Opus 5, combining a lower price per token with fewer tokens needed per task.

Early-adopter numbers back the efficiency story. Box reports ~one third fewer tokens than Opus 5 with ~40% shorter response time at equal accuracy. GitHub’s Copilot testing found tasks resolved comparably to Opus 5 with significantly fewer steps and tokens, plus faster recovery from errors in multistep tasks.

The three wins

💰

Price

−20% list price on input/output, −60% on cache reads. Typical workloads cost ~40% less than Opus 5.

Speed

30%+ faster output, terser answers served earlier. Fast mode pushes 2.5x for latency-critical agents.

🛡️

Safety

Best behavioral-audit scores to date, ~85% fewer sandbox-escape attempts, prompt-injection resistance at or above Opus 5.

Golden rule

If a workload ran on Opus 5, it runs on 5.5 cheaper and faster. If it needed Fable 5.1, test 5.5 first — on most work you will not see the difference, and your bill will.

3. Evidence, with sources

Anthropic’s headline benchmarks are vendor-run, so read them as directional: gains concentrated in coding, agentic and computer-use tasks, math and science reasoning, and long-horizon professional work, matching or exceeding Fable 5.1 and Mythos 5.1 on many evaluations.

The independent signals matter more. Box (early adopter): one third fewer tokens, 40% less latency, no accuracy loss. Copilot (early testing): same task resolution with fewer steps and tokens. Frontier Design and METR ran pre-release external evaluations as part of the pacing-the-frontier commitment.

Verified claims

  • Fable 5.1-level on most work, 40% cheaper to run than Opus 5 (Anthropic launch post)
  • Box: −33% tokens, −40% response time at equal accuracy (early adopter)
  • Copilot: comparable resolution, fewer steps/tokens, faster error recovery (GitHub changelog)
  • ~85% fewer environment-boundary attempts vs Opus 5 and Mythos 5.1 (system card)

Read the fine print

Headline benchmarks are Anthropic’s own. There is no independent head-to-head against GPT-6 Sol or Grok 4.7 yet — both launched within 48 hours. Run your own eval on your own workload before migrating production agents.

4. Migration: four breaking changes

The API contract is Fable 5.1’s now. Four changes break code running on Opus 5: thinking cannot be disabled, forced tool use returns an error, thinking blocks are tied to the model and the conversation, and the old computer_20251124 tool is rejected on the Claude API and Google Cloud.

One more change alters response shape without failing any request: text produced between tool calls now arrives inside thinking blocks that are empty at the default display setting. Apps streaming that text as progress updates go quiet between tool calls until they set a display value that returns the text.

Minimal migration patch

Swap the model string, drop forced tool choice, and set a display value if you stream progress.

model = “claude-opus-5-5”  # was claude-opus-5
# remove: tool_choice = {“any”}  → now returns an error
# remove: thinking = {“disabled”}  → no longer accepted
# if you stream text between tool calls:
# set display = “all” (or a value that returns thinking text)

Honest limits

  • Bio, cyber and frontier-development safeguards: many security tasks route to a different model; wider bio use needs the Life Sciences Verification Program review.
  • Thinking is always on — you pay reasoning tokens on every call, including trivial ones.
  • Preserved thinking blocks context-rewriting tricks used in distillation attacks — some agent memory hacks stop working.
  • EU AI Act watermarking applies, as on Fable 5.1; check compliance if you serve EU users.

5. What to do this week

This is a drop-in upgrade for almost every Opus 5 workload, but the thinking and tool-choice changes mean you should touch staging before production. Start with your most expensive agent loop: it is where the 40% lands first.

Migration checklist

  1. 1. Swap model strings to claude-opus-5-5 in one staging environment and re-run your eval suite.
  2. 2. Remove forced tool choice and thinking-disabled flags; fix streaming with the display parameter.
  3. 3. Compare tokens-per-task and latency against your Opus 5 baseline for one week.
  4. 4. Enable prompt caching deliberately — reads at $0.20/M make long-context agents dramatically cheaper.
  5. 5. Watch for Sonnet 5.5 and Haiku 5.5 in the coming weeks before locking tier decisions.

Zero data retention stays

Like the previous Opus series, 5.5 supports zero data retention for eligible workloads, and the system card documents safeguards across cyber, bio, agentic safety and alignment. Enterprise reviewers get a real document to read, not a blog post.

Verdict

Opus 5.5 is the least debatable kind of release: same-or-better quality on most work, materially cheaper, measurably faster, with the best safety scores Anthropic has published. The breaking API changes are small and well documented.

Migrate staging this week, measure on your workload, and hold one decision open: Sonnet 5.5 and Haiku 5.5 arrive within weeks and may reset the price-performance pick for lighter tiers.

Sources for this post

Primary and independent

  • • Anthropic launch post (Sep 22, 2026)
  • • Claude docs: Opus 5.5 overview + model IDs
  • • Opus 5.5 system card (PDF)
  • • Eigent AI: benchmarks and pricing breakdown
  • • GitHub changelog: Opus 5.5 in Copilot
Diego Rodriguez

Diego Rodriguez

Senior Full-Stack & AI Engineer

Diego has 10+ years of experience building production-grade AI-powered applications, from LLM orchestration and RAG pipelines to ML-driven risk detection and algorithmic trading systems.

Learn more about Diego