---
title: "GPT-5.5 — API access"
description: "GPT-5.5 API pricing: official $5/$30 per 1M tokens, from $2/$12 with the apiToken.sale discount. Previous-generation flagship on the OpenAI-compatible endpoint."
url: "https://apitoken.sale/models/gpt-5-5"
language: "en"
---
# GPT-5.5

GPT-5.5 is the previous-generation flagship — pinned for workloads evaluated against it, at the same list price as GPT-5.6 Sol.

- **Model ID:** `gpt-5.5`
- **Tier:** Flagship
- **Context window:** 272K tokens
- **Max output:** 32K tokens
- **Official price (per 1M):** $5 input / $30 output
- **Your price (per 1M):** input $2 → $1.5, output $12 → $9 (60%–70% off)
- **Base URL:** `https://openai.api.apitoken.sale/v1` · **Endpoints:** `POST /v1/responses`, `POST /v1/chat/completions` (Authorization: Bearer)

## Best for

- Workloads pinned to GPT-5.5 for reproducibility.
- Agentic coding and multi-step reasoning.
- Pipelines migrating gradually to the GPT-5.6 line.

## Notes

- Reasoning efforts none through xhigh; the max level is exclusive to the GPT-5.6 line.
- Same list price as gpt-5.6-sol — most new work should target the 5.6 line.
- Requests above 272K input tokens bill at OpenAI long-context rates: 2× input and 1.5× output on the whole request.

## Call it

```bash
curl https://openai.api.apitoken.sale/v1/responses \
  -H "Authorization: Bearer $APITOKEN_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model": "gpt-5.5", "input": "Reply with exactly: connected"}'
```

## FAQ

**How much does the GPT-5.5 API cost?**

Officially $5 per 1M input tokens and $30 per 1M output tokens — the same as GPT-5.6 Sol. With the apiToken.sale discount that starts at $2/$12 and reaches $1.50/$9.

**GPT-5.5 or GPT-5.6 Sol?**

They cost the same, so new projects should default to gpt-5.6-sol. Keep 5.5 when you have prompts or evals pinned to it.

**What is the model ID?**

gpt-5.5 — use it as-is on the OpenAI-compatible endpoint at https://openai.api.apitoken.sale/v1.

---
API reference: https://apitoken.sale/md/docs · All models: https://apitoken.sale/md/models
