
claude-fable-5-1Claude Fable 5.1 は Anthropic が 2026 年 9 月に公開したフラッグシップです。APIMODELS では入力 100 万トークン $5、出力 $25 —— Anthropic 公式($10 / $50)のちょうど半額です。Fable 5 との違いは会話の質感ではなく、長時間のエージェント作業をどこまで持たせられるかにあります。Anthropic 公表値では、Terminal-Bench-Science 0.1 が Fable 5 の 24.7% から 52.6% へ(Opus 5 は 29.0%)と 2 倍以上、Terminal-Bench 4.0 は 55.8% 対 42.0%、CursorBench 3.2.0 は 73.4% 対 70.5%、AutomationBench は 31.4% 対 17.1%、OSWorld 2.0 の strict は 41.7% 対 36.1%、ツール利用ありの Humanity's Last Exam は 65.0% 対 63.8%、GDPval-AA v2 の Elo は 1723 から 1853 に上がりました。Anthropic は 38 時間の無人エージェント実行をこのモデルで実演しています。コンテキストは 100 万トークン、出力は最大 128K、入力はテキストと画像に対応します。呼び出しはネイティブの Anthropic Messages API(/v1/messages) —— Claude Code、公式 SDK、Cursor のような互換クライアントが通るのと同じ経路 —— で、ツール利用とプロンプトキャッシュ(読み取り $0.578、書き込み $5.778 / 100 万。5 分と 1 時間の 2 つの TTL はここでは同額)が使えます。リクエストパラメータは Fable 5 と同一なので、移行は model フィールドを書き換えるだけです。
$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 では入力 100 万トークン $5、出力 $25 —— Anthropic 公式($10 / $50)のちょうど半額です。Fable 5 との違いは会話の質感ではなく、長時間のエージェント作業をどこまで持たせられるかにあります。Anthropic 公表値では、Terminal-Bench-Science 0.1 が Fable 5 の 24.7% から 52.6% へ(Opus 5 は 29.0%)と 2 倍以上、Terminal-Bench 4.0 は 55.8% 対 42.0%、CursorBench 3.2.0 は 73.4% 対 70.5%、AutomationBench は 31.4% 対 17.1%、OSWorld 2.0 の strict は 41.7% 対 36.1%、ツール利用ありの Humanity's Last Exam は 65.0% 対 63.8%、GDPval-AA v2 の Elo は 1723 から 1853 に上がりました。Anthropic は 38 時間の無人エージェント実行をこのモデルで実演しています。コンテキストは 100 万トークン、出力は最大 128K、入力はテキストと画像に対応します。呼び出しはネイティブの Anthropic Messages API(/v1/messages) —— Claude Code、公式 SDK、Cursor のような互換クライアントが通るのと同じ経路 —— で、ツール利用とプロンプトキャッシュ(読み取り $0.578、書き込み $5.778 / 100 万。5 分と 1 時間の 2 つの TTL はここでは同額)が使えます。リクエストパラメータは Fable 5 と同一なので、移行は model フィールドを書き換えるだけです。 APIMODELS のプラットフォーム経由なら、統一 API と明朗な従量課金でこのモデルを呼び出せます。 現在の料金: Input: $5, Output: $25 per 1M tokens。
問い合わせに自動で答える対話システムを構築し、対応の効率を上げます。
記事、メール、広告コピーなどの文章を自動で書き、制作の手数を減らします。
コードの記述、デバッグ、レビューを補助し、開発を前に進めます。
非構造化データを読み解き、要点を抽出して要約レポートにまとめます。
Claude Fable 5.1 は APIMODELS 経由で Input: $5, Output: $25 per 1M tokens で利用できます。課金は従量制で、生成した分だけの支払いです。
APIMODELS に登録して API キーを取得し、統一エンドポイントを呼ぶだけです。cURL / Python / Node.js のサンプルを含む詳しいドキュメントを用意しています。
APIMODELS は同じ Claude Fable 5.1 を集約プラットフォーム経由で提供します。統一された API インターフェースなので、プロバイダごとにアカウントを作る必要はありません。キー 1 本ですべてのモデルに届きます。
入力 100 万トークン $5、出力 $25 —— Anthropic 公式($10 / $50)のちょうど半額です。キャッシュ読み取りは 100 万トークン $0.578、書き込みは $5.778 で、5 分と 1 時間の 2 つの TTL は同額です(Anthropic 側は別料金)。従量課金でサブスクリプションも最低チャージもなく、失敗したリクエストは課金されません。100 万トークンのコンテキスト全体が同じ入力レートで計算され、長文コンテキストの追加料金もありません。
違いは会話の質感ではなく、長時間のエージェント作業をどこまで持たせられるかです。Anthropic 公表値では Terminal-Bench-Science 0.1 が 52.6%(Fable 5 は 24.7%、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%、GDPval-AA v2 の Elo が 1853 対 1723 です。Anthropic は 5.1 で 38 時間の無人エージェント実行を実演しました。当サイトでは両者同額($5 / $25)なので、Fable 5 に留まる金銭的な理由はありません。
はい、ネイティブ経路で使えます。Anthropic Messages API(/v1/messages)に対応しているので、ANTHROPIC_BASE_URL を https://api.apimodels.app/v1 に、モデル名を claude-fable-5-1 に、API キーを apimodels のキーに設定してください。Cursor のような互換クライアントは「カスタム Anthropic モデル」の設定から接続できます。ツールは Anthropic 形式({name, input_schema})で記述し、リクエストパラメータは Fable 5 と同一なので、移行は model フィールドの変更だけです。
APIMODELS では Claude Fable 5.1 が 60 以上のモデルと同じ API キー・同じ残高の上に並んでいるので、選択は「相性」の問題であって「囲い込み」の問題ではありません。50% Below Official、Agentic Coding、1M Context、Multimodal に対応しており、他の大規模言語モデルモデルと価格・機能を並べて評価できます。乗り換えはモデル名の文字列を 1 つ書き換えるだけ。新しいアカウントも追加の実装も要りません。大規模言語モデルの選択肢と最新価格は apimodels.app/models で確認できます。
Claude Fable 5.1 は次に対応しています: 50% Below Official、Agentic Coding、1M Context、Multimodal。パラメータの全一覧と呼び出し例は APIMODELS のドキュメントをご覧ください。
はい。APIMODELS は Claude Fable 5.1 を単一の統一 API とキー 1 本で提供します。プロバイダごとのアカウントも、各社の地域ごとのネットワーク経路を自分で面倒みる必要もありません。
Stripe(Visa、Mastercard などの国際カード)と Alipay に対応しています。支払い後、残高はすぐ反映されます。