← すべてのモデル

Claude Opus 4.7

Anthropic · テキスト

Claude Opus 4.7 は Anthropic のフラッグシップモデルで、深い推論や長時間のコーディングタスクを得意とします。getmodel では安定した Claude Code Max プールまたは低価格な Kiro プール経由で、Anthropic ネイティブと OpenAI 互換の両方のエンドポイントから利用できます。 Claude Opus 4.7はGetModelでOpenAI互換APIを通じて利用でき、従量課金です。キーを1つ取得すれば、任意のOpenAI SDKから呼び出せます。

ReasoningCodeAgentClaude Code

料金

項目価格
入力¥71.22 / 100万トークン
出力¥356 / 100万トークン

呼び出し方法

curl https://getmodel.ai/v1/chat/completions \
  -H "Authorization: Bearer $GETMODEL_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model":"claude-opus-4-7","messages":[{"role":"user","content":"Hello"}]}'
from openai import OpenAI
client = OpenAI(base_url="https://getmodel.ai/v1", api_key="$GETMODEL_API_KEY")
resp = client.chat.completions.create(
    model="claude-opus-4-7",
    messages=[{"role": "user", "content": "Hello"}],
)
print(resp.choices[0].message.content)

詳細

プロバイダーAnthropic
タイプテキスト
エンドポイントanthropic / openai
利用可能なグループClaude Code Max pool (most stable) / Claude Code low-cost (Kiro)

関連モデル