GPT-5.5
Provider list prices: no platform markup, pay-as-you-go. These are official list prices. Logged-in customers may see effective prices including workspace discounts on /console/pricing. Effective input at a 70% cache-hit rate:$1.85/M. Automatic prefix caching once a prompt passes the minimum length, with no code changes; cached reads are discounted (up to 90% on current models) and there is no write fee. Described as a new class of intelligence for coding and professional work; 1.05M context / 128k max output; prompts over 272k input tokens billed at 2x input / 1.5x output.
Use GPT-5.5 in 30 seconds
OpenAI-compatible: swap the base_url, keep your SDK. POST /v1/chat/completions
from openai import OpenAI
client = OpenAI(
base_url="https://synthorai.io/v1",
api_key="sk-syn-...",
)
resp = client.chat.completions.create(
model="gpt-5.5",
messages=[{"role": "user", "content": "Summarize this diff"}],
reasoning_effort="medium",
)
print(resp.choices[0].message.content)import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://synthorai.io/v1",
apiKey: "sk-syn-...",
});
const resp = await client.chat.completions.create({
model: "gpt-5.5",
messages: [{ role: "user", content: "Summarize this diff" }],
reasoning_effort: "medium",
});
console.log(resp.choices[0].message.content);curl https://synthorai.io/v1/chat/completions \
-H "Authorization: Bearer sk-syn-..." \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-5.5",
"messages": [{"role": "user", "content": "Hello"}],
"reasoning_effort": "medium"
}'package main
import (
"context"
"fmt"
"github.com/openai/openai-go/v3"
"github.com/openai/openai-go/v3/option"
)
func main() {
client := openai.NewClient(
option.WithBaseURL("https://synthorai.io/v1"),
option.WithAPIKey("sk-syn-..."),
)
resp, _ := client.Chat.Completions.New(context.TODO(), openai.ChatCompletionNewParams{
Model: "gpt-5.5",
Messages: []openai.ChatCompletionMessageParamUnion{
openai.UserMessage("Summarize this diff"),
},
ReasoningEffort: openai.ReasoningEffortMedium,
})
fmt.Println(resp.Choices[0].Message.Content)
}import com.openai.client.OpenAIClient;
import com.openai.client.okhttp.OpenAIOkHttpClient;
import com.openai.models.chat.completions.*;
import com.openai.models.ReasoningEffort;
OpenAIClient client = OpenAIOkHttpClient.builder()
.baseUrl("https://synthorai.io/v1")
.apiKey("sk-syn-...")
.build();
ChatCompletion resp = client.chat().completions().create(
ChatCompletionCreateParams.builder()
.model("gpt-5.5")
.addUserMessage("Summarize this diff")
.reasoningEffort(ReasoningEffort.MEDIUM)
.build());
System.out.println(resp.choices().get(0).message().content().orElse(""));About GPT-5.5
GPT-5.5 is OpenAI's newest frontier flagship, introduced as "a new class of intelligence for coding and professional work" and sitting above GPT-5.4 in the lineup.
- It pairs a 1,050,000-token context window (vendor spec) and 128K max output with image input, reasoning-effort control from none through xhigh, streaming, structured outputs, and OpenAI's full hosted tool suite, with a December 2025 knowledge cutoff.
- It is the family's default model for the hardest professional tasks.
- Synthorai serves GPT-5.5 natively on its OpenAI-compatible API.
Specs & limits
| Max output (vendor spec) | 128,000 |
| Modalities | text + image → text |
| Features | tools · parallel_tool_calls · structured_output · streaming · vision · batch · reasoning · realtime · computer_use · caching |
| Notable | Described as a new class of intelligence for coding and professional work; 1.05M context / 128k max output; prompts over 272k input tokens billed at 2x input / 1.5x output. |
| Prompt caching | automatic · min 1,024-token prefix · TTL 5–10m, up to 1h |
FAQ
Is the GPT-5.5 API free to try?
Yes: new accounts get 10 trial calls and up to $1 in free credit, no card required. At $5/M input tokens, that credit alone covers roughly 24 requests of ~8K tokens against GPT-5.5.
What is GPT-5.5 best at?
New class of intelligence for professional work, plus 1,050,000-token context, 128K output and reasoning-effort control from none through xhigh. See the About section for the full picture from the vendor's own release notes.
How much does GPT-5.5 cost?
GPT-5.5 costs $5 per million input tokens and $30 per million output tokens on Synthorai. That is the provider's list price, with no platform markup. Cached input tokens bill at $0.5/M.
Does GPT-5.5 support prompt caching?
Yes, automatically: OpenAI-served prompts cache with no code changes. Cached input tokens bill at $0.5/M vs $5/M uncached; prompts need a 1,024-token stable prefix to cache (TTL 5–10m, up to 1h). Prompt caching guide →
How do I get access to GPT-5.5?
Point your existing OpenAI SDK at base_url="https://synthorai.io/v1", set model="gpt-5.5", and you're done. One API key covers every model on the gateway.
What is GPT-5.5's knowledge cutoff?
GPT-5.5's knowledge cutoff is 2025-12, per the vendor's official documentation (as of 2026-07-09).