
gpt-5.6-terra
Cheaper. More stable. One-stop API aggregation.
GPT-5.6 Terra is the cost/performance sibling of Sol — strong general intelligence with a lower token rate.
It is a practical default for product chat, RAG answers, and Cursor-style coding assistants.
Authenticate with your LumeAPI key against `https://api.lumeapi.site/v1` and set `model` to `gpt-5.6-terra`.
LumeAPI meters USD wallet quota using the published Terra rates.
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.6-terra",
"messages": [{"role":"user","content":"Hello"}]
}'