GPT-5.5 in Codex Pricing (Superseded by GPT-5.6)
Historical GPT-5.5 Codex and API pricing, now superseded by GPT-5.6 Sol, Terra, and Luna. Compare the old model IDs and DeepSeek routing costs.
July 2026 update: GPT-5.5 is no longer the current frontier. Start with the GPT-5.6 API pricing guide or the GPT-5.6 Codex limits and multi-agent guide. The remaining tables preserve GPT-5.5-era pricing for historical comparison.
OpenAI exposed GPT-5.5 as the frontier model for complex coding and professional work in April 2026, and made it available inside Codex. Its API model ID was gpt-5.5. For the dedicated Codex API model, the public model ID was gpt-5.3-codex, not gpt-5.5-codex.
Official references: OpenAI GPT-5.5 model docs, GPT-5.5 Pro docs, GPT-5.3-Codex docs, and DeepSeek V4 pricing.
OpenAI Coding Models at the Time
| Model | API model ID | Input | Cached input | Output | Context | Max output | Best use |
|---|---|---|---|---|---|---|---|
| GPT-5.5 | gpt-5.5 | $5.00 | $0.50 | $30.00 | 1.05M | 128K | Hard coding, review, architecture |
| GPT-5.5 Pro | gpt-5.5-pro | $30.00 | - | $180.00 | 1.05M | 128K | Highest-precision professional tasks |
| GPT-5.3-Codex | gpt-5.3-codex | $1.75 | $0.175 | $14.00 | 400K | 128K | Long-horizon agentic coding in Codex-like tools |
| GPT-5.4 | gpt-5.4 | $2.50 | $0.25 | $15.00 | 1M | 128K | Cheaper OpenAI professional work |
For GPT-5.5, OpenAI lists higher long-context pricing when prompts exceed 272K input tokens: $10/M input, $1/M cached input, and $45/M output for the full session.
How It Compares With DeepSeek V4
DeepSeek V4 Flash is the model to overweight when you care about traffic volume and cache-heavy agent loops.
| Model | Cache-miss input | Cached input | Output | Context | Practical role |
|---|---|---|---|---|---|
| DeepSeek V4 Flash | $0.22-$0.44 | $0.007-$0.014 | $0.66-$1.32 | 1M | Time-based off-peak to peak pricing |
| DeepSeek V4 Pro | $0.66-$1.32 | $0.022-$0.044 | $1.98-$3.96 | 1M | Stronger time-based DeepSeek route |
| GPT-5.3-Codex | $1.75 | $0.175 | $14.00 | 400K | OpenAI coding-specialist escalation |
| GPT-5.5 | $5.00 | $0.50 | $30.00 | 1.05M | Frontier escalation |
If a coding agent repeatedly sends the same repo context, DeepSeek’s cache-hit pricing changes the math. A 10M-token run with 90% cached input, 5% cache-miss input, and 5% output is roughly:
DeepSeek V4 Flash = $0.503 off-peak / $1.006 peak
GPT-5.3-Codex = 9M * $0.175 + 0.5M * $1.75 + 0.5M * $14 = $9.45
GPT-5.5 = 9M * $0.50 + 0.5M * $5.00 + 0.5M * $30 = $22.00
That is why real DeepSeek bills can still look low for cache-heavy work. In China pricing terms, the same DeepSeek V4 Flash shape is about ¥3.45 off-peak or ¥6.90 at peak, before tax or payment effects.
Recommended Routing Weights
For most developer-tool traffic, do not make Codex or GPT-5.5 the default route. Use DeepSeek for high-volume context-heavy work, then escalate selectively.
routing_config = {
"deepseek": {"model": "deepseek-v4-flash", "weight": 45},
"gemini_flash": {"model": "gemini-2.5-flash", "weight": 25},
"openai_codex": {"model": "gpt-5.3-codex", "weight": 15},
"openai_frontier":{"model": "gpt-5.5", "weight": 10},
"anthropic": {"model": "claude-sonnet-4-6", "weight": 5},
}
Use gpt-5.5 when the task needs frontier reasoning, difficult multi-file design, security review, or high-stakes correctness. Use gpt-5.3-codex when you specifically want OpenAI’s Codex-optimized API behavior. Use DeepSeek V4 Flash for cheap iteration, repo reading, lint/test-fix loops, and repeated context.
When To Choose Each Model
| Workload | Default pick | Escalate when |
|---|---|---|
| Repeated repo exploration | DeepSeek V4 Flash | Needs final high-confidence review |
| Test fixing / lint loops | DeepSeek V4 Flash | Model gets stuck after 2-3 attempts |
| Large architectural refactor | GPT-5.3-Codex or GPT-5.5 | Code quality or safety is critical |
| Final PR review | GPT-5.5 | Use GPT-5.5 Pro only for highest-stakes work |
| Cost-sensitive Chinese agent workflows | DeepSeek V4 Flash | Need stronger cross-provider validation |
Bottom Line
DeepSeek can still carry a higher routing weight for cache-heavy traffic, especially off-peak, but the August price increase makes timing part of the routing decision. GPT-5.5 is the historical premium Codex/OpenAI escalation model, not the default high-volume route.
Use the AI Model Pricing Calculator for exact costs, and compare with the DeepSeek V4 API pricing guide if your workload has repeated context.
Related Posts
Is DeepSeek Still Good Value After the August 2026 Price Increase?
2026-08-17
DeepSeek V4 Agent Setup: OpenCode, Codex, Copilot CLI, Cline, Kilo
2026-04-28
GLM-5.3 vs DeepSeek V4 vs Kimi K3: API Availability, Price, and Agent Fit
2026-08-17