OpenAIgpt-5.5
GPT-5.5
A new class of intelligence for coding and professional work.
GPT-5.5 is OpenAI's flagship for demanding coding and professional tasks, with reasoning and tool use built in and a context window past a million tokens.
CodingProfessional workReasoning
Specs
Context window1.1M tokens
Max output128K tokens
InterfaceOpenAI-style Chat Completions · Anthropic-style Messages
Price / 1M$4.00 / $24.00was $5 / $30
Capabilities
- ReasoningSupported
- VisionSupported
- Tool callingSupported
- StreamingSupported
- JSON outputSupported
Why teams pick it
- Top-tier coding and professional problem solving
- Reasoning and tool use built in
- Over 1M tokens of context
Call GPT-5.5
GPT-5.5 answers on either API below — pick the one your code already speaks and just swap in your Inferray key.
/v1/chat/completions · OpenAI-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.5",
"messages": [{"role": "user", "content": "ship it"}]
}'/v1/messages · Anthropic-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.5",
"max_tokens": 1024,
"messages": [{"role": "user", "content": "ship it"}]
}'