OpenAI's newest flagship model with a 1.05M token context window and 128K max output tokens. Supports cached inputs at 10ร discount and improved reasoning, coding, and multimodal performance over the GPT-5.4 series.
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 | 10,000 | $10.00 |
| Output Tokens | 60,000 | $60.00 |
| Cached Tokens | 1,000 | $1.00 |
* 1 credit โ $0.001 (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.5",
"messages": [
{
"role": "system",
"content": "You are a research assistant. Cite sources by ID."
},
{
"role": "user",
"content": "Given the attached corpus of internal docs, summarize the key risks discussed and propose mitigations grouped by severity."
}
],
"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.5 | 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 |
top_p | float | No | 1.0 | Nucleus sampling threshold (0-1) |
Process up to 1M tokens of context with GPT-5.5
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.5",
"messages": [
{
"role": "system",
"content": "You are a research assistant. Cite sources by ID."
},
{
"role": "user",
"content": "Given the attached corpus of internal docs, summarize the key risks discussed and propose mitigations grouped by severity."
}
],
"reasoning_effort": "high",
"max_completion_tokens": 8000
}'Reuse a large system prompt with 10ร cached input pricing
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.5",
"messages": [
{
"role": "system",
"content": "<large repeated system prompt or codebase context>"
},
{
"role": "user",
"content": "Refactor the auth middleware to use the new session API."
}
],
"temperature": 0.3,
"max_completion_tokens": 4000
}'POST /llm/openai/v1/chat/completions