OpenAI GPT-5.4 nano — the fastest, lowest-cost GPT-5.4 tier for simple, high-throughput tasks.

Sampling temperature. Lower is more deterministic.
USD 見積 $0.001-$0.002:最大チャージパックは $1 = 2,000 クレジットで換算。スターターパックは $1 = 1,000 クレジットで換算。

履歴
このブラウザ内にローカル保存
0 件実行中 · 0 件完了
入力
≈ $0.0001-$0.0003
出力
≈ $0.0009-$0.0018
キャッシュ読み取り
≈ $0.000025-$0.00005
コンテキスト
最大出力
API 説明
標準 REST API からこのモデルを呼び出せます。API Key で認証した後、下のエンドポイントを選ぶとパラメータと例を確認できます。
認証
すべてのリクエストで Authorization ヘッダーに Bearer トークンを含める必要があります。コンソールで API Key を作成してください。
Authorization: Bearer YOUR_API_KEYhttps://apiany.ai/v1/chat/completionsリクエストパラメータ
| パラメータ | タイプ | 必須 | 説明 |
|---|---|---|---|
model | 文字列 | 必須 | 呼び出すモデル識別子。このモデルの ID を使用します。 |
messages | 配列 | 必須 | OpenAI チャット形式のメッセージ履歴(role + content)。 |
stream | ブール値 | 任意 | true の場合、レスポンスは SSE ストリームとして返されます。 |
リクエスト例
curl "https://apiany.ai/v1/chat/completions" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-5.4-nano",
"messages": [
{
"role": "user",
"content": "Summarize the following text in three concise bullet points:"
}
],
"temperature": 0.7,
"max_tokens": 1024
}'レスポンス例
{
"id": "chatcmpl-abc123",
"object": "chat.completion",
"model": "gpt-5.4-nano",
"choices": [
{
"index": 0,
"message": {
"role": "assistant",
"content": "Hello! How can I help?"
},
"finish_reason": "stop"
}
],
"usage": {
"prompt_tokens": 12,
"completion_tokens": 18,
"total_tokens": 30
}
}