OpenAIgpt-5.6-terra
GPT-5.6 Terra
Balanced GPT-5.6 intelligence for everyday workloads.
GPT-5.6 Terra balances intelligence against cost, making it an easy default for everyday production traffic that still needs real reasoning.
- Everyday workloads
- Balanced cost
- Production apps
Model details
- Context window
- 1.1M tokens
- Max output
- 128K tokens
- Input
- Text, images
- Output
- Text
- Capabilities
- Reasoning, Vision, Tool calling, Streaming, JSON output
- Interfaces
- OpenAI-style Chat Completions, Anthropic-style Messages, OpenAI-style Responses
Pricing
Per 1M tokens. The Inferray price is what you are charged — no gateway fee is added on top of it.
| Metric | List price | You pay |
|---|---|---|
| Input | $2 | $1.60 |
| Cached input | $0.20 | $0.16 |
| Output | $12 | $9.60 |
Why teams pick it
- Balances quality and cost for everyday traffic
- Reasoning, vision, and tool calling included
- Over 1M tokens of context
Call GPT-5.6 Terra
GPT-5.6 Terra answers on any of the APIs below — pick the one your code already speaks and just swap in your Inferray key.
/v1/chat/completionsOpenAI-style Chat Completions · openai SDK or plain HTTP
curl https://api.inferray.com/v1/chat/completions \
-H "Authorization: Bearer inferray_..." \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-5.6-terra",
"messages": [{"role": "user", "content": "ship it"}]
}'/v1/messagesAnthropic-style Messages · @anthropic-ai/sdk SDK or plain HTTP
curl https://api.inferray.com/v1/messages \
-H "Authorization: Bearer inferray_..." \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-5.6-terra",
"max_tokens": 1024,
"messages": [{"role": "user", "content": "ship it"}]
}'/v1/responsesOpenAI-style Responses · openai SDK or plain HTTP
curl https://api.inferray.com/v1/responses \
-H "Authorization: Bearer inferray_..." \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-5.6-terra",
"input": "ship it"
}'