The flagship tier of OpenAI's GPT-5.6 family (GA July 2026). Sol delivers the strongest reasoning, coding, and multimodal performance of the generation with a 1M token context window, 128K max output tokens, and cached inputs at a 90% discount.
Test this model instantly in the Console Playground โ no code required
Copy usage instructions for Claude, ChatGPT, or other AI
| Token Type | Credits | USD Equivalent |
|---|---|---|
| Input Tokens | 9,290 | $6.19 |
| Output Tokens | 55,740 | $37.16 |
| Cached Tokens | 929 | $0.62 |
* 1,500 credits โ $1 (actual charges may vary based on usage)
curl -X POST "https://api.core.today/llm/openai/v1/chat/completions" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer cdt_your_api_key" \
-d '{
"model": "gpt-5.6-sol",
"messages": [
{
"role": "system",
"content": "You are a senior software engineer. Think step by step."
},
{
"role": "user",
"content": "Design a migration plan from a monolithic Express API to modular services, then generate the first service's code with tests."
}
],
"reasoning_effort": "high",
"max_completion_tokens": 8000
}'| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
messages | array | Yes | - | Array of message objects with role and content |
model | string | Yes | gpt-5.6-sol | Model identifier |
max_completion_tokens | integer | No | 4096 | Maximum tokens in response (up to 128000). Note: use max_completion_tokens, not max_tokens |
reasoning_effort | string | No | medium | Reasoning effort level: none, low, medium, high, or xhigh nonelowmediumhighxhigh |
temperature | float | No | 1.0 | Sampling temperature (0-2) |
stream | boolean | No | false | Enable Server-Sent Events streaming |
Multi-step code reasoning with the flagship GPT-5.6 tier
curl -X POST "https://api.core.today/llm/openai/v1/chat/completions" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer cdt_your_api_key" \
-d '{
"model": "gpt-5.6-sol",
"messages": [
{
"role": "system",
"content": "You are a senior software engineer. Think step by step."
},
{
"role": "user",
"content": "Design a migration plan from a monolithic Express API to modular services, then generate the first service's code with tests."
}
],
"reasoning_effort": "high",
"max_completion_tokens": 8000
}'Reuse a large system prompt with 90% cached input discount
curl -X POST "https://api.core.today/llm/openai/v1/chat/completions" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer cdt_your_api_key" \
-d '{
"model": "gpt-5.6-sol",
"messages": [
{
"role": "system",
"content": "<large repeated system prompt or codebase context>"
},
{
"role": "user",
"content": "Summarize the open TODOs and rank them by risk."
}
],
"temperature": 0.3,
"max_completion_tokens": 4000
}'POST /llm/openai/v1/chat/completions