その他
その他 埋め込み

text-embedding-3-small

モデルID: text-embedding-3-small
モデル系列
その他
Context
未更新
最低価格 / リクエスト
0.0375 ¥
利用回数
20.7K
成功
98.5%
トークン
13.53M
アップタイム 100.00%
24時間前現在
7日前現在

料金表

入力 / 1Mトークン
7 ¥
出力 / 1Mトークン
0 ¥
最低価格 / リクエスト
0.0375 ¥
価格変更履歴

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

現在 開始日 05/04/2026 - 19:56:28
入力 / 1Mトークン7 ¥ 出力 / 1Mトークン0 ¥ 最低価格 / リクエスト0.0375 ¥
費用見積もり
合計見積もり 0 ¥
平均 / リクエスト 0 ¥

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

対応エンドポイント
https://api.xah.io/v1/embeddings
認証方式 POST · application/json
認証 Bearerトークン(APIキー)
負荷テスト済み 🟢 Enterprise ピーク 65/s · 持続 43.2/s
p95レイテンシ 2,000 ms
API種別 埋め込み

共有

curl 'https://api.xah.io/v1/embeddings' \
  -H 'Authorization: Bearer YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
    "model": "text-embedding-3-small",
    "input": "The quick brown fox jumps over the lazy dog"
}'
// Node.js / Browser
const res = await fetch('https://api.xah.io/v1/embeddings', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer YOUR_API_KEY',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    "model": "text-embedding-3-small",
    "input": "The quick brown fox jumps over the lazy dog"
})
});
const data = await res.json();
console.log(data);
import requests

url = 'https://api.xah.io/v1/embeddings'
headers = {
    'Authorization': 'Bearer YOUR_API_KEY',
    'Content-Type': 'application/json',
}
payload = {
    "model": "text-embedding-3-small",
    "input": "The quick brown fox jumps over the lazy dog"
}

res = requests.post(url, headers=headers, json=payload, timeout=120)
print(res.status_code, res.json())
{
    "model": "text-embedding-3-small",
    "input": "The quick brown fox jumps over the lazy dog"
}
クイックテスト

このモデルはテキストチャットに対応していないため、クイックテストはできません。

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