Anthropic's platform documentation for Claude Fable 5 and Claude Mythos 5 describes two Mythos-class models sharing the same capabilities: Fable 5 is the generally available model with safety classifiers; Mythos 5 is the restricted release without those classifiers, available through Project Glasswing.

Models and API IDs

  • Claude Fable 5 — API model ID: claude-fable-5. Anthropic's most capable widely released model for demanding reasoning and long-horizon agentic work.
  • Claude Mythos 5 — API model ID: claude-mythos-5. Same capabilities without safety classifiers; limited release via Project Glasswing. Successor to Claude Mythos Preview.

Both models support a 1M token context window by default and up to 128k output tokens per request. Pricing is $10 per million input tokens and $50 per million output tokens.

Refusals, fallback, and billing

Refusals on Claude Fable 5

When Claude Fable 5 declines a request, the Messages API returns stop_reason: "refusal" as a successful HTTP 200 response — not an error. The response also reports which classifier declined the request.

Fallback

A refused Fable 5 request can usually be served by another Claude model. Pass the fallbacks parameter for server-side retry (beta on Claude API and Claude Platform on AWS), or use SDK middleware for client-side retry on any platform.

Billing

You are not billed for requests refused before any output is generated. When retrying on another model, fallback credit refunds the prompt-cache cost of switching.

Availability

Both models became available June 9, 2026. Claude Fable 5 is GA on the Claude API, Claude Platform on AWS, Amazon Bedrock, Vertex AI, and Microsoft Foundry. Claude Mythos 5 is limited availability for approved Project Glasswing customers.

Fable 5 and Mythos 5 are Covered Models with 30-day data retention and are not available under zero data retention.

Messages API behavior

These behaviors are specific to Fable 5 and Mythos 5; the Messages API is unchanged for Opus, Sonnet, and Haiku.

Adaptive thinking is always on

Adaptive thinking is the only thinking mode on Fable 5 and Mythos 5. It applies when the thinking parameter is unset; thinking: {"type": "disabled"} is not supported. Use the effort parameter to control thinking depth.

Raw thinking content is never returned

Raw chain-of-thought is never returned. thinking.display defaults to "omitted" (empty thinking field). Set display: "summarized" for readable summarized thinking. Pass thinking blocks back unchanged in multi-turn conversations on the same model.

Supported features at launch

  • Effort — control thinking depth and cost
  • Task budgets (beta: task-budgets-2026-03-13 header)
  • Memory tool
  • Tool result clearing via context editing (beta: context-management-2025-06-27 header)
  • Compaction
  • Vision

Migrating from earlier models

Anthropic publishes dedicated migration guides for Claude Mythos Preview → Claude Mythos 5 and Claude Opus 4.8 → Claude Fable 5, covering model string changes, thinking behavior, and fallback configuration.