
claude-fable-5-1Claude Fable 5.1 是 Anthropic 在 2026 年 9 月发布的旗舰模型,在 APIMODELS 上输入 $5、输出 $25 每 1M token —— 正好是 Anthropic 官方 $10 / $50 的一半。相比 Fable 5,这一代真正拉开差距的是长时间 agent 任务的耐力:Terminal-Bench-Science 0.1 从 24.7% 提到 52.6%(Opus 5 是 29.0%),等于翻了一倍还多;Terminal-Bench 4.0 55.8%(Fable 5 是 42.0%)、CursorBench 3.2.0 73.4%(70.5%)、AutomationBench 31.4%(17.1%)、OSWorld 2.0 严格模式 41.7%(36.1%)、带工具的 Humanity’s Last Exam 65.0%(63.8%),GDPval-AA v2 的 Elo 从 1723 涨到 1853。官方拿它演示过 38 小时无人值守的 agent 连续跑批,以及多小时的科研任务。规格上是 1M token 上下文、最多 128K 输出,输入支持文字与图片。调用走原生 Anthropic Messages API(/v1/messages) —— 也就是 Claude Code、Anthropic 官方 SDK 和 Cursor 这类 Anthropic 兼容客户端的原生路径,原生工具调用与提示词缓存都可用。请求参数与 Fable 5 一致,从 Fable 5 迁过来只需要改一个模型名。通过统一接口调用,一个 API Key 同时可用图片、视频、音频模型。
$5 / $25 against Anthropic’s $10 / $50
Terminal-Bench-Science 52.6% vs 24.7%
Multimodal input (text + image)
Native /v1/messages, tool use + prompt caching
View complete API reference with all parameters and examples.
Enable real-time streaming responses with Server-Sent Events.
{
"model": "claude-fable-5-1",
"stream": true,
"max_tokens": 1024,
"messages": [...]
}Enable Claude to use tools and call functions.
{
"model": "claude-fable-5-1",
"max_tokens": 1024,
"tools": [{
"name": "get_weather",
"description": "Get current weather for a location",
"input_schema": {
"type": "object",
"properties": {
"location": {"type": "string", "description": "City name"}
},
"required": ["location"]
}
}],
"tool_choice": {"type": "auto"},
"messages": [{"role": "user", "content": "What's the weather in Tokyo?"}]
}Analyze PDF documents by sending them as base64 encoded content.
{
"model": "claude-fable-5-1",
"max_tokens": 1024,
"messages": [{
"role": "user",
"content": [{
"type": "document",
"source": {
"type": "base64",
"media_type": "application/pdf",
"data": "<base64_encoded_pdf>"
}
}, {
"type": "text",
"text": "Summarize this document."
}]
}]
}Get structured JSON responses that match your schema.
{
"model": "claude-fable-5-1",
"max_tokens": 1024,
"output_format": {
"type": "json_schema",
"schema": {
"type": "object",
"properties": {
"name": {"type": "string"},
"age": {"type": "integer"}
},
"required": ["name", "age"]
}
},
"messages": [{"role": "user", "content": "Extract info: John is 30 years old"}]
}Enable Claude to search the web for up-to-date information.
{
"model": "claude-fable-5-1",
"max_tokens": 1024,
"tools": [{
"type": "web_search_20250305",
"name": "web_search",
"max_uses": 5
}],
"messages": [{"role": "user", "content": "What's the latest news about AI?"}]
}| Parameter | Type | Required | Description |
|---|---|---|---|
| model | string | Yes | Model identifier (e.g., claude-fable-5-1) |
| messages | array | Yes | Array of message objects with role and content |
| max_tokens | integer | Yes | Maximum tokens in the response (1 - 128000) |
| system | string | No | System prompt to set context |
| stream | boolean | No | Enable streaming responses (SSE) |
| temperature | number | No | Sampling temperature (0.0 - 1.0) |
| top_p | number | No | Nucleus sampling threshold (0.0 - 1.0) |
| top_k | integer | No | Top-k sampling (0 - infinity) |
| stop_sequences | array | No | Sequences that stop generation |
| tools | array | No | Function calling tools definition |
| tool_choice | object | No | Tool selection strategy (auto/any/tool) |
| thinking | object | No | Enable extended thinking mode |
| output_format | object | No | Structured output with JSON schema |
View complete API reference with streaming, thinking, and more.
Billing: Cost = (input_tokens * input_price + output_tokens * output_price) / 1,000,000
Claude Fable 5.1 是由 Anthropic 提供的大语言模型 API。Claude Fable 5.1 是 Anthropic 在 2026 年 9 月发布的旗舰模型,在 APIMODELS 上输入 $5、输出 $25 每 1M token —— 正好是 Anthropic 官方 $10 / $50 的一半。相比 Fable 5,这一代真正拉开差距的是长时间 agent 任务的耐力:Terminal-Bench-Science 0.1 从 24.7% 提到 52.6%(Opus 5 是 29.0%),等于翻了一倍还多;Terminal-Bench 4.0 55.8%(Fable 5 是 42.0%)、CursorBench 3.2.0 73.4%(70.5%)、AutomationBench 31.4%(17.1%)、OSWorld 2.0 严格模式 41.7%(36.1%)、带工具的 Humanity’s Last Exam 65.0%(63.8%),GDPval-AA v2 的 Elo 从 1723 涨到 1853。官方拿它演示过 38 小时无人值守的 agent 连续跑批,以及多小时的科研任务。规格上是 1M token 上下文、最多 128K 输出,输入支持文字与图片。调用走原生 Anthropic Messages API(/v1/messages) —— 也就是 Claude Code、Anthropic 官方 SDK 和 Cursor 这类 Anthropic 兼容客户端的原生路径,原生工具调用与提示词缓存都可用。请求参数与 Fable 5 一致,从 Fable 5 迁过来只需要改一个模型名。通过统一接口调用,一个 API Key 同时可用图片、视频、音频模型。 通过 APIMODELS 平台,您可以使用统一的 API 接口调用该模型,按量计费、价格透明。当前定价:Input: $5, Output: $25 per 1M tokens。
构建智能对话系统,自动回答用户问题,提升客户服务效率。
自动撰写文章、邮件、广告文案等文本内容,提高内容产出效率。
辅助代码编写、调试和代码审查,加速软件开发流程。
理解和分析非结构化数据,提取关键信息并生成报告摘要。
Claude Fable 5.1 通过 APIMODELS 平台调用,当前定价:Input: $5, Output: $25 per 1M tokens。按量计费,用多少付多少。
在 APIMODELS 注册账号并获取 API Key,然后通过我们的统一 API 端点调用即可。我们提供详细的 API 文档和 cURL、Python、Node.js 代码示例。
APIMODELS 通过聚合平台提供与官方相同的 Claude Fable 5.1 模型。我们提供统一的 API 接口,无需分别注册各平台账号,一个 API Key 即可调用所有模型。
差距主要在长时间 agent 任务的耐力上,不是聊天质感。Anthropic 公布的数字:Terminal-Bench-Science 0.1 从 Fable 5 的 24.7% 提到 52.6%(Opus 5 是 29.0%),翻了一倍还多;Terminal-Bench 4.0 55.8% 对 42.0%;CursorBench 3.2.0 73.4% 对 70.5%;AutomationBench 31.4% 对 17.1%;OSWorld 2.0 严格模式 41.7% 对 36.1%;GDPval-AA v2 的 Elo 从 1723 到 1853。官方演示过 38 小时无人值守的 agent 连续跑批。选择很简单:要长链路 agent、跨仓库改代码、科研类多步任务就上 5.1;两者在 APIMODELS 同价($5 / $25),所以没有"为省钱留在 5"的理由,只有"已经跑稳了不想动"的理由。
可以,而且是原生路径。它走 Anthropic Messages API(/v1/messages):把 ANTHROPIC_BASE_URL 指向 https://api.apimodels.app/v1、模型名填 claude-fable-5-1、API Key 用你的 apimodels key 即可(详见 /docs/claude-code)。Cursor 这类支持 Anthropic API 的客户端按"自定义 Anthropic 模型"接入同样可用。工具用 Anthropic 格式({name, input_schema}),请求参数与 Fable 5 完全一致,从 Fable 5 迁过来只改模型名这一处。
缓存命中(读取)$0.578 每 1M,缓存写入 $5.778 每 1M。写入档在 Anthropic 那边分 5 分钟 TTL 与 1 小时 TTL 两种价(官方 $12.50 / $20),我们这边两档同价 $5.778,所以显式传 ttl:"1h" 不会多收钱。用法就是标准的 cache_control:{"type":"ephemeral"},把系统提示词和不变的上下文放在最前面、多轮之间保持字节一致,命中率才起得来。Claude Code 这类客户端默认就在用缓存,不需要额外配置。
上下文 1M token,单次最多输出 128K token,输入支持文字与图片(视觉)。1M 上下文按同一档输入价计费,没有长上下文加价。要注意的是输出上限虽然有 128K,但一次让它写满 128K 的账单是 128K × $25/1M ≈ $3.2,长输出任务建议用流式(stream:true)边出边收,既能提前看到结果,也避免超长非流式请求撞上网关超时。
按任务形态选:Fable 5.1 是这一代做长链路 agent、终端任务和科研类多步工作最强的一档,公开成绩在 Terminal-Bench 系列、AutomationBench、OSWorld 上都领先 Opus 5;Opus 4.8 单价低得多($3 / $13),日常对话、单轮改代码、结构化输出这些够用且更划算。三个模型共用一个 API Key 和一个端点,按任务在 model 字段之间切换即可,不用改任何其它代码。
在 APIMODELS,Claude Fable 5.1 与 60+ 个模型共用一个 API Key、一个余额,所以选型只看合不合适,不存在锁定。它支持 50% Below Official、Agentic Coding、1M Context、Multimodal,你可以在价格和能力上把它和其它大语言模型模型对比,换模型只需改一个模型名字符串——无需新账号、无需重新对接。所有大语言模型模型与实时价格见 apimodels.app/models。
Claude Fable 5.1 支持:50% Below Official、Agentic Coding、1M Context、Multimodal。完整参数与调用方式见 APIMODELS 的 API 文档。
可以。APIMODELS 提供可直接访问的统一 API,一个 API Key 即可调用 Claude Fable 5.1,无需分别注册官方账号、也无需自行处理官方接口的网络访问。
我们支持 Stripe(Visa、Mastercard 等国际信用卡)和支付宝付款。充值后积分即时到账。