xAI

Grok 4 Fast API

US xAI
プレイグラウンドで試す → APIキーを取得

Grok 4 Fastは、xAIが提供する高速かつコスト効率に優れたモデルです。MeshTok統合APIを通じて利用可能です。

画像高速ツール

料金 (公式、1Mトークンあたり)

入力
$0.20/M
出力
$0.50/M

仕様

コンテキストウィンドウ2000K トークン 入力モダリティ画像 ストリーミングはい APIOpenAI互換

Grok 4 Fastの使い方

OpenAIの直接代替。base_urlとモデルのみ変更。

# Python - pip install openai
from openai import OpenAI

client = OpenAI(
    base_url="https://meshtok.com/v1",
    api_key="sk-your-MeshTok-key",
)

resp = client.chat.completions.create(
    model="x-ai/grok-4-fast",
    messages=[{"role":"user","content":"Hello!"}],
)
print(resp.choices[0].message.content)
# cURL
curl https://meshtok.com/v1/chat/completions \
  -H "Authorization: Bearer sk-your-MeshTok-key" \
  -H "Content-Type: application/json" \
  -d '{"model":"x-ai/grok-4-fast","messages":[{"role":"user","content":"Hello!"}]}'

関連モデル

検討できる他のモデル。