Skip to content
Anthropicclaude-fable-5-1

Claude Fable 5.1

Anthropic's most intelligent model, for the hardest problems.

Fable 5.1 is Anthropic's most capable model, extending Fable 5 with stronger agentic coding, multistep research, and document work — for the tasks that run long and still have to come out right.

  • Agentic coding
  • Multistep research
  • Document work

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.1 pricing: the provider's list price and the Inferray price for each.
MetricList priceYou pay
Input$10$7.50
Cached input$0.25$0.19
Output$50$37.50

Why teams pick it

  • Anthropic's most capable model for reasoning and agentic work
  • Stronger agentic coding and multistep research than Fable 5
  • 1M-token context for whole-repo and long-document work

Call Claude Fable 5.1

Claude Fable 5.1 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-1",
    "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-1",
    "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-1",
    "input": "ship it"
  }'

More from Anthropic