Claude Fable 5.1 pricing per million tokens

Claude Fable 5.1 lists at $10 in and $50 out, the same as Fable 5, but its cache hit is $0.25 instead of $1. What that changes for long running agents, with the arithmetic.

Every figure captured 6 September 2026 from Anthropic's pricing page and two public price registries. Prices change, so treat this as a dated snapshot.

$10 per million input tokens, $50 per million output tokens, and $0.25 per million cache hit tokens. That is the Claude Fable 5.1 row on Anthropic's pricing page as of 6 September 2026, and the cache hit is the number that matters. It is 0.025x the base input price, where every other Claude model except Mythos 5.1 charges 0.1x, so Fable 5.1 reads cached context at a quarter of Fable 5's $1 and half of Opus 5's $0.50 while keeping the same $10 and $50 headline rates as Fable 5.

$10 / $50input and output per 1M
$0.25cache hit per 1M, 0.025x base
$12.50 / $205 minute and 1 hour cache write
$5 / $25Batch API rates

OpenRouter first listed anthropic/claude-fable-5.1 at timestamp 1788285838, which is 1 September 2026 at 18:03 UTC. OpenRouter and the LiteLLM registry both carry the same numbers as Anthropic on every column, so there is no disagreement to report.

Standard API prices

Anthropic pricing page, docs.anthropic.com, read 6 September 2026. USD per 1M tokens.

ModelBase input5m cache write1h cache writeCache hitOutput
Claude Fable 5.1$10$12.50$20$0.25$50
Claude Mythos 5.1 (limited availability)$10$12.50$20$0.25$50
Claude Fable 5$10$12.50$20$1$50
Claude Opus 5$5$6.25$10$0.50$25
Claude Sonnet 5$2$2.50$4$0.20$10

The footnote under that table reads, in full, "Cache hits and refreshes on Claude Fable 5.1 and Claude Mythos 5.1 are priced at 0.025x the base input price. All other models use the standard 0.1x multiplier." The prompt caching section repeats it in plainer money, "On Claude Fable 5.1 and Claude Mythos 5.1, a cache hit costs 2.5% of the standard input price ($0.25 USD per million tokens)."

The write multipliers did not move. A 5 minute cache write is still 1.25x base ($12.50) and a 1 hour write is 2x base ($20). What changed is the payback. On Fable 5, a 1 hour write at $20 plus two $1 reads costs $22, against $30 for sending the same tokens three times at $10, so the write pays for itself by the third use of the prompt. On Fable 5.1 every read after the write is 40 times cheaper than base input instead of 10 times, so an agent that re-reads a large context all day pays mostly for writes.

Batch API prices

Anthropic batch processing table, read 6 September 2026. USD per 1M tokens, 50 percent off the standard rates.

ModelBatch inputBatch outputBatch cache hit (OpenRouter)
Claude Fable 5.1$5$25$0.125
Claude Fable 5$5$25$0.50
Claude Opus 5$2.50$12.50$0.25
Claude Sonnet 5$1$5$0.10

Anthropic's page describes batch as "a 50% discount on both input and output tokens" and says the caching multipliers "stack with other pricing modifiers, including the Batch API discount and data residency." The batch cache hit column is not printed by Anthropic; it comes from OpenRouter's anthropic/claude-fable-5.1:batch entry (input_cache_read 0.000000125 per token), which is exactly half of $0.25.

Long context carries no surcharge. The page states that "Claude 4.6 and later models and Claude Mythos Preview include the full 1M token context window at standard pricing. (A 900k-token request is billed at the same per-token rate as a 9k-token request.)" LiteLLM lists max_input_tokens 1,000,000 and max_output_tokens 128,000 for claude-fable-5-1.

Three worked examples

All three were computed with a short Python script and the numbers below are its output, unrounded except to cents. Rates are the ones in the tables above.

An agent that re-reads 300,000 cached tokens 500 times a day

Take a long-running agent with a 300,000 token working context. It reads that context on every call, 500 calls a day, and the operator deliberately re-writes it to the 1 hour cache eight times a day, once per hour of an 8 hour shift. That is 150,000,000 cache hit tokens and 2,400,000 write tokens a day, output not counted.

Example 1, cache hits plus eight 1h cache writes per day, output excluded. 30 day month.

ModelCache hits per day1h writes per dayPer dayPer 30 days
Fable 5.1$37.50$48.00$85.50$2,565.00
Fable 5$150.00$48.00$198.00$5,940.00
Opus 5$75.00$24.00$99.00$2,970.00

Fable 5.1 comes in 56.8 percent under Fable 5 and 13.6 percent under Opus 5 for this shape of work. Without caching, the same 500 reads on Fable 5.1 would cost $1,500 a day in base input alone, so caching is not optional at this price. Notice that on Fable 5.1 the writes ($48) now cost more than the 500 reads ($37.50). Anyone tuning this workload should look at the write count first.

One request with 100,000 input and 10,000 output tokens

A single uncached request, say a large document plus a long answer, costs $1.50 on Fable 5.1 ($1.00 input, $0.50 output). Opus 5 does the same request for $0.75 and Sonnet 5 for $0.30. Fable 5.1 is exactly 2.00x Opus 5 and 5.00x Sonnet 5 here, because nothing is cached and every column is a clean multiple. A thousand such requests run $1,500, $750 and $300.

The same work on the Batch API

Batch halves every line. The agent month drops to $1,282.50 on Fable 5.1 ($42.75 a day, with cache hits at $0.125 and 1 hour writes at $10 per million), $2,970.00 on Fable 5 and $1,485.00 on Opus 5. The single request becomes $0.75 on Fable 5.1, $0.375 on Opus 5 and $0.15 on Sonnet 5. The relative gaps between models do not change, only the absolute bill.

Where the cheaper cache hit beats Opus 5

Let h be the share of input tokens that are cache hits. Fable 5.1 input then costs 10(1 minus h) + 0.25h per million and Opus 5 costs 5(1 minus h) + 0.50h. Setting them equal gives h = 5 / 5.25 = 0.9524. At a 90 percent hit share Fable 5.1 input is $1.23 per million against $0.95 on Opus 5. At 95.24 percent both are $0.71.

At 99 percent Fable 5.1 is $0.35 against $0.55. So the input side of a Fable 5.1 workload only undercuts Opus 5 when more than 95.24 percent of input tokens come from cache, and output stays at $50 against $25 no matter what. Against Fable 5 there is no break-even to find, since every column is equal except the cache hit, which is four times cheaper.

What changed from Fable 5, and how the siblings compare

Fable 5.1 keeps Fable 5's $10 base input, $12.50 and $20 cache writes and $50 output. The only price that moved is the cache hit, from $1 to $0.25. The batch rows are also identical at $5 and $25. Both models list a 1,000,000 token input window and a 128,000 token output cap in LiteLLM.

Opus 5 sits at half of every Fable 5.1 column except the cache hit, where Opus 5 is $0.50, twice Fable 5.1. Sonnet 5 is $2 and $10 with a $0.20 cache hit; Anthropic's page adds that the $2/$10 introductory price "is now the standard price" and the increase to $3/$15 scheduled for 1 September 2026 "will not occur." Fast mode, which the page prices at $10 and $50, is listed for Opus 5 and Opus 4.8 only, not for Fable.

On Mythos 5.1 the pricing page says exactly this much. It appears as "Claude Mythos 5.1 (limited availability)" with the same five figures as Fable 5.1 and the same batch rates, and it shares the 0.025x cache hit footnote. The page says nothing else about it, and neither does this one.

How this page was checked

Primary source is the Anthropic pricing page at docs.anthropic.com/en/docs/about-claude/pricing, saved as HTML on 6 September 2026 and converted to text; the exact rows, footnote and sentences quoted above are in that extract. The two cross-checks are the OpenRouter models API (ids anthropic/claude-fable-5.1, anthropic/claude-fable-5.1:batch and anthropic/claude-fable-5 for the standard rows, and anthropic/claude-fable-5:batch, anthropic/claude-opus-5:batch and anthropic/claude-sonnet-5:batch for the batch cache hit column, prices per token multiplied by one million) and the LiteLLM price registry (keys claude-fable-5-1 and claude-fable-5), both fetched the same day.

OpenRouter gives input_cache_read 0.00000025 for Fable 5.1 and 0.000001 for Fable 5; LiteLLM gives cache_read_input_token_cost 2.5e-07 and 1e-06. Both match Anthropic's $0.25 and $1 exactly, and every other cell also agrees, so no figure on this page rests on one source. The worked examples were computed in Python. Nothing here is a benchmark or a quality judgement; only the pricing page was used for anything about Mythos.

Evidence files for this page are published at claude-fable-5-1-pricing-claims.json (every figure with its source quote) and claude-fable-5-1-pricing-calc.txt (the script output for the worked examples).

Frequently asked questions

How much does Claude Fable 5.1 cost per million tokens?

$10 base input, $12.50 for a 5 minute cache write, $20 for a 1 hour cache write, $0.25 for cache hits and refreshes, and $50 output, per Anthropic's page on 6 September 2026.

Why is the cache hit $0.25 on Fable 5.1 but $1 on Fable 5?

Anthropic's footnote prices Fable 5.1 and Mythos 5.1 cache hits at 0.025x base input, while every other model uses 0.1x. Same $10 base, different multiplier.

What does Fable 5.1 cost on batch?

$5 input and $25 output per million, a 50 percent discount that stacks with caching. OpenRouter lists the batch cache read at $0.125 per million.

Is Fable 5.1 cheaper than Opus 5?

Only on cache hits ($0.25 against $0.50). Base input and output are double. The input side breaks even at a 95.24 percent cache hit share, and output never does.

What is Mythos 5.1 pricing?

Listed as limited availability at the same rates as Fable 5.1 on every column, standard and batch.

KickLLM Margin Studio · Offline analysis app

Know your AI costs. Now plan your margin.

Turn your usage CSV into a cost breakdown, test revenue and growth assumptions, and export a report for your next pricing decision. Margin Studio runs locally with rates you supply.

Get Margin Studio — $39 Try the interactive preview → One-time purchase · Downloadable ZIP
By the same builder: GitHub · theluckystrike BeLikeNative · Grammar AI EarlyThunder · Dev Blog Bug Bounty Reality Zovo · AI Dev Tools