← すべてのモデル

Claude Haiku 4.5

Anthropic · テキスト

Anthropic の Claude Haiku 4.5 は高速かつ低コストで、高スループットやリアルタイム用途に適しています。getmodel では安定した Claude Code Max プールまたは低価格な Kiro プール経由で、Anthropic ネイティブと OpenAI 互換の両方のエンドポイントから利用できます。 Claude Haiku 4.5はGetModelでOpenAI互換APIを通じて利用でき、従量課金です。キーを1つ取得すれば、任意のOpenAI SDKから呼び出せます。

FastLightweightClaude Code

料金

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

呼び出し方法

curl https://getmodel.ai/v1/chat/completions \
  -H "Authorization: Bearer $GETMODEL_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model":"claude-haiku-4-5-20251001","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-haiku-4-5-20251001",
    messages=[{"role": "user", "content": "Hello"}],
)
print(resp.choices[0].message.content)

詳細

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

関連モデル