
claude-opus-5-5Claude Opus 5.5 は Anthropic の Claude 5.5 ファミリー最初のモデルで、2026 年 9 月 22 日に公開されました。APIMODELS では入力 100 万トークン $2.40、出力 100 万トークン $12.00 で、公式定価 $4 / $20 より 40% 安く、キャッシュ読み取り $0.12、書き込み $3.00 です。Anthropic の説明では、ほとんどの作業で Claude Fable 5.1 と同等の成果を出しながら、典型的な負荷での実行コストは Opus 5 より 40% 低く、長時間のエージェント型コーディングとナレッジワーク向けに作られています。仕様は Fable 5.1 と同じで、コンテキスト 100 万トークン、最大出力 128K、テキストと画像の入力、信頼できる知識カットオフは 2026 年 6 月です。適応的思考は常時オンで無効化できず、深さは effort パラメータ(既定 medium)で制御します。Fable 5.1 から引き継がれた 4 つの破壊的変更に注意してください。ツール使用の強制はエラーになり、thinking ブロックは生成したモデルに紐づき、旧 computer_20251124 ツールは受け付けられず、ツール呼び出しの間のテキストは thinking ブロックの中で返ります。/v1/messages か OpenAI 互換の /v1/chat/completions をキー 1 つで呼べ、失敗したリクエストは課金されません。
View complete API reference with all parameters and examples.
Enable real-time streaming responses with Server-Sent Events.
{
"model": "claude-opus-5-5",
"stream": true,
"max_tokens": 1024,
"messages": [...]
}Enable Claude to use tools and call functions.
{
"model": "claude-opus-5-5",
"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-opus-5-5",
"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-opus-5-5",
"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-opus-5-5",
"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-opus-5-5) |
| 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
100 万トークン $2.40 / $12.00、公式定価は $4 / $20。キャッシュ読み取り $0.12
Anthropic:ほとんどの作業で Fable 5.1 と同等、実行コストは Opus 5 より 40% 低い
Fable 5.1 と同じ仕様。テキストと画像の入力。知識カットオフ 2026 年 6 月
無効化不可。深さは effort(既定 medium)で制御。ツール使用の強制はエラーになる
Claude Opus 5.5 は Anthropic の大規模言語モデル API です。Claude Opus 5.5 は Anthropic の Claude 5.5 ファミリー最初のモデルで、2026 年 9 月 22 日に公開されました。APIMODELS では入力 100 万トークン $2.40、出力 100 万トークン $12.00 で、公式定価 $4 / $20 より 40% 安く、キャッシュ読み取り $0.12、書き込み $3.00 です。Anthropic の説明では、ほとんどの作業で Claude Fable 5.1 と同等の成果を出しながら、典型的な負荷での実行コストは Opus 5 より 40% 低く、長時間のエージェント型コーディングとナレッジワーク向けに作られています。仕様は Fable 5.1 と同じで、コンテキスト 100 万トークン、最大出力 128K、テキストと画像の入力、信頼できる知識カットオフは 2026 年 6 月です。適応的思考は常時オンで無効化できず、深さは effort パラメータ(既定 medium)で制御します。Fable 5.1 から引き継がれた 4 つの破壊的変更に注意してください。ツール使用の強制はエラーになり、thinking ブロックは生成したモデルに紐づき、旧 computer_20251124 ツールは受け付けられず、ツール呼び出しの間のテキストは thinking ブロックの中で返ります。/v1/messages か OpenAI 互換の /v1/chat/completions をキー 1 つで呼べ、失敗したリクエストは課金されません。 APIMODELS のプラットフォーム経由なら、統一 API と明朗な従量課金でこのモデルを呼び出せます。 現在の料金: Input: $2.40, Output: $12.00 per 1M tokens。
問い合わせに自動で答える対話システムを構築し、対応の効率を上げます。
記事、メール、広告コピーなどの文章を自動で書き、制作の手数を減らします。
コードの記述、デバッグ、レビューを補助し、開発を前に進めます。
非構造化データを読み解き、要点を抽出して要約レポートにまとめます。
Claude Opus 5.5 は APIMODELS 経由で Input: $2.40, Output: $12.00 per 1M tokens で利用できます。課金は従量制で、生成した分だけの支払いです。
APIMODELS に登録して API キーを取得し、統一エンドポイントを呼ぶだけです。cURL / Python / Node.js のサンプルを含む詳しいドキュメントを用意しています。
APIMODELS は同じ Claude Opus 5.5 を集約プラットフォーム経由で提供します。統一された API インターフェースなので、プロバイダごとにアカウントを作る必要はありません。キー 1 本ですべてのモデルに届きます。
入力 100 万トークン $2.40、出力 100 万トークン $12.00、キャッシュ読み取り $0.12、書き込み $3.00 です。Anthropic の定価は $4 / $20、キャッシュ読み取り $0.20 なので 40% 安くなります。実際のトークン数で課金し、失敗したリクエストは無料、月額の最低料金もありません。
Anthropic 自身の位置づけは、Opus 5.5 はほとんどの作業で Fable 5.1 と同等の成果を出しつつ、典型的な負荷での実行コストは Opus 5 より 40% 低い、というものです。当サイトでは Opus 5.5 が $2.40 / $12.00、Opus 5 が $3 / $15、Fable 5.1 が $5 / $25 です。あるタスクが Fable 5.1 でしか正しくできないと確認済みでない限り、Opus 5.5 から始めるのが得です。3 つとも仕様は同じで、コンテキスト 100 万、出力 128K です。
モデル名を claude-opus-5-5 に変えるだけですが、4 つの破壊的変更があります。適応的思考が常時オンになり無効化できなくなった(深さは effort で制御、既定 medium)。特定ツールを指定する tool_choice によるツール使用の強制はエラーになる。thinking ブロックは生成したモデルに紐づくため、古い thinking ブロックをモデルをまたいで引き継げない。旧 computer_20251124 ツールは受け付けられない。さらにツール呼び出しの間のテキストは thinking ブロックの中で返るため、それを進捗表示に使うアプリは display を設定する必要があります。
どちらも使えます。Anthropic ネイティブの POST https://api.apimodels.app/v1/messages か、OpenAI 互換の /v1/chat/completions に、model を claude-opus-5-5、Authorization: Bearer に apimodels のキーを付けて送ります。ストリーミング、ツール呼び出し、画像入力に対応し、プロンプトキャッシュは Anthropic の cache_control の使い方に従い、ヒットは $0.12 で課金されます。
APIMODELS では Claude Opus 5.5 が 60 以上のモデルと同じ API キー・同じ残高の上に並んでいるので、選択は「相性」の問題であって「囲い込み」の問題ではありません。40% Below Official、1M Context、Agentic Coding、Adaptive Thinking に対応しており、他の大規模言語モデルモデルと価格・機能を並べて評価できます。乗り換えはモデル名の文字列を 1 つ書き換えるだけ。新しいアカウントも追加の実装も要りません。大規模言語モデルの選択肢と最新価格は apimodels.app/models で確認できます。
Claude Opus 5.5 は次に対応しています: 40% Below Official、1M Context、Agentic Coding、Adaptive Thinking。パラメータの全一覧と呼び出し例は APIMODELS のドキュメントをご覧ください。
はい。APIMODELS は Claude Opus 5.5 を単一の統一 API とキー 1 本で提供します。プロバイダごとのアカウントも、各社の地域ごとのネットワーク経路を自分で面倒みる必要もありません。
Stripe(Visa、Mastercard などの国際カード)と Alipay に対応しています。支払い後、残高はすぐ反映されます。