
gpt-5.5
Cheaper. More stable. One-stop API aggregation.
GPT-5.5 is the general OpenAI flagship for everyday production traffic: chat, summarization, extraction, and multi-step agents.
LumeAPI exposes it at half official list price ($2.50 / $15.00 per 1M in/out).
Wire it exactly like OpenAI Chat Completions — same messages schema, streaming, and tool calls — with only the base URL and API key changed to LumeAPI.
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.5",
"messages": [{"role":"user","content":"Hello"}]
}'