Back to models
OpenAI

GPT-5.6 Terra

GPT-5.6 Terra - high-throughput frontier model optimized for scale and efficiency.

Quick Stats

Context

200K

Max Output

33K

Provider

OpenAI

Specs

1

Modalities

in textin imageout text

Specs & List Price (per 1M tokens)

Quality
Input $2.5Output $15Cache read $0.25Cache write $3.125

Recommended Plan

GPT-5.6 Terra Starter Plan

Pay-as-you-go after top-up; $1 free credit for new users.

Buy Plan

API Endpoint

Model IDopenai/gpt-5.6-terra

cURL

curl https://intertoken.ai/v1/chat/completions \
  -H "Authorization: Bearer $TOKENPORTAL_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "openai/gpt-5.6-terra",
    "messages": [{"role": "user", "content": "Hello!"}]
  }'

Python

from openai import OpenAI

client = OpenAI(
    base_url="https://intertoken.ai/v1",
    api_key="$TOKENPORTAL_API_KEY",
)

resp = client.chat.completions.create(
    model="openai/gpt-5.6-terra",
    messages=[{"role": "user", "content": "Hello!"}],
)
print(resp.choices[0].message.content)

Start using this model

Sign up free, get an API key, and make your first call in 30 seconds.