Claude
Claude テキスト

w3leee/claude-haiku-4.5

モデルID: w3leee/claude-haiku-4.5
モデル系列
Claude
Context
未更新
入力 / 1Mトークン
3 ¥
利用回数
2.5K
成功
91.3%
トークン
132.67M
アップタイム
24時間前現在
7日前現在

料金表

入力 / 1Mトークン
3 ¥
出力 / 1Mトークン
17.4 ¥
リクエストごと
0.164 ¥
価格変更履歴

過去に適用されたすべての価格レベルです。「現在」の行が使用中の価格です。

過去 開始日 29/07/2026 - 17:28:38
入力 / 1Mトークン3.125 ¥ 出力 / 1Mトークン18.125 ¥ 最低価格 / リクエスト0.1 ¥
現在 開始日 03/08/2026 - 22:57:20
入力 / 1Mトークン3 ¥ 出力 / 1Mトークン17.4 ¥ リクエストごと0.164 ¥
費用見積もり
合計見積もり 0 ¥
平均 / リクエスト 0 ¥

公開価格に基づく見積もりです。キャッシュを利用すると通常より安くなります。

対応エンドポイント
https://api.xah.io/v1/chat/completions
https://api.xah.io/v1/messages
https://api.xah.io/v1/responses
https://api.xah.io/v1beta/models/w3leee/claude-haiku-4.5:generateContent
https://api.xah.io/api/chat
https://api.xah.io/api/generate
認証方式 POST · application/json
認証 Bearerトークン(APIキー)
負荷テスト済み 🟡 Medium ピーク 21/s · 持続 5.7/s
p95レイテンシ 9,849 ms
API種別 テキスト

共有

curl 'https://api.xah.io/v1/chat/completions' \
  -H 'Authorization: Bearer YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
    "model": "w3leee/claude-haiku-4.5",
    "messages": [
        {
            "role": "user",
            "content": "こんにちは、あなたは誰ですか?"
        }
    ]
}'
// Node.js / Browser
const res = await fetch('https://api.xah.io/v1/chat/completions', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer YOUR_API_KEY',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    "model": "w3leee/claude-haiku-4.5",
    "messages": [
        {
            "role": "user",
            "content": "こんにちは、あなたは誰ですか?"
        }
    ]
})
});
const data = await res.json();
console.log(data);
import requests

url = 'https://api.xah.io/v1/chat/completions'
headers = {
    'Authorization': 'Bearer YOUR_API_KEY',
    'Content-Type': 'application/json',
}
payload = {
    "model": "w3leee/claude-haiku-4.5",
    "messages": [
        {
            "role": "user",
            "content": "こんにちは、あなたは誰ですか?"
        }
    ]
}

res = requests.post(url, headers=headers, json=payload, timeout=120)
print(res.status_code, res.json())
{
    "model": "w3leee/claude-haiku-4.5",
    "messages": [
        {
            "role": "user",
            "content": "こんにちは、あなたは誰ですか?"
        }
    ]
}

クイックテスト

あなたのAPIキーでプロンプトを送信 — 実際にクレジットを消費し、結果がすぐにストリーミングされます。

レビュー・コメント
0.0 / 0 件のレビュー
レビューを読み込み中...
サポートへ問い合わせ
いつでもサポートいたします