Anthropic released Claude Fable 5 on June 9, 2026 — alongside Claude Mythos 5 — and it marks a meaningful threshold: for the first time, Mythos-class capabilities are publicly available, not restricted to research partners. Fable 5 is Anthropic's most capable generally available model to date, state-of-the-art on nearly every published benchmark, and priced at $10/$50 per million tokens — less than half the cost of Mythos Preview. It also brings a significant architectural change: adaptive thinking is always on, removing the explicit configuration step that Opus 4.8 required.

The headline is the performance gap over Opus 4.8, which was itself a significant jump over Opus 4.7. SWE-Bench Pro goes from 69.2% (Opus 4.8) to 80.3% (Fable 5). That 11-point gap on the benchmark most representative of real agentic coding is the number that will drive adoption decisions. This article covers what you need to know to evaluate and integrate Fable 5: the Fable/Mythos distinction, the full benchmark picture, pricing and caching economics, the safeguard model, and the API integration patterns (Anthropic, 2026a).

Fable 5 and Mythos 5: the same model, different access

Anthropic released two models on June 9. Understanding the distinction matters for enterprise security teams and regulated-industry customers who may qualify for different access levels.

Generally Available
Claude Fable 5
API ID: claude-fable-5
  • Full Mythos-class capabilities
  • Safety classifiers active — sensitive topics routed to Opus 4.8
  • Triggers safeguards in <5% of sessions
  • Available on all platforms: API, Bedrock, Vertex, Foundry, Copilot
  • Free on Pro/Max/Team through June 22; usage credits after
Limited Access
Claude Mythos 5
API ID: claude-mythos-5
  • Same underlying model as Fable 5
  • Safety classifiers partially lifted in approved areas
  • Available only through Project Glasswing
  • Approved customers: cyberdefenders, infrastructure providers
  • Not available on consumer plans or general API access

The core insight: Fable 5 and Mythos 5 share the same weights. The difference is entirely in what the safety layer permits. For most engineering teams, Fable 5 is the right choice — the safeguards trigger rarely enough that they are not a practical obstacle for standard software development, data engineering, or analysis workloads. Mythos 5 is relevant specifically for security teams performing offensive research, red-teaming, or infrastructure hardening that requires capabilities the Fable 5 classifiers would otherwise block (Anthropic, 2026a).

Benchmark results

Benchmark Fable 5 Opus 4.8 ChatGPT 5.5 Gemini 3.1 Pro
SWE-Bench Pro 80.3% 69.2% 58.6%
AutomationBench 17.4% 15.5% 12.9% 9.6%

Anthropic describes Fable 5 as state-of-the-art on nearly all tested benchmarks. These are the two benchmarks with independent cross-model comparisons available at launch — the SWE-Bench Pro figure is the most operationally significant, measuring real agentic coding on underspecified tasks rather than clean problem sets (Anthropic, 2026a; Anthropic, 2026b).

80.3%
SWE-Bench Pro
+11 pp over Opus 4.8 (69.2%) and +21.7 pp over ChatGPT 5.5 (58.6%)
17.4%
AutomationBench
vs Opus 4.8 at 15.5%, ChatGPT 5.5 at 12.9%, Gemini 3.1 Pro at 9.6%
1M
Context window
Same as Opus 4.8. 128K max output per request; 300K via Batch API with beta header
Always
Adaptive thinking
On by default — no configuration required. Raw thinking tokens are never returned in the response

Pricing and caching economics

Fable 5 is priced at $10/$50 per million tokens (input/output) — the same as Opus 4.8's Fast Mode, and less than half the cost of Mythos Preview. The Batch API halves this further to $5/$25 per million, matching Opus 4.8's Standard-tier input pricing for asynchronous workloads (Anthropic, 2026b).

Tier / Mode Input (per M tokens) Output (per M tokens) Notes
Fable 5 standard $10.00 $50.00 All platforms
Fable 5 — Batch API 50% off $5.00 $25.00 Async jobs; same price as Opus 4.8 Standard input
Cache write (5 min TTL) $12.50 (1.25× base) Min 1,024 tokens; same multiplier as Opus 4.8
Cache write (1 hr TTL) $20.00 (2× base) Pay once, reads amortised across the session
Cache read (hit) $1.00 (90% saving) Every turn after the first write

The caching multipliers are identical to Opus 4.8 (1.25× for 5-minute writes, 2× for 1-hour writes, 90% saving on reads) — only the base price has increased. In practice, the cache read price of $1.00/M means that a 50,000-token system prompt shared across an agentic session costs $0.50 to write once and $0.05 per read thereafter. For long-running pipelines that inject the same large context repeatedly, the caching economics are the same as on Opus 4.8; only the absolute numbers are higher (Anthropic, 2026b).

The adaptive thinking change

The most significant API-level change from Opus 4.8 is that adaptive thinking is always active on Fable 5. You do not pass a thinking parameter to enable it; you cannot disable it. The model allocates thinking tokens internally based on task complexity — suppressing reasoning for simple lookups, engaging full reflection for multi-step problems — without any configuration overhead.

Raw thinking tokens are never returned in the response. Unlike Opus 4.8 where thinking blocks appeared in response.content and were inspectable (and billable as output), Fable 5 thinking happens entirely server-side. The visible output is the post-reasoning answer only. This means you cannot use thinking blocks as intermediate signals for debugging or cost attribution — a trade-off worth noting for teams that relied on that transparency in Opus 4.8 agents (Anthropic, 2026b).

Effort control: what changed from Opus 4.8

Fable 5 retains the effort parameter (high, xhigh, max) for influencing how much reasoning budget the model uses. The difference is that effort now controls the internal thinking allocation rather than enabling or disabling thinking. You can still pass an effort level via the API or via /effort ultracode in Claude Code — the semantics are the same; the thinking block visibility is not. Dynamic workflows and ultracode remain available on Fable 5 with the same 16-concurrent / 1,000-total-per-run limits as Opus 4.8.

Safety safeguards and refusal routing

Fable 5 includes safety classifiers that intercept requests in high-risk domains — principally cybersecurity and biological research — before the main model processes them. When a classifier fires, the request is handled by Claude Opus 4.8 instead, which returns a response consistent with Anthropic's standard policy. The classifier triggers in fewer than 5% of sessions on average, and Anthropic acknowledges that the current tuning is conservative — it will occasionally catch legitimate requests (Anthropic, 2026a).

The refusal handling API introduced in Opus 4.8 remains available. When Fable 5 produces a refusal (either from its own judgment or a routed Opus 4.8 response), the response carries stop_reason: "refusal" and a populated stop_details object with category and explanation fields. The routing pattern for security middleware is unchanged from what worked on Opus 4.8.

Python — Fable 5 API call with refusal handling
import anthropic

client = anthropic.Anthropic()

# Fable 5: adaptive thinking always on — no thinking parameter needed
response = client.messages.create(
    model="claude-fable-5",
    max_tokens=8192,
    # effort parameter still controls reasoning budget
    system=[{
        "type": "text",
        "text": system_prompt,
        "cache_control": {"type": "ephemeral", "ttl": "1h"}
    }],
    messages=[{"role": "user", "content": user_message}]
)

if response.stop_reason == "refusal":
    details  = response.stop_details or {}
    category = details.get("category")  # "cyber" | "bio" | None

    # Note: response may have been generated by Opus 4.8 — not Fable 5 — via routing
    # Do not assume Fable 5 context retention for follow-up questions after a refusal
    if category:
        security_log.warning(f"Fable 5 safeguard triggered: {category}", session_id=session_id)
    return handle_refusal(category)

# Normal path: no thinking blocks in response.content
text = next(b.text for b in response.content if b.type == "text")

# Track cost — cache_read_input_tokens reduces effective spend
spend_input  = response.usage.input_tokens        * 10.00 / 1_000_000
spend_cached = response.usage.cache_read_input_tokens * 1.00 / 1_000_000
spend_output = response.usage.output_tokens       * 50.00 / 1_000_000

Plan availability and the June 22 deadline

Action required before June 22

Free access to Fable 5 ends on June 22, 2026. Through that date, Fable 5 is included at no extra cost on Pro, Max, Team, and seat-based Enterprise plans. Starting June 23, using Fable 5 on those plans requires usage credits — it is no longer included in the flat subscription. On the Claude API and consumption-based Enterprise plans, Fable 5 is and remains fully available at the standard $10/$50 pricing.

If your team is evaluating Fable 5 for production use, the window before June 22 is the right time to run benchmarks against your actual workloads at no incremental cost. After June 23, factor usage credits into the cost model before committing to Fable 5 at scale — especially for workloads currently on Opus 4.8 Standard tier, where the effective per-token cost is 2× higher on Fable 5 Standard versus Opus 4.8 Standard.

Plan Until June 22 From June 23
Claude API (pay-as-you-go) $10/$50 per M tokens $10/$50 per M tokens (unchanged)
Enterprise (consumption-based) $10/$50 per M tokens $10/$50 per M tokens (unchanged)
Pro / Max / Team Included free Requires usage credits
Enterprise (seat-based) Included free Requires usage credits

Platform availability and model IDs

Fable 5 is available across all major cloud platforms from launch day. The model ID conventions follow the same pattern as Opus 4.8 on each provider.

Model IDs across platforms
# Anthropic API (direct)
model = "claude-fable-5"

# Amazon Bedrock — InvokeModel (with cross-region prefix for failover)
modelId = "us.anthropic.claude-fable-5"

# Google Cloud Vertex AI
model = "claude-fable-5"

# Microsoft Foundry
model = "claude-fable-5"
# Note: Foundry context window remains 200K tokens (hardware limit)

# GitHub Copilot
# Select "Claude Fable 5" in the model picker across VS Code,
# JetBrains, Xcode, Eclipse, and the GitHub mobile app
# Enterprise admins must enable Fable 5 in Copilot policy settings
Migrating from Opus 4.8

The primary API change is the removal of the thinking parameter. Any code that passes thinking={"type": "enabled", "budget_tokens": N} or thinking={"type": "adaptive"} should remove that parameter when switching to claude-fable-5 — the thinking configuration will be ignored or may produce a validation error. All other parameters (effort, context compaction, prompt caching, mid-conversation system messages, refusal handling) work identically to Opus 4.8. The same AGENTS.md, the same caching strategy, and the same orchestration patterns transfer without modification.

The one practical caveat: at $10/$50 per million tokens, Fable 5 costs 2× Opus 4.8 Standard on input and output. Workloads that ran on Opus 4.8 Standard for cost reasons should model the Fable 5 expense before migrating, and consider the Batch API ($5/$25) for any async portion of the pipeline.

References
  1. Anthropic. (2026a). Claude Fable 5 and Claude Mythos 5. anthropic.com/news/claude-fable-5-mythos-5
  2. Anthropic. (2026b). Introducing Claude Fable 5 and Claude Mythos 5 — Claude API Docs. platform.claude.com/docs/en/about-claude/models/introducing-claude-fable-5-and-claude-mythos-5
  3. TechCrunch. (2026). Anthropic releases Claude Fable 5, its most powerful model publicly, days after warning AI is getting too dangerous. techcrunch.com
  4. Amazon Web Services. (2026). Anthropic Claude Fable 5 on AWS: Mythos-class capabilities with built-in safeguards now available. aws.amazon.com/blogs/aws
  5. GitHub. (2026). Claude Fable 5 is generally available for GitHub Copilot. github.blog/changelog
  6. Microsoft Azure. (2026). Claude Fable 5 available today in Microsoft Foundry. azure.microsoft.com/blog
M
Michele Mader
Technical Leader · AI Systems & Data Engineering

I lead technical direction on AI-driven data products for enterprise clients — defining architecture, making stack decisions, and owning delivery from roadmap to production.

Connect on LinkedIn