OpenAI
GPT-5.6 Sol
OpenAI's flagship GPT-5.6 reasoning model for complex professional work, coding, and agentic workflows, with a 1.05M-token context window and text and image input
Context Length1,050,000 tokens
Max Input922K tokens
Max Output128K tokens
Pricing & Specs
π° Pricing
Input$5 / M tokens
Output$30 / M tokens
Cache Write$6.25 / M tokens
Cache Hit$0.50 / M tokens
βοΈ Specs
Context Length1,050,000 tokens
Max Input922K tokens
Max Output128K tokens
PositioningFlagship GPT-5.6 model for complex professional work; the gpt-5.6 alias routes to this model
API AvailabilitySupports the Responses API, Chat Completions API, and Batch API
MultimodalSupports text and image input, text output
Reasoning EffortSupports none, low, medium (default), high, xhigh, and max
Caching SupportSupports cache reads and writes; cache writes cost 1.25x the uncached input rate
Short-context Pricing (β€272K)Input $5; cached input $0.50; cache write $6.25; output $30 / M tokens
Long-context Pricing (>272K)Input $10; cached input $1; cache write $12.50; output $45 / M tokens for the full request
Snapshotgpt-5.6-sol
Knowledge CutoffFebruary 16, 2026
API Examples
Python
from openai import OpenAI
client = OpenAI(
base_url="https://api.xairouter.com/v1",
api_key="your-api-key"
)
response = client.chat.completions.create(
model="gpt-5.6-sol",
messages=[
{"role": "user", "content": "Hello!"}
]
)
print(response.choices[0].message.content)cURL
curl https://api.xairouter.com/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"model": "gpt-5.6-sol",
"messages": [
{"role": "user", "content": "Hello!"}
]
}'