Claude Fable 5: Features, Pricing, and Fallbacks

Anthropic has released claude-fable-5, its most capable widely released model. Fable 5 is a Mythos class model made safe for general use, with a 1M token context window, adaptive thinking, and a safety classifier that routes risky prompts to Claude Opus 4.8. This guide covers the features, pricing, and API behavior that matter when you build with it.
Fable 5 and Mythos 5 are the same model
The launch came in two names. claude-fable-5 and claude-mythos-5 are the same underlying model, and the only difference is the safeguards.
Mythos 5 runs without the safety classifiers and is limited to a small group of cyber defenders through Project Glasswing. Fable 5 is the version everyone gets, available on the Claude API, Amazon Bedrock, Vertex AI, and Microsoft Foundry. A Mythos class model sits a tier above the Opus class in raw capability, so when your request is not flagged you are talking to the strongest model Anthropic has put in general hands. Anthropic reports that more than 95% of Fable sessions never trigger a fallback.
The specs you plan around
| Spec | Claude Fable 5 | Claude Opus 4.8 |
|---|---|---|
| API id | claude-fable-5 |
claude-opus-4-8 |
| Context window | 1M tokens | up to 1M tokens |
| Max output | 128k tokens | lower |
| Input price / M tokens | $10 | $5 |
| Output price / M tokens | $50 | $25 |
| Thinking mode | adaptive only | configurable |
Fable 5 costs twice as much per token as Opus 4.8. That premium buys the strongest reasoning and the longest autonomous runs, but it makes routing important. Send the hard, long horizon tasks to Fable and keep routine work on Opus or Sonnet. The 1M context window is on by default, and the 128k output ceiling is enough to return whole files or a long migration in a single response.
Where Claude Fable 5 leads
The headline is long horizon autonomy. The longer and more complex the task, the larger Fable 5's lead over earlier models.
Software engineering. Stripe ran a codebase wide migration across 50 million lines of Ruby in a single day. Fable 5 also tops Cognition's FrontierCode evaluation, even at medium effort.
Knowledge work. It posts the highest score of any model on Hebbia's finance benchmark, with strong gains on document reasoning and chart and table interpretation.
Vision. It is the new state of the art, reading precise numbers off scientific figures and rebuilding a web app's source from screenshots alone.
Memory. It stays focused across millions of tokens and improves using notes it writes to a file based memory tool.
The safety classifier and Opus 4.8 fallback
A separate classifier model sits in front of Fable 5. When a prompt looks like it touches cybersecurity, biology, chemistry, or distillation, Fable 5 does not answer. The request falls back to Claude Opus 4.8, and the user is told it happened.
The classifiers are tuned conservatively, so they sometimes catch harmless prompts. Anthropic says the fallback fires in under 5% of sessions on average. The practical takeaway is to expect the occasional fallback on benign cyber or bio adjacent prompts and to handle it gracefully rather than treat it as an error.
What changes on the API
The biggest change is refusals. When Fable 5 declines a request, the Messages API does not throw. You get a successful HTTP 200 with stop_reason set to refusal, along with the classifier that declined. You are not billed for a request refused before any output is generated.
// A refused request comes back as a normal 200 response
{
"type": "message",
"role": "assistant",
"stop_reason": "refusal",
"content": [],
"usage": { "input_tokens": 412, "output_tokens": 0 }
}
A refused request can usually be served by another model. Pass the fallbacks parameter and the API retries for you, or use the SDK middleware to retry from the client. Fallback credit refunds the prompt cache cost so you do not pay it twice.
{
"model": "claude-fable-5",
"fallbacks": ["claude-opus-4-8"],
"messages": []
}
Three more behaviors are specific to Fable 5 and Mythos 5:
Adaptive thinking is always on. It is the only thinking mode, and disabling thinking is not supported. Use the
effortparameter to control depth and spend.Raw thinking is never returned. It is omitted by default. Set thinking display to
summarizedfor readable summaries, and pass thinking blocks back unchanged in multiturn conversations on the same model.30 day data retention. Both models are Covered Models, so zero data retention is not available. The data is used for safety, not training.
Pricing and availability
Pricing is $10 per million input tokens and $50 per million output tokens for both models. On the Claude API and consumption based Enterprise plans, Fable 5 is fully available now. On subscription plans the rollout is staged: included on Pro, Max, Team, and seat based Enterprise for a short window, then drawing on usage credits until capacity allows it back into the standard plans. Mythos 5 stays restricted to Glasswing partners and, soon, a small set of biology researchers.
I wrote a longer developer walkthrough, with the full feature breakdown and the request routing diagram, on my site: Claude Fable 5: Features, Pricing, and Fallbacks.
If you want a model like this wired into a real product end to end, that is the kind of work I take on through agentic AI consulting.




