Available now
OpenAI
gpt-5.4-mini
GPT-5.4 mini brings the core capabilities of GPT-5.4 to a faster, more efficient model optimized for high-throughput workloads. It supports text and image inputs with strong performance across reasoning, coding,...
TextToolsFilesVision400K
Input$0.08/ 1M
Output$0.45/ 1M
Context400K
Endpointsopenai, openai-response, openai-response-compact, anthropic
§ 01
Pricing
| Input price | $0.08 / 1M tokens |
| Output price | $0.45 / 1M tokens |
| Context window | 400K tokens |
| Compatible endpoints | openai, openai-response, openai-response-compact, anthropic |
| Vendor | OpenAI |
§ 02
Call gpt-5.4-mini from your code
Point any OpenAI-compatible SDK at UnoRouter and request the model by name. Replace YOUR_API_KEY with a real key from your dashboard.
bash
curl https://api.unorouter.ai/v1/chat/completions \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-5.4-mini",
"messages": [{"role": "user", "content": "Hello!"}]
}'§ 03
Frequently asked questions
How much does gpt-5.4-mini cost per 1M tokens?
Input is priced at $0.08 per 1M tokens, output at $0.45 per 1M tokens. Billing is per token, no rounding to batch sizes.
How do I access gpt-5.4-mini via API?
Send requests to the UnoRouter /v1/chat/completions endpoint with model=gpt-5.4-mini. Any OpenAI-compatible client library works. Authentication uses a standard Bearer token.
What is the context window of gpt-5.4-mini?
gpt-5.4-mini supports a context window of 400K tokens, shared between your prompt and the model's response.
§ 04