Claude Fable 5 API: Pricing, Context and Setup
Claude Fable 5 API pricing is $10 per 1M input and $50 per 1M output tokens. See its 1M context, 128K output, vision support and RouterPlex setup.
Claude Fable 5 is Anthropic's highest-capability generally available model. Its API model ID is claude-fable-5, its context window is 1 million tokens, and standard pricing is $10 per 1M input tokens and $50 per 1M output tokens.
Claude Fable 5 is live on RouterPlex through an OpenAI-compatible chat-completions endpoint, so the same SDK configuration can call Fable, GPT-5.6, Kimi K3 and other providers.
Sources: Anthropic Claude pricing and Claude model overview, checked July 16, 2026.
Claude Fable 5 API pricing #
| Token category | Price per 1M tokens |
|---|---|
| Standard input | $10.00 |
| 5-minute cache write | $12.50 |
| 1-hour cache write | $20.00 |
| Cache read | $1.00 |
| Output | $50.00 |
Fable is expensive relative to general-purpose models. Its economic case depends on the value of the task: a difficult engineering decision, deep research synthesis or long-running agent can justify the rate when a weaker result would cost more in review time or failure risk.
See the live Claude Fable 5 API pricing page.
Claude Fable 5 specifications #
| Capability | Claude Fable 5 |
|---|---|
| Model ID | claude-fable-5 |
| Context window | 1M tokens |
| Maximum synchronous output | 128K tokens |
| Vision input | Yes |
| Tool use | Yes |
| OpenAI-compatible access on RouterPlex | Yes |
Anthropic says Fable uses the newer tokenizer introduced with later Claude models. Token counts may differ from older Claude versions for the same text, so estimate costs from actual API usage rather than assuming an old prompt has the same token count.
Call Claude Fable 5 with RouterPlex #
Use the regular chat-completions shape:
curl https://api.routerplex.com/v1/chat/completions -H "Authorization: Bearer $ROUTERPLEX_KEY" -H "Content-Type: application/json" -d '{"model": "claude-fable-5","messages": [{"role": "user", "content": "Review this architecture and identify the most expensive wrong assumption."}]}'
Python uses the same RouterPlex base URL as every other chat model:
import osfrom openai import OpenAIclient = OpenAI(api_key=os.environ["ROUTERPLEX_KEY"],base_url="https://api.routerplex.com/v1",)response = client.chat.completions.create(model="claude-fable-5",messages=[{"role": "user", "content": "Audit this rollout plan for irreversible steps."}],)print(response.choices[0].message.content)
Claude Fable 5 vs Claude Sonnet 5 #
| Model | Input / 1M | Output / 1M | Context | Best fit |
|---|---|---|---|---|
| Claude Fable 5 | $10 | $50 | 1M | Highest-value complex reasoning and agents |
| Claude Sonnet 5 introductory rate | $2 | $10 | 1M | Strong default for coding and general agent work |
| Claude Sonnet 5 rate from September 1, 2026 | $3 | $15 | 1M | Balanced capability and cost |
Sonnet 5's introductory pricing is scheduled through August 31, 2026. If Fable does not produce a measurable improvement on your workload, Sonnet is the more economical default.
Use Fable selectively: escalation after another model fails, final review of high-risk output, difficult repository-wide reasoning, or the small number of requests whose quality has outsized value.
Control Fable spend before the first request #
At $50 per 1M output tokens, an unconstrained agent can consume a balance quickly. Give the Fable key its own hard budget and use explicit completion limits where the client supports them. Separate keys also make it easy to compare Fable revenue or task value against its cost.
Prompt caching matters for repeated long prefixes. A cache read costs one tenth of normal input, while cache writes cost more than normal input. Reuse stable system instructions and tool definitions when the workflow naturally supports it; do not add complexity only to chase a cache hit.
Test Fable against a real task #
Choose a task where a better result has clear value. Run the same input through Fable, Sonnet 5 and one non-Claude model, then compare correctness, review time, latency and final billed cost.
Create a RouterPlex key with a $5 hard budget, or compare Fable with GPT-5.6 and Kimi K3.
Frequently asked questions
How much does Claude Fable 5 cost?
Anthropic lists Claude Fable 5 at $10 per 1M input tokens, $1 per 1M cache-read tokens, and $50 per 1M output tokens.
What is the Claude Fable 5 context window?
Claude Fable 5 supports a 1M-token context window and up to 128K output tokens in the synchronous Messages API.
Does Claude Fable 5 support vision?
Yes. Claude Fable 5 accepts image input alongside text.
Claude Fable 5 or Claude Sonnet 5?
Use Fable for the highest-value complex work where capability matters most. Sonnet 5 is substantially cheaper and is the better default when cost and throughput matter.
Run the smallest paid test.
Add $5, cap the key, and verify the result with your own workload.