GPT-5.4API
OpenAI GPT-5.4 — strong general reasoning, 1M context.
入力料金
$1.00
per 1M tokens
出力料金
$6.00
per 1M tokens
プロンプトキャッシング
安定したプレフィックスに cache_control を渡せば、キャッシュヒットは入力料金のごく一部で課金されます。キャッシュ書き込みは通常の入力レート。
入力 × 0.2 から自動算出
仕様
- モデル ID
gpt-5-4- エンドポイント
POST /v1/chat/completions- カテゴリー
- Text
- プロバイダー
- OpenAI
- 機能
- functionstreamingthinkinglong-context
ドロップインの OpenAI 互換性
既存の OpenAI SDK を api.kunavo.com/v1 に向け、モデル ID を入れ替えるだけ。ストリーミング変更も SDK 変更も不要です。
ドキュメントを見るGPT API pricing guide試してみる
/app/keys から KUNAVO_API_KEY を設定し、以下のスニペットを実行してください。
curl https://api.kunavo.com/v1/chat/completions \
-H "Authorization: Bearer $KUNAVO_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-5-4",
"messages": [
{"role": "user", "content": "Hello, GPT-5.4"}
],
"stream": false
}'FAQ
How much does GPT-5.4 cost?
On Kunavo, GPT-5.4 is $1.00 per 1M input tokens and $6.00 per 1M output tokens — about 60% under OpenAI's official price. Failed requests are never billed, and it's pay-as-you-go — you only pay for successful calls.
Can I call GPT-5.4 with the OpenAI SDK?
Yes. Set base_url to https://api.kunavo.com/v1, pass your Kunavo key, and set model to "gpt-5-4". Requests and responses are OpenAI-compatible.
What endpoint does GPT-5.4 use?
GPT-5.4 is called via POST /v1/chat/completions on Kunavo's OpenAI-compatible API.
What is GPT-5.4 good for?
GPT-5.4 is a text model from OpenAI, with support for function, streaming, thinking, long-context.