Seedance 2.5 is coming soonLearn more
Claude Fable 5 API Pricing: Token Costs, Usage Credits, and Cost Examples
pricing

Claude Fable 5 API Pricing: Token Costs, Usage Credits, and Cost Examples

EvoLink Team
EvoLink Team
Product Team
July 11, 2026
11 min read
Pricing verified: July 11, 2026. All Anthropic figures below are official USD list prices. EvoLink route pricing is displayed dynamically on the model page and may differ from direct Anthropic billing.
Claude Fable 5 API pricing is $10 per million input tokens and $50 per million output tokens at Anthropic's official list rates. EvoLink currently discounts Fable 5 to $9 input and $45 output per million tokens: 10% below those direct list rates. EvoLink also currently shows $11.25 per million cache-write tokens and $0.90 per million cache-hit tokens, also 10% below Anthropic's comparable 5-minute cache-write and cache-hit rates.

Anthropic's direct 5-minute prompt-cache write costs $12.50 per million tokens, a 1-hour cache write costs $20 per million, and cache hits or refreshes cost $1 per million. Batch processing reduces direct base input and output rates by 50%. Fable's full 1M-token context window uses standard per-token rates rather than a separate long-context multiplier.

After Anthropic's paid-plan promotion ends on July 12, 2026 at 11:59:59 PM PT, Fable 5 usage on eligible Claude plans moves to separately billed usage credits. Anthropic says those credits use standard API rates.

Claude Fable 5 API Pricing at a Glance

Billable itemOfficial priceWhat it covers
Base input$10 / 1M tokensUncached prompt, system, message, tool-schema, and context tokens
5-minute cache write$12.50 / 1M tokensTokens written to the short prompt cache
1-hour cache write$20 / 1M tokensTokens written to the extended prompt cache
Cache hit or refresh$1 / 1M tokensReused prompt-cache tokens
Output$50 / 1M tokensModel-generated thinking and response tokens billed as output
Batch input$5 / 1M tokensAsynchronous Batch API base input
Batch output$25 / 1M tokensAsynchronous Batch API output
Source: Anthropic Claude Platform pricing. Prices are subject to change; verify the official page and your route before approving a budget.
Claude Fable 5 API token cost pipeline showing fresh input, cache write, cache reuse, and output billing routes
Claude Fable 5 API token cost pipeline showing fresh input, cache write, cache reuse, and output billing routes

The output rate is five times the base input rate. That means long responses, retries, and agent verification loops can matter more than the original prompt size.

Subscription Access vs API Billing

Fable 5 has three cost surfaces that should not be mixed together.

Access pathBilling modelWhat to verify
Claude paid-plan promotionTemporarily included in eligible plan limitsPromotion ends July 12, 2026 at 11:59:59 PM PT
Claude usage creditsPrepaid consumption billed separatelyAnthropic says standard API rates apply
Direct or gateway APIPer-token API billingProvider, cloud, gateway, cache, and route-specific terms

During the promotion, eligible users can spend up to 50% of weekly plan limits on Fable 5. After the deadline, Fable no longer draws from the included weekly allowance. Enabling usage credits does not convert the subscription into an unlimited Fable plan; it adds consumption charges on top of the subscription.

Direct API usage was always billed separately. If a team already uses claude-fable-5 through an API, the promotion deadline does not change the basic token-billing model.

Fable 5 Cost Formula

For a standard uncached request:

cost = (input_tokens / 1,000,000 × $10)
     + (output_tokens / 1,000,000 × $50)

For a request with prompt caching:

cost = (fresh_input_tokens / 1,000,000 × $10)
     + (cache_write_tokens / 1,000,000 × cache_write_rate)
     + (cache_hit_tokens / 1,000,000 × $1)
     + (output_tokens / 1,000,000 × $50)
Use $12.50 for 5-minute cache writes or $20 for 1-hour cache writes. A request normally has either cache-write or cache-hit tokens for a specific cached block, not both at the same time for the same block.

For server-side tools, add the documented tool charge. Tool definitions and tool results also consume normal input tokens. Client-side tools do not have a separate Anthropic tool fee, but their schemas and results still increase token usage.

Worked Fable 5 Cost Examples

These examples use official base rates only. They exclude taxes, enterprise agreements, provider-specific fees, web-search calls, retries beyond those stated, and EvoLink route discounts.

WorkloadToken assumptionCalculationCost
Focused code review50K input + 5K output0.05 × $10 + 0.005 × $50$0.75
Repository agent turn200K input + 20K output0.2 × $10 + 0.02 × $50$3.00
Long-context analysis1M input + 50K output1 × $10 + 0.05 × $50$12.50
Ten repository turns2M total input + 200K total output2 × $10 + 0.2 × $50$30.00

The ten-turn example is deliberately simple. Real coding agents can resend history, tool schemas, file contents, and tool results on each turn. Measure the API's reported usage instead of multiplying the first prompt size by the number of turns.

Prompt Caching: First Request vs Repeated Requests

Prompt caching changes the cost shape when a large, stable prefix is reused.

Assume a request contains:

  • 500K tokens of stable repository context
  • 50K tokens of fresh instructions and tool results
  • 20K output tokens
  • a 5-minute cache

The first request creates the cache:

500K cache write × $12.50 / 1M = $6.25
50K fresh input × $10 / 1M     = $0.50
20K output × $50 / 1M          = $1.00
first request total             = $7.75

A repeated request that hits the cache costs:

500K cache hit × $1 / 1M   = $0.50
50K fresh input × $10 / 1M = $0.50
20K output × $50 / 1M      = $1.00
repeat request total        = $2.00

In this example, the repeated request is $5.75 cheaper than rebuilding the same 5-minute cache. That does not mean caching always saves money. The cached prefix must remain stable long enough and be reused often enough to recover the higher write cost.

For a 5-minute cache, the cache-write premium over base input is $2.50 per million tokens, while each hit saves $9 per million compared with fresh input. One valid hit is enough to recover the write premium for the reused tokens. A 1-hour cache has a higher write cost and should be justified by a longer reuse window.

Long Context Does Not Add a Fable 5 Multiplier

Anthropic states that Fable 5 includes the full 1M-token context window at standard pricing. A 900K-token request uses the same per-token rates as a 9K-token request.

That does not make long context inexpensive. At the official base rate:

  • 100K uncached input costs $1
  • 500K uncached input costs $5
  • 1M uncached input costs $10

The cost risk comes from repeatedly resending large context across agent turns. Retrieval, compaction, and prompt caching usually matter more than the single-request context limit.

Batch API Pricing

Anthropic's Batch API reduces base input and output prices by 50%:

  • Fable 5 batch input: $5 / 1M tokens
  • Fable 5 batch output: $25 / 1M tokens

Batch is appropriate for asynchronous work that does not need an immediate response, such as offline evaluation, large-scale classification, scheduled analysis, or regression testing. It is not a replacement for interactive Claude Code or latency-sensitive agents.

Prompt caching modifiers can apply with Batch API pricing according to Anthropic's current pricing rules. Verify the exact combination before calculating a large job.

US-Only Inference Pricing

Anthropic lists US-only inference for Fable 5 at 1.1 times standard input and output pricing. At the current base rates, that implies:
  • US-only base input: $11 / 1M tokens
  • US-only output: $55 / 1M tokens

This arithmetic applies the documented 1.1 multiplier to the official base rates. Confirm platform availability, caching treatment, and any other modifiers before using it in a contract or production budget.

Fable 5 vs Opus 4.8 Cost

Anthropic lists Opus 4.8 at $5 per million base input tokens and $25 per million output tokens. Fable 5 is exactly twice those standard token rates.

ExampleOpus 4.8Fable 5Fable premium
50K input + 5K output$0.375$0.75$0.375
200K input + 20K output$1.50$3.00$1.50
1M input + 50K output$6.25$12.50$6.25

Fable becomes cost-effective only when its quality reduces a different cost: failed agent runs, repeated prompts, senior review, production defects, or delayed completion. Compare the premium with the value of those avoided failures.

For a broader model decision, read Claude Fable 5 alternatives. For a direct Claude comparison, read Fable 5 vs Opus 4.8.

Production Budget Guardrails

Use these controls before enabling Fable for production traffic:

  • keep Fable behind an explicit task-difficulty rule
  • cap input and output tokens per request
  • cap retries and agent steps
  • cache stable context when reuse is measurable
  • log fresh input, cache write, cache hit, and output separately
  • record actual model and refusal or fallback behavior
  • set a monthly usage-credit or gateway spend cap
  • compare cost per accepted task with Opus 4.8 and Sonnet 5
  • alert on unusually large prompts, outputs, or repeated failures

Do not estimate a production budget from a single successful demo. Use several weeks of representative traces and include failed runs.

As verified on July 11, 2026, EvoLink's live Fable 5 price module displays:
  • $9 / 1M input tokens, versus Anthropic's $10 list rate
  • $45 / 1M output tokens, versus Anthropic's $50 list rate
  • $11.25 / 1M cache-write tokens, versus Anthropic's $12.50 5-minute cache-write rate
  • $0.90 / 1M cache-hit tokens, versus Anthropic's $1 cache-hit rate
Each displayed EvoLink rate is 10% lower than the comparable Anthropic list rate. For example, the 200K-input plus 20K-output repository-agent example would cost $2.70 at the current EvoLink route rates instead of $3.00 at direct list pricing, before any other route, account, or tool charges.

The arithmetic is:

200K input × $9 / 1M  = $1.80
20K output × $45 / 1M = $0.90
EvoLink route total    = $2.70
Direct list total      = $3.00
Savings                = $0.30 (10%)

EvoLink pricing can change independently from Anthropic's list price. This article records the verified snapshot, while the existing live price module remains the source of truth for the current route.

View Current Fable 5 Pricing on EvoLink

The model page shows the current EvoLink input, output, cache-write, and cache-hit rates. Verify the displayed rate and account terms before moving production traffic.

Sources

FAQ

How much does Claude Fable 5 API cost?

Anthropic's official list price is $10 per million base input tokens and $50 per million output tokens. Prompt caching, Batch API, server-side tools, and data-residency options can change the final charge.

How much do Fable 5 usage credits cost?

Anthropic says usage credits are billed at standard API rates and charged separately from the paid Claude subscription. Users prepay funds and can set a monthly limit.

Is Fable 5 included in Claude Max after July 12, 2026?

No. Anthropic says the promotion ends July 12, 2026 at 11:59:59 PM PT. Continued Fable usage requires separately billed usage credits or API access.

What is the Fable 5 cached-input price?

Cache hits and refreshes cost $1 per million tokens. A 5-minute cache write costs $12.50 per million, while a 1-hour cache write costs $20 per million.

Does Fable 5 charge more above 200K context?

No separate long-context multiplier is documented for Fable 5. Anthropic says the full 1M-token context window uses standard per-token pricing.

Is Fable 5 exactly twice the price of Opus 4.8?

Yes for official standard base input and output rates. Fable is $10/$50 per million input/output tokens, while Opus 4.8 is $5/$25.

How can I reduce Fable 5 API cost?

Route only hard tasks to Fable, cap output and retries, cache stable context, use Batch for asynchronous jobs, compact long histories, and measure cost per accepted task.

Not necessarily. EvoLink route pricing is shown in the live pricing module on the Fable 5 model page. Use the official Anthropic rate as a comparison baseline and the live EvoLink rate for current route decisions.

Ready to Reduce Your AI Costs by 89%?

Start using EvoLink today and experience the power of intelligent API routing.