Section 01 · Definition
What is Claude Fable 5?
Anthropic launched two models on the same day. Fable 5 is the one you can actually use, and Mythos 5 is its locked down sibling for a small set of trusted partners.
Quick answer
What is Claude Fable 5? Claude Fable 5 is Anthropic's most capable widely released model, built for demanding reasoning and long horizon agentic work. It is a Mythos class model wrapped in safety classifiers so it can ship for general use. The API id is claude-fable-5.
Fable 5 and Mythos 5 are the same underlying model. The difference is the safeguards. Mythos 5 runs without the safety classifiers and is offered only in limited release through Project Glasswing, mostly to cyber defenders and critical infrastructure providers. Fable 5 is the version Anthropic made safe for everyone, and it is the one you reach for on the Claude API, Amazon Bedrock, Vertex AI, and Microsoft Foundry.
The naming follows a theme. A Mythos class model sits a tier above the Opus class in raw capability. Fable comes from the Latin fabula, which means a thing that is told, close in spirit to the Greek mythos. The safeguards are the only thing that separates the two names, and that distinction is the whole point of releasing Fable to the public.
For most of this post the practical takeaway is simple. When you call claude-fable-5 and your request is not flagged, you get the full Mythos class model. Anthropic's own data shows more than 95% of Fable sessions involve no fallback at all, so for the large majority of work you are talking to the strongest model the company has put in general hands.
Section 02 · Specs
The numbers that matter for builders
Context, output, price, and thinking mode are the four specs you will plan around. Here is how Fable 5 lines up against Opus 4.8, the model it falls back to.
| 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 than Fable 5 |
| Input price / M tokens | $10 | $5 |
| Output price / M tokens | $50 | $25 |
| Thinking mode | Adaptive only | Configurable |
| Tier | Mythos class | Opus class |
Fable 5 costs twice as much per token as Opus 4.8. That premium buys you the strongest reasoning and the longest autonomous runs Anthropic has shipped broadly, but it also means cost control matters more, not less. If your workload is mostly routine, routing only the hard tasks to Fable and keeping the rest on Opus or Sonnet is the obvious move. We dug into that kind of tradeoff in our guide to cutting LLM inference cost, and the same logic applies here.
The 1M token context window is on by default, so you do not opt into it. The 128k output ceiling is generous enough to return whole files, long migrations, or multi document analyses in a single response, which is exactly the kind of long horizon work the model is built for.
Section 03 · Capabilities
Where Claude Fable 5 actually leads
The headline is long horizon autonomy. The longer and more complex the task, the larger Fable's lead over earlier Claude models grows.
Software engineering
Stripe reported that Fable 5 compressed months of engineering into days, running a codebase wide migration across 50 million lines of Ruby in a single day. It is also more token efficient than past Claude models, and it tops Cognition's FrontierCode evaluation even at medium effort.
Knowledge work
Fable 5 posts the highest score of any model on Hebbia's finance benchmark for senior reasoning, with real gains in document based reasoning, chart and table interpretation, and problem solving. Trading firm IMC said it aced their analysis evaluations nearly across the board.
Vision
This is the new state of the art for vision tasks. Fable 5 extracts precise numbers from detailed scientific figures and can rebuild a web app's source from screenshots alone. It needs less scaffolding too, beating Pokemon FireRed with a vision only harness.
Memory and long context
Fable 5 stays focused across millions of tokens and sharpens its own output using notes it writes to a file based memory. Given persistent memory in a long game, its performance improved three times more than Opus 4.8 did with the same help.
Section 04 · Safeguards
How the safety classifier and Opus 4.8 fallback work
The reason Fable can ship at all is the classifier layer in front of it. Understanding when it triggers saves you from confusing fallbacks in production.
A Mythos class model has frontier strength in areas like cybersecurity and biology, which is exactly what makes it dangerous in the wrong hands. So Anthropic put a separate set of classifier models in front of Fable 5. When a request looks like it touches a high risk area, the main model never answers. The response is handled by Claude Opus 4.8 instead, and the user is told the fallback happened.
Cybersecurity
Mythos class models excel at finding and exploiting software vulnerabilities, so the classifiers cover both exploitation and broader offensive cyber work. In external testing, Fable 5 complied with zero harmful single turn cyberattack requests.
Biology and chemistry
To ship quickly and safely, Anthropic tuned this net broadly, so most biology and chemistry requests fall back to Opus 4.8 for now. A trusted access program will narrow this for vetted researchers over time.
Distillation
Requests flagged as large scale attempts to extract Fable's capabilities to train competing models also fall back to Opus 4.8, which limits the proliferation of near frontier ability without safeguards.
The safeguards are deliberately conservative, so they sometimes catch harmless requests. Anthropic says they trigger in under 5% of sessions on average and plans to reduce false positives after launch. For builders, the 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.
Section 05 · On the API
What changes when you build with claude-fable-5
A few Messages API behaviors are specific to Fable 5 and Mythos 5. Get these right and the integration is otherwise familiar.
The biggest one is refusals. When Fable 5 declines a request, the Messages API does not throw. It returns a successful HTTP 200 with stop_reason set to refusal, and it tells you which classifier declined. You are not billed for a request that is refused before any output is generated, so handling the refusal is about user experience, not cost recovery.
// 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 }
}
// Opt into a server side retry on another model with the fallbacks param
{
"model": "claude-fable-5",
"fallbacks": ["claude-opus-4-8"],
"messages": [ /* ... */ ]
}A request Fable refuses can usually be served by another model. You can pass the fallbacks parameter to have the API retry for you, or use the SDK middleware to retry from the client on any platform. Fallback credit refunds the prompt cache cost of switching, so a retry does not make you pay the cache cost twice.
Adaptive thinking is always on
It is the only thinking mode. The thinking parameter being unset is fine, but disabling thinking is not supported. Use the effort parameter to control how deeply the model reasons and how much you spend.
Raw thinking is never returned
The raw chain of thought is omitted by default. Set thinking display to summarized for readable summaries, and pass thinking blocks back unchanged in multi turn conversations on the same model.
Supported features at launch
Effort, task budgets, the memory tool, context editing for tool result clearing, compaction, and vision are all supported on Fable 5 and Mythos 5 from day one.
Data retention is fixed at 30 days
Fable 5 and Mythos 5 are Covered Models. They carry 30 day data retention and are not available under zero data retention. The data is used for safety, not training.
If you are weighing Fable against the rest of the field before you wire it in, our comparison of the major LLM providers frames where each one fits in an agentic stack.
Section 06 · Availability
Pricing, plans, and where to get it
Fable 5 is available everywhere on the API today. The subscription rollout is staged because Anthropic expects very high and hard to predict demand.
Pricing is $10 per million input tokens and $50 per million output tokens, the same for both Fable 5 and Mythos 5. On the Claude API and consumption based Enterprise plans, Fable 5 is fully available now. For subscription plans the rollout is more cautious. From launch through a short included window, Fable 5 comes with Pro, Max, Team, and seat based Enterprise plans at no extra cost. After that, using it draws on usage credits until capacity allows Anthropic to fold it back into the standard plans.
Mythos 5 is not generally available. It is restricted to approved Glasswing partners with cyber safeguards lifted, and soon to a small set of biology researchers through a trusted access program. If you do not have Mythos access, Fable 5 is the Mythos class model you use, and for nearly every request it behaves identically.
If you are deciding how a model this capable fits into a real product rather than a benchmark, that is a systems question more than a model question. It is the kind of work we cover in our agentic AI consulting engagements, where the model is one component inside the orchestration, memory, and safety layers around it.
The primary sources for everything above are Anthropic's launch announcement and the Claude API documentation.
FAQ
Frequently asked questions
What is the API model id for Claude Fable 5?
The API model id is claude-fable-5. You call it on the Claude API, Amazon Bedrock, Vertex AI, and Microsoft Foundry. Its sibling model id is claude-mythos-5, but Mythos 5 is only available in limited release through Project Glasswing.
How much does Claude Fable 5 cost?
Claude Fable 5 is priced at $10 per million input tokens and $50 per million output tokens. That is the same price as Mythos 5 and twice the per token cost of Claude Opus 4.8, the model Fable falls back to when a request is flagged.
What is the difference between Claude Fable 5 and Mythos 5?
They are the same underlying model. Fable 5 ships with safety classifiers and is generally available. Mythos 5 has those classifiers lifted in some areas and is restricted to trusted partners through Project Glasswing. For most requests the two behave identically.
Why did Claude Fable 5 fall back to Opus 4.8?
A safety classifier flagged your request as touching cybersecurity, biology, chemistry, or distillation. When that happens the answer is generated by Claude Opus 4.8 instead, and you are told it occurred. Anthropic says this fires in under 5% of sessions and is tuned conservatively.
Does Claude Fable 5 support disabling thinking?
No. Adaptive thinking is the only thinking mode on Fable 5 and Mythos 5, and the disabled thinking type is not supported. You control reasoning depth with the effort parameter, and the raw chain of thought is never returned, though you can request summarized thinking.
How do refusals work on the Claude API for Fable 5?
A refused request returns a successful HTTP 200 response with stop_reason set to refusal and the declining classifier named. You are not billed for output that is never generated. You can pass the fallbacks parameter or use SDK middleware to retry the request on another model.