Claude Fable 5.1
by anthropic · family claude
Facts
| Release date | 2026-09-01 |
|---|---|
| Retired date | — |
| Knowledge cutoff | — |
| Context (max) | 1,000,000 |
| Max output | 128,000 |
| Modalities | text, image → text |
| Aliases | claude-fable-5.1 |
| Open weights | no |
| Description | GA refresh of Fable 5 (Sep 1, 2026): same $10/$50 per Mtok with prompt-cache hits cut from $1.00 to $0.25; 1M context, 128K output, text+image input. Fable line still cannot disable thinking. |
Unknown values are shown as —.
Offerings
| Provider | Wire ID | Variant | Endpoint | Protocol | Status | Price (USD / Mtok) | Reasoning |
|---|---|---|---|---|---|---|---|
| NEAR AI Cloud | anthropic/claude-fable-5-1 | chat | openai-chat | ga | 10.00 / 50.00 | adaptive · default on · mandatory · returns reasoning_content | |
| OpenCode Zen | claude-fable-5-1 | messages | anthropic-messages | ga | 10.00 / 50.00 | adaptive · default adaptive · mandatory · returns thinking_blocks · round-trips signature | |
| OpenRouter | anthropic/claude-fable-5.1 | chat-completions | openai-chat | ga | 10.00 / 50.00 | effort · default on · mandatory · returns reasoning_content · round-trips reasoning_content |
Reasoning controls
NEAR AI Cloud· anthropic/claude-fable-5-1· chat adaptive
adaptive · default on · mandatory · returns reasoning_content
OpenCode Zen· claude-fable-5-1· messages adaptive
output_config.effort lowmediumhigh●xhighmax
adaptive · default adaptive · mandatory · returns thinking_blocks · round-trips signature
Incompatible with: temperature, top_p, top_k, prefill
OpenRouter· anthropic/claude-fable-5.1· chat-completions effort
reasoning.effort lowmediumhigh●xhighmax
effort · default on · mandatory · returns reasoning_content · round-trips reasoning_content
Example requests
NEAR AI Cloud · openai-chat · anthropic/claude-fable-5-1
curl 'https://cloud-api.near.ai/v1/chat/completions' \
-H 'Authorization: Bearer <YOUR_API_KEY>' \
-H 'Content-Type: application/json' \
-d '{
"model": "anthropic/claude-fable-5-1",
"messages": [
{
"role": "user",
"content": "Tell me about the weather."
}
]
}'Python (requests)
import requests
resp = requests.post(
"https://cloud-api.near.ai/v1/chat/completions",
headers={
"Authorization": "Bearer <YOUR_API_KEY>",
"Content-Type": "application/json"
},
json={
"model": "anthropic/claude-fable-5-1",
"messages": [
{
"role": "user",
"content": "Tell me about the weather."
}
]
},
)
print(resp.json())TypeScript (fetch)
const resp = await fetch("https://cloud-api.near.ai/v1/chat/completions", {
method: "POST",
headers: {
"Authorization": "Bearer <YOUR_API_KEY>",
"Content-Type": "application/json"
},
body: JSON.stringify({
"model": "anthropic/claude-fable-5-1",
"messages": [
{
"role": "user",
"content": "Tell me about the weather."
}
]
}),
})
console.log(await resp.json())OpenCode Zen · anthropic-messages · claude-fable-5-1
curl 'https://opencode.ai/zen/v1/messages' \
-H 'Authorization: Bearer <YOUR_API_KEY>' \
-H 'Content-Type: application/json' \
-d '{
"model": "claude-fable-5-1",
"max_tokens": 1024,
"messages": [
{
"role": "user",
"content": "Tell me about the weather."
}
],
"output_config": {
"effort": "high"
}
}'Python (requests)
import requests
resp = requests.post(
"https://opencode.ai/zen/v1/messages",
headers={
"Authorization": "Bearer <YOUR_API_KEY>",
"Content-Type": "application/json"
},
json={
"model": "claude-fable-5-1",
"max_tokens": 1024,
"messages": [
{
"role": "user",
"content": "Tell me about the weather."
}
],
"output_config": {
"effort": "high"
}
},
)
print(resp.json())TypeScript (fetch)
const resp = await fetch("https://opencode.ai/zen/v1/messages", {
method: "POST",
headers: {
"Authorization": "Bearer <YOUR_API_KEY>",
"Content-Type": "application/json"
},
body: JSON.stringify({
"model": "claude-fable-5-1",
"max_tokens": 1024,
"messages": [
{
"role": "user",
"content": "Tell me about the weather."
}
],
"output_config": {
"effort": "high"
}
}),
})
console.log(await resp.json())- ⚠ Responses include
signatureartifacts — pass them back unmodified on subsequent turns (dropping them triggers 400s or quality loss). - Reported incompatible with thinking controls: temperature, top_p, top_k, prefill.
OpenRouter · openai-chat · anthropic/claude-fable-5.1
curl 'https://openrouter.ai/api/v1/chat/completions' \
-H 'Authorization: Bearer <YOUR_API_KEY>' \
-H 'Content-Type: application/json' \
-d '{
"model": "anthropic/claude-fable-5.1",
"messages": [
{
"role": "user",
"content": "Tell me about the weather."
}
],
"reasoning": {
"effort": "high"
}
}'Python (requests)
import requests
resp = requests.post(
"https://openrouter.ai/api/v1/chat/completions",
headers={
"Authorization": "Bearer <YOUR_API_KEY>",
"Content-Type": "application/json"
},
json={
"model": "anthropic/claude-fable-5.1",
"messages": [
{
"role": "user",
"content": "Tell me about the weather."
}
],
"reasoning": {
"effort": "high"
}
},
)
print(resp.json())TypeScript (fetch)
const resp = await fetch("https://openrouter.ai/api/v1/chat/completions", {
method: "POST",
headers: {
"Authorization": "Bearer <YOUR_API_KEY>",
"Content-Type": "application/json"
},
body: JSON.stringify({
"model": "anthropic/claude-fable-5.1",
"messages": [
{
"role": "user",
"content": "Tell me about the weather."
}
],
"reasoning": {
"effort": "high"
}
}),
})
console.log(await resp.json())- ⚠ Responses include
reasoning_contentartifacts — pass them back unmodified on subsequent turns (dropping them triggers 400s or quality loss).