• ZDR is not supported for Claude Fable 5. Anthropic's data retention policy for Mythos-class models 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

High

$10 / $50per 1M

Context

High

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).

Latency
5.78s
Throughput
17tps
Uptime
100.0%
Uptime 100.0 percent
Total Context
1M
Max Output
128K

Pricing

Input Price
$10/M tokens
Output Price
$50/M tokens
Cache Read
$1/M tokens
Cache Write
$12.50/M tokens
Latency
6.28s
Throughput
30tps
Uptime
99.9%
Uptime 99.9 percent
Total Context
1M
Max Output
128K

Pricing

Input Price
$10/M tokens
Output Price
$50/M tokens
Cache Read
$1/M tokens
Cache Write
$12.50/M tokens
Latency
2.21s
Throughput
18.50tps
Uptime
N/A
Uptime not available
Total Context
1M
Max Output
128K

Pricing

Input Price
$10/M tokens
Output Price
$50/M tokens
Cache Read
$1/M tokens
Cache Write
$12.50/M tokens
Latency
--s
Throughput
--tps
Uptime
N/A
Uptime not available
Total Context
1M
Max Output
128K

Pricing

Input Price
$10/M tokens
Output Price
$50/M tokens
Cache Read
$1/M tokens
Cache Write
$12.50/M tokens
Latency
--s
Throughput
--tps
Uptime
N/A
Uptime not available
Total Context
1M
Max Output
128K

Pricing

Input Price
$10/M tokens
Output Price
$50/M tokens
Cache Read
$1/M tokens
Cache Write
$12.50/M tokens

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

30tok/s

best across providers

Latency

2.21s

p50, best provider

Throughput

Anthropic
Avg41 tok/s
Claude Platform on AWS
Avg38 tok/s

Latency

Anthropic
Avg5.44 s
Claude Platform on AWS
Avg5.86 s

E2E Latency

Anthropic
Avg14.04 s
Claude Platform on AWS
Avg14.88 s

Tool Call Error Rate

Google Vertex (BYOK Only)
Avg0.00 %
Amazon Bedrock (BYOK Only)
Avg0.00 %
Claude Platform on AWS
Avg0.09 %

Structured Output Error Rate

Anthropic
Avg15.59 %
Claude Platform on AWS
Avg22.59 %

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

$5.07

/M tokens

Weighted Avg Output Price

$50.00

/M tokens

ProviderInput $/1MOutput $/1MCache hit rateToken share
Favicon for Amazon Bedrock
Claude Platform on AWS
$4.46$50.0067.7%
80.7%
Favicon for Anthropic
Anthropic
$7.62$50.0039.4%
19.3%
Favicon for Google
Google Vertex (BYOK Only)
$10.00$50.000.0%
0.0%

Input Price / 1M tokens (7 days)

Jun 9Jun 10036912$/1M

Output Price / 1M tokens (7 days)

Jun 9Jun 10015304560$/1M

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.

2.
Favicon for https://claude.ai/apple-touch-icon.png
Claude Code
Claude Code is Anthropic's agentic coding tool that reads your entire codebase, plans and executes changes across files, runs tests, and iterates on failures, all from natural language prompts.
5.83Btokens
3.
Favicon for https://nousresearch.com
Hermes Agent
Hermes Agent is an open-source, self-improving AI agent by Nous Research that runs persistently with memory across sessions, and builds reusable skills from experience. It comes with 40+ built-in tools, including web search, browser automation, and vision, plus scheduled automations and subagents.
5.67Btokens
4.
Favicon for https://kilocode.ai/
Kilo Code
Kilo Code is an open-source AI coding agent that works across VS Code, JetBrains, and CLI to help developers ship code faster with agentic workflows.
1.47Btokens
5.
Favicon for https://openclaw.ai/
OpenClaw
OpenClaw is an open-source AI agent that connects to your messaging apps and takes real actions on your behalf, from running commands and browsing the web to managing files and sending emails.
1Btokens
Jun 9Jun 10

Activity

Token volume and request traffic to this model over time.

Jun 9Jun 1095B190B285B380B
Prompt
164B
Completion
5.23B
Reasoning
363M

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)

99.92%

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
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.
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.
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