DevTk.AI
GPT-5.5CodexOpenAIDeepSeek V4API Pricing

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.

DevTk.AI 2026-04-28 Updated 2026-08-17 4 min read

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

ModelAPI model IDInputCached inputOutputContextMax outputBest use
GPT-5.5gpt-5.5$5.00$0.50$30.001.05M128KHard coding, review, architecture
GPT-5.5 Progpt-5.5-pro$30.00-$180.001.05M128KHighest-precision professional tasks
GPT-5.3-Codexgpt-5.3-codex$1.75$0.175$14.00400K128KLong-horizon agentic coding in Codex-like tools
GPT-5.4gpt-5.4$2.50$0.25$15.001M128KCheaper 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.

ModelCache-miss inputCached inputOutputContextPractical role
DeepSeek V4 Flash$0.22-$0.44$0.007-$0.014$0.66-$1.321MTime-based off-peak to peak pricing
DeepSeek V4 Pro$0.66-$1.32$0.022-$0.044$1.98-$3.961MStronger time-based DeepSeek route
GPT-5.3-Codex$1.75$0.175$14.00400KOpenAI coding-specialist escalation
GPT-5.5$5.00$0.50$30.001.05MFrontier 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.

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

WorkloadDefault pickEscalate when
Repeated repo explorationDeepSeek V4 FlashNeeds final high-confidence review
Test fixing / lint loopsDeepSeek V4 FlashModel gets stuck after 2-3 attempts
Large architectural refactorGPT-5.3-Codex or GPT-5.5Code quality or safety is critical
Final PR reviewGPT-5.5Use GPT-5.5 Pro only for highest-stakes work
Cost-sensitive Chinese agent workflowsDeepSeek V4 FlashNeed 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