
gpt-5.4-mini
Cheaper. More stable. One-stop API aggregation.
GPT-5.4 mini is optimized for high-volume, latency-sensitive text tasks where cost per request dominates.
It remains OpenAI-compatible via `/v1/chat/completions`.
LumeAPI list pricing is $0.375 / $2.25 per 1M tokens (in/out), half of official.
Ideal for classification, short replies, and fan-out agent steps.
POST/v1/chat/completions
Base URL: https://api.lumeapi.site/v1
Auth: Authorization: Bearer <your-lumeapi-key>
Open the integration notes for this model, or the modality guide for request fields and polling.
curl https://api.lumeapi.site/v1/chat/completions \
-H "Authorization: Bearer $LUMEAPI_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-5.4-mini",
"messages": [{"role":"user","content":"Hello"}]
}'