Skip to content
Anthropicclaude-fable-5

Claude Fable 5

Next-generation intelligence for knowledge work and coding.

Fable 5 handles demanding reasoning and long-running agentic work, and stays a strong default for knowledge work and coding when you do not need the newest flagship.

  • Hard problems
  • Long-horizon agents
  • Deep reasoning

Model details

Context window
1M tokens
Max output
128K tokens
Input
Text, images
Output
Text
Capabilities
Reasoning, Vision, Tool calling, Streaming
Interfaces
OpenAI-style Chat Completions, Anthropic-style Messages, OpenAI-style Responses

Pricing

Per 1M tokens. The Inferray price is what you are charged — no gateway fee is added on top of it.

Claude Fable 5 pricing: the provider's list price and the Inferray price for each.
MetricList priceYou pay
Input$10$7.50
Cached input$1$0.75
Output$50$37.50

Why teams pick it

  • Frontier reasoning for knowledge work and coding
  • Sustains long, autonomous multi-step runs end to end
  • 1M-token context for whole-repo and long-document work

Call Claude Fable 5

Claude Fable 5 answers on any of the APIs below — pick the one your code already speaks and just swap in your Inferray key.

/v1/chat/completionsOpenAI-style Chat Completions · openai SDK or plain HTTP
curl https://api.inferray.com/v1/chat/completions \
  -H "Authorization: Bearer inferray_..." \
  -H "Content-Type: application/json" \
  -d '{
    "model": "claude-fable-5",
    "messages": [{"role": "user", "content": "ship it"}]
  }'
/v1/messagesAnthropic-style Messages · @anthropic-ai/sdk SDK or plain HTTP
curl https://api.inferray.com/v1/messages \
  -H "Authorization: Bearer inferray_..." \
  -H "Content-Type: application/json" \
  -d '{
    "model": "claude-fable-5",
    "max_tokens": 1024,
    "messages": [{"role": "user", "content": "ship it"}]
  }'
/v1/responsesOpenAI-style Responses · openai SDK or plain HTTP
curl https://api.inferray.com/v1/responses \
  -H "Authorization: Bearer inferray_..." \
  -H "Content-Type: application/json" \
  -d '{
    "model": "claude-fable-5",
    "input": "ship it"
  }'

More from Anthropic