Access to Claude Fable 5 may be interrupted. Anthropic is restricting access to Fable 5 in response to a US government export-control directive. Requests may fail or become unavailable without notice. Learn more: https://www.anthropic.com/news/fable-mythos-access(opens in new tab)

By using Claude Fable 5, you consent to data retention for purposes of monitoring safe and compliant use of AI. Anthropic's data retention policy does not allow zero data retention. Learn more(opens in new tab)

Azure, Google Vertex, and Amazon Bedrock endpoints are BYOK-only while we work on enabling public access.

Favicon for anthropic

Anthropic: Claude Fable 5

anthropic/claude-fable-5

Claude Fable 5 is a Mythos-class model from Anthropic, built for autonomous knowledge work and coding. It supports text, image, and file inputs with text output, with reasoning support and a 1M-token context window. It is suited for long-running, complex, and asynchronous tasks that previously required frequent human check-ins.

It is particularly strong at end-to-end work that would otherwise take a person hours, days, or weeks - taking on problems that are long-running, ambiguous, or highly multi-step. It executes well-scoped tasks with few mistakes, automatically self-correcting through verification loops, and ships with robust safeguards.

Modalities

In / Out Price

$10 / $50per 1M

Context

1M

Released

Jun 9, 2026

Providers

Different companies host the same model. OpenRouter routes your request to one of them based on the routing mode you pick — Balanced (price + speed), Nitro (fastest), or Exacto (one fixed provider).

ProviderInput $/MOutput $/MLatencyThroughputUptime
Favicon for Amazon Bedrock
Claude Platform on AWS
$10$50
--
--
0%
Favicon for Google
Google Vertex (BYOK Only)
$10$50
--
--
0%
Favicon for Amazon Bedrock
Amazon Bedrock (BYOK Only)
$10$50
--
--
--
Favicon for Anthropic
Anthropic
$10$50
--
--
0%
Favicon for Azure
Azure (BYOK Only)
$10$50
--
--
--

Performance

Throughput is how fast the model writes (tokens per second — higher is better). Latency is total round-trip time (lower is better). TTFT is time-to-first-token — how long before you see anything appear (lower is better).

Throughput

Azure (BYOK Only)
Avg86 tok/s
Google Vertex (BYOK Only)
Avg62 tok/s
Anthropic
Avg40 tok/s

Latency

Google Vertex (BYOK Only)
Avg3.91 s
Anthropic
Avg5.72 s
Claude Platform on AWS
Avg5.81 s

E2E Latency

Google Vertex (BYOK Only)
Avg14.85 s
Anthropic
Avg15.82 s
Claude Platform on AWS
Avg15.90 s

Tool Call Error Rate

Azure (BYOK Only)
Avg0.00 %
Amazon Bedrock (BYOK Only)
Avg0.09 %
Claude Platform on AWS
Avg0.28 %

Structured Output Error Rate

Anthropic
Avg24.52 %
Claude Platform on AWS
Avg39.44 %

Pricing

List price is the headline rate per million tokens. Effective price is what you actually pay after prompt caching is applied — for repeated context, this can be 60–80% cheaper. The chart below shows the rolling effective price over the past 30 days.

Weighted Average

Weighted Avg Input Price

$0.0000

/M tokens

Weighted Avg Output Price

$0.0000

/M tokens

No effective pricing data available for this model yet.

Input Price / 1M tokens (7 days)

Jun 9Jun 11Jun 13036912$/1M

Output Price / 1M tokens (7 days)

Jun 9Jun 11Jun 13015304560$/1M

Benchmarks

Scores on standardized evaluations. Higher percentages are better — and rank percentile shows where this model lands among all models on OpenRouter.

Reasoning

GPQA Diamond

Graduate-level scientific reasoning

92.6%

HLE

Humanity's Last Exam

53.3%

IFBench

Instruction-following benchmark

63.5%

τ²-Bench Telecom

Conversational AI agents in dual-control scenarios

98.5%

AA-LCR

Long context reasoning evaluation

70.0%

GDPval-AA

Economically valuable tasks

71.6%

CritPt

Research-level physics reasoning

28.6%

Coding

SciCode

Python programming for scientific computing

60.2%

Terminal-Bench Hard

Agentic coding & terminal use

62.9%

Knowledge

AA-Omniscience Accuracy

Proportion of correctly answered questions

61.4%

AA-Omniscience Non-Hallucination Rate

Rate of avoiding hallucination among non-correct responses

45.1%

Metrics sourced from Artificial Analysis

Apps

Public apps that send the most traffic to this model. Good signal for what real production workloads look like — and a hint at which use cases this model is best suited for.

1.
Favicon for https://nousresearch.com
Hermes Agent
39.4Btokens
2.
Favicon for https://claude.ai/apple-touch-icon.png
Claude Code
31.9Btokens
3.
Favicon for https://kilocode.ai/
Kilo Code
7.62Btokens
4.
Favicon for https://cline.bot/
Cline
6.81Btokens
5.
Favicon for https://pioneer.ai/
Pioneer (production)
5.34Btokens
Jun 9Jun 11Jun 13

Activity

Token volume and request traffic to this model over time.

Jun 9Jun 11Jun 1335B70B105B140B
Prompt
3.42B
Completion
38.7M
Reasoning
6.15M

Prompt tokens measure input size. Reasoning tokens show internal thinking before a response. Completion tokens reflect total output length.

Uptime

Percent of requests that succeeded over the last 30 days. OpenRouter monitors every provider continuously and automatically retries on the next-best provider when one returns an error.

Avg. Provider Uptime (3d)

62.75%

averaged across all endpoints

When an error occurs in an upstream provider, we can recover by routing to another healthy provider, if your request filters allow it. You can access uptime data programmatically through the Endpoints API. Learn more about our load balancing and customization options.

Quick Start

Drop-in code to call this model. OpenRouter's API is OpenAI-compatible — most SDKs work by just swapping the base URL. The only thing that changes between models is the model slug below.

1

Get your API key

Create an API key from your OpenRouter dashboard and set it as an environment variable:

Create API Key
export OPENROUTER_API_KEY=sk-or-v1-...
2

Make your first request

Use anthropic/claude-fable-5 with the OpenRouter API:

3

Enable streaming

Add "stream": true to your request body to receive responses as server-sent events:

curl -N https://openrouter.ai/api/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $OPENROUTER_API_KEY" \
-d '{
"model": "anthropic/claude-fable-5",
"stream": true,
"messages": [
{"role": "user", "content": "Hello"}
]
}'

Endpoint

Sends a request for a model response for the given chat conversation. Supports both streaming and non-streaming modes.

POSThttps://openrouter.ai/api/v1/chat/completions
AuthorizationBearer $OPENROUTER_API_KEY
Content-Typeapplication/json
HTTP-Refereroptional — your site URL, for rankings
X-Titleoptional — your site name, for rankings
Modelanthropic/claude-fable-5

Creates a streaming or non-streaming response using the OpenAI Responses API format.

Docs
POSThttps://openrouter.ai/api/v1/responses
AuthorizationBearer $OPENROUTER_API_KEY
Content-Typeapplication/json
HTTP-Refereroptional — your site URL, for rankings
X-Titleoptional — your site name, for rankings
Modelanthropic/claude-fable-5

Creates a message using the Anthropic Messages API format. Supports text, images, PDFs, tools, and extended thinking.

Docs
POSThttps://openrouter.ai/api/v1/messages
AuthorizationBearer $OPENROUTER_API_KEY
Content-Typeapplication/json
HTTP-Refereroptional — your site URL, for rankings
X-Titleoptional — your site name, for rankings
Modelanthropic/claude-fable-5

Parameters

NameTypeDefaultDescription
reasoningmapControls reasoning behavior for models that support thinking tokens, including whether reasoning is enabled, the reasoning effort, maximum reasoning tokens, and whether reasoning is excluded from the response.
max_tokensintegerThis sets the upper limit for the number of tokens the model can generate in response.
stoparrayStop generation immediately if the model encounter any token specified in the stop array.
tool_choicestring or objectControls which (if any) tool is called by the model.
toolsarrayTool calling parameter, following OpenAI's tool calling request shape.
response_formatmapForces the model to produce specific output format.
verbosityenumConstrains the verbosity of the model's response.

More models from Anthropic

Compare