If you read Anthropic’s June 9, 2026 announcement and paused at “a Mythos-class model that we’ve made safe for general use,” here’s the developer-focused version: Mythos-class is a capability tier, not an API model name. It refers to the frontier model behind two shipped products: Claude Fable 5, the public safety-on version, and Claude Mythos 5, the restricted version with some safeguards lifted for vetted partners. One underlying engine, two safety configurations. If you want the consumer-facing model you can call today, start with the Fable 5 product overview.
That distinction matters when you choose a model ID, estimate cost, and decide where Fable 5 belongs in your application architecture.
TL;DR
- Mythos-class is the capability tier of Anthropic’s frontier model.
- Claude Fable 5 is the public, safety-on version you can call.
- Claude Mythos 5 is the restricted version for vetted partners through Project Glasswing.
- You do not call
mythos-classin the API. - For public API usage, the practical model ID is:
claude-fable-5
What “Mythos-class” actually means
Anthropic described Claude Fable 5 as “a Mythos-class model that we’ve made safe for general use.”
That wording is important:
- Fable 5 is the product.
- Mythos-class is the capability tier.
- “Made safe for general use” means the public product includes safety handling that is not necessarily identical to the restricted version.
Think of Mythos-class as the underlying frontier engine tier. Anthropic positions it as its most capable generally available model tier, built for long-horizon autonomous work across very large context windows and extended task runs.
In implementation terms, do not treat Mythos-class as a model identifier. You will not use it in an API request. You use the shipped product name instead:
claude-fable-5
The earlier preview of this tier was called Claude Mythos Preview. Claude Fable 5 and Claude Mythos 5 are the productized successors to that preview.
Mythos-class vs Opus, Sonnet, and Haiku
Anthropic’s standard model family uses familiar product names:
- Opus: most capable standard-line model
- Sonnet: balanced model
- Haiku: fastest and lowest-cost model
For example, Opus 4.8 runs at $5 per million input tokens and $25 per million output tokens with a 1M-token context window. For more detail, see the Opus 4.8 explainer and the Opus 4.8 pricing guide.
The clean comparison is not “Mythos-class vs Opus.” Instead, compare:
- Claude Fable 5: public Mythos-class product
- Claude Opus 4.8: top standard-line Opus product
| Model | Tier | Availability | Price input / output |
|---|---|---|---|
| Claude Fable 5 | Mythos-class | General availability | $10 / $50 per M tokens |
| Claude Mythos 5 | Mythos-class | Restricted, Project Glasswing | $10 / $50 per M tokens |
| Claude Mythos Preview | Mythos-class preview | Retired preview | More than 2x Fable 5 |
| Claude Opus 4.8 | Standard line, Opus | General availability | $5 / $25 per M tokens |
| Claude Sonnet | Standard line, Sonnet | General availability | Lower than Opus |
| Claude Haiku | Standard line, Haiku | General availability | Lowest |
The practical takeaway:
- Use Opus, Sonnet, or Haiku for everyday workloads where cost or latency matters.
- Use Fable 5 when you need the higher-capability Mythos-class tier for long-running, complex, or high-context tasks.
Before you ship, confirm current IDs and pricing in Anthropic’s models overview.
Fable 5 vs Mythos 5
Anthropic ships the same Mythos-class model in two safety postures.
Claude Fable 5: public, safeguards on
Claude Fable 5 is the version available for general use.
Use it as:
claude-fable-5
Fable 5 includes active safeguards. According to Anthropic, a narrow set of high-risk queries is routed to a different model instead of being handled by the full Mythos-class engine. These areas include:
- cyber-offense
- bio-chem weapons
- model distillation attempts
Anthropic says this affects under 5% of sessions. For typical developer workloads such as app development, code generation, agent workflows, document analysis, or internal tooling, you should expect to use the public Fable 5 path.
For more detail, see the Fable 5 safety and safeguards breakdown.
Claude Mythos 5: restricted, safeguards lifted in some areas
Claude Mythos 5 uses the same underlying Mythos-class model, but with some safeguards lifted in specific areas.
It is not publicly available. Access is restricted through Project Glasswing for vetted groups such as:
- cyberdefenders
- infrastructure providers
- select biology researchers
For most developers, Mythos 5 is not an integration target. Build against Fable 5 unless you are approved through the restricted access program.
For a side-by-side breakdown, see the Fable 5 vs Mythos 5 comparison.
Why this tier exists
The Mythos-class split exists because the model has both high capability and higher misuse risk in narrow domains.
On the capability side, Anthropic positions the tier for long-horizon autonomous work, including tasks that can span millions of tokens. That makes it useful for workflows like:
- large-codebase analysis
- multi-step agent runs
- research workflows
- complex document processing
- long-running planning and execution tasks
On the safety side, the same capability can create risk in domains such as offensive cyber, biological or chemical misuse, and model distillation. Anthropic’s approach is to expose the public version as Fable 5 while reserving the less restricted Mythos 5 posture for vetted users.
That structure is described in Anthropic’s announcement: one engine, two safety configurations, different access policies.
How to use this as a developer
For most developers, using a Mythos-class model means using Claude Fable 5.
Your integration target is:
claude-fable-5
The exact API request shape depends on Anthropic’s current Messages API, but your implementation flow should look like this:
- Confirm the current model ID in Anthropic’s docs.
- Add
claude-fable-5as a configurable model string. - Run a test request against the Messages endpoint.
- Capture response shape, token usage, latency, and cost.
- Compare it against Opus, Sonnet, or Haiku for the same workload.
- Route only the workloads that justify the higher cost to Fable 5.
Example configuration pattern:
ANTHROPIC_API_KEY=your_api_key
ANTHROPIC_MODEL=claude-fable-5
Example model selection logic:
function selectClaudeModel(task) {
if (task.requiresLongHorizonReasoning || task.requiresLargeContext) {
return "claude-fable-5";
}
if (task.isLatencySensitive || task.isHighVolume) {
return "claude-haiku";
}
return "claude-sonnet";
}
The goal is not to replace every Claude call with Fable 5. The goal is to reserve the Mythos-class tier for workloads where the additional capability is worth the token price.
Practical integration checklist
Before adding Fable 5 to production, check these items.
1. Budget for higher token cost
Fable 5 costs $10 per million input tokens and $50 per million output tokens. That is higher than Opus 4.8.
Use Fable 5 for workloads such as:
- multi-file codebase reasoning
- complex agent tasks
- long-document synthesis
- higher-stakes reasoning chains
Use lower-cost models for:
- simple chat
- classification
- short summarization
- autocomplete-style tasks
- high-volume background processing
For cost modeling, see the Fable 5 pricing guide.
2. Keep the model ID configurable
Do not hard-code the model everywhere.
Prefer this:
const model = process.env.ANTHROPIC_MODEL || "claude-fable-5";
Avoid scattering this across your codebase:
model: "claude-fable-5"
Model strings and pricing can change. Check Anthropic’s models overview and the Anthropic news feed before locking an integration.
3. Test the API contract
A new model can affect behavior in subtle ways:
- response length
- token accounting
- streaming behavior
- tool-call formatting
- refusal behavior
- latency
- output structure
This is where an API testing workflow helps. With Apidog, you can create reusable requests for claude-fable-5, store environment variables for your API key and base URL, assert response schemas, and compare output across models.
A simple test suite should verify:
- request succeeds
- response contains expected fields
- tool calls match your schema
- token usage is captured
- streaming behavior still works
- fallback model routing does not break your app flow
If you are setting up this workflow, Download Apidog, create a Claude environment, and save Fable 5 requests as reusable API calls. You can also keep the same Apidog workspace pointed at Opus 4.8 to compare cost and output quality for the same tasks.
Bottom line
Mythos-class is not a model ID. It is the capability tier behind Claude Fable 5 and Claude Mythos 5.
For public development work:
Use claude-fable-5
Then test it like any other production dependency: verify the response shape, measure token usage, compare it against cheaper models, and route only the workloads that need Mythos-class capability to Fable 5.

Top comments (0)