GPT-5.6 Pricing Explained: Which Model Delivers the Best Value?
Understand GPT-5.6 Sol, Terra, and Luna API pricing with worked examples, hidden cost drivers, routing strategies, and cost-per-result calculations.

GPT‑5.6 pricing looks simple: three tiers, two token rates each. Real cost becomes complicated as soon as a model retries, calls tools, produces an unnecessarily long answer, or sends a reviewer back to the source.
OpenAI’s July 9, 2026 GPT‑5.6 announcement lists these API prices:
| Tier | Input per 1M tokens | Output per 1M tokens | |---|---:|---:| | Luna | $1.00 | $6.00 | | Terra | $2.50 | $15.00 | | Sol | $5.00 | $30.00 |
These confirmed figures are API token rates as of July 28. They should not be confused with ChatGPT subscription prices. Check current documentation for caching, batch use, tools, fine-tuning, regional terms, rate limits, and any later changes.
The first lesson: output is expensive
Within each tier, output tokens cost six times input tokens. A prompt-optimization project that saves 1,000 input tokens is not equivalent to an interface that prevents 1,000 useless output tokens.
Ask for the format you need:
- a fixed schema instead of an essay;
- a 100-word answer instead of “be comprehensive”;
- a patch and short summary instead of repeating every file;
- source IDs rather than long source quotations;
- one recommended plan plus risks instead of ten generic options.
Do not cut necessary context to save pennies and then pay for a failure. Optimize waste, not information.
Three worked examples
Small support draft
Input: 2,000 tokens
Output: 300 tokens
- Luna: $0.002 + $0.0018 = $0.0038
- Terra: $0.005 + $0.0045 = $0.0095
- Sol: $0.010 + $0.009 = $0.019
At one request, all look cheap. At ten million requests, the difference between Luna and Sol is $152,000 before other charges.
Long document review
Input: 100,000 tokens
Output: 5,000 tokens
- Luna: $0.10 + $0.03 = $0.13
- Terra: $0.25 + $0.075 = $0.325
- Sol: $0.50 + $0.15 = $0.65
If Sol saves a professional even five minutes, the premium may be trivial. If all three extract the same fields accurately, Luna wins.
Agentic coding session
Assume all calls together use 400,000 input tokens and 40,000 output tokens:
- Luna: $0.40 + $0.24 = $0.64
- Terra: $1.00 + $0.60 = $1.60
- Sol: $2.00 + $1.20 = $3.20
The model charge may still be small relative to engineer time, but tool loops, retries, and scale can change the total. Track the entire session.
The metric that matters: cost per accepted result
Suppose Luna costs $0.04 per attempt and succeeds 70% of the time. Terra costs $0.10 and succeeds 92%. Sol costs $0.20 and succeeds 96%.
Ignoring retries and review, model cost per successful first-pass result is approximately:
- Luna: $0.057
- Terra: $0.109
- Sol: $0.208
But if each failed Luna answer requires five minutes of a $60/hour reviewer, its apparent advantage disappears.
Use:
Total model charges + tool charges + infrastructure + review labor + failure impact, divided by accepted results.
Assign realistic labor and incident costs. Do not use token price as a substitute for accounting.
Hidden cost driver 1: retries
Retries multiply both tokens and latency. Record why they happen:
- invalid format;
- missing context;
- tool failure;
- factual error;
- vague prompt;
- model capability limit;
- user preference.
Fix deterministic problems in code. Escalate capability problems. Do not blindly ask the same tier to “try again” five times.
Hidden cost driver 2: context accumulation
Long conversations repeatedly send old material. Agent traces, tool outputs, duplicated documents, and verbose system instructions can become the largest input cost.
Use:
- relevant retrieval;
- compact state representations;
- deduplicated context;
- structured tool output;
- conversation summarization with verification;
- separate sessions for unrelated jobs.
Never remove security instructions or critical facts merely to reduce context.
Hidden cost driver 3: verbose output
Models often answer at the maximum implied scope. Specify audience, decision, length, and format. Stop streaming when the product already has what it needs where the API allows safe control.
In creative work, generate a few intentional variants rather than 50 near-duplicates. A visual storytelling team using Elser AI can keep approved character and scene references, reducing repeated exploration and downstream correction.
Hidden cost driver 4: human review
Review is not overhead to hide; it is part of the system.
Measure:
- minutes to verify facts;
- minutes to inspect code;
- rewrite percentage;
- escalation rate;
- expert qualifications required;
- severe errors found.
A higher tier can be cheaper if it lowers qualified review. It can also create false confidence, so sample accepted outputs continuously.
Hidden cost driver 5: failure impact
An inaccurate internal tag and an inaccurate medical instruction do not have the same cost. Price the consequence category, not only the request.
High-impact work needs expert oversight and controlled tools regardless of tier. OpenAI’s GPT‑5.6 system card is useful safety evidence, but your deployment must be assessed in context.
Which tier delivers the best value?
Luna wins when
The task is high-volume, bounded, latency-sensitive, reversible, and machine-checkable. Extraction, classification, formatting, and simple transformations are strong candidates.
Terra wins when
The workload mixes drafting, analysis, support, normal coding, and moderate tool use. Terra can simplify operations as a broad default while maintaining lower cost than Sol.
Sol wins when
The task is difficult or high-value, and the capability premium reduces failures, saves expert time, or unlocks work other tiers cannot complete.
There is no universal value champion. The same company can have all three winners.
A sample monthly routing model
Imagine 100,000 requests averaging 8,000 input and 1,000 output tokens. A router sends:
- 70% to Luna;
- 25% to Terra;
- 5% to Sol.
Approximate per-request token costs:
- Luna: $0.008 + $0.006 = $0.014
- Terra: $0.020 + $0.015 = $0.035
- Sol: $0.040 + $0.030 = $0.070
Monthly blended model cost:
- Luna: 70,000 × $0.014 = $980
- Terra: 25,000 × $0.035 = $875
- Sol: 5,000 × $0.070 = $350
- Total: $2,205
All-Sol would be $7,000 under the same simplified assumptions. All-Luna would be $1,400 but may create unacceptable failures. Routing buys capability where needed.
Budget controls worth implementing
- per-user and per-workflow token limits;
- maximum output length;
- task-specific tier allowlists;
- alerting on retry spikes;
- model and prompt version logs;
- cost dashboards by accepted outcome;
- tool-call caps;
- approval for unusual Sol use;
- automatic fallback during errors;
- monthly re-evaluation.
Do not make cost visibility punitive. If users hide difficult tasks to avoid a premium tier, quality suffers. Make escalation intentional and explainable.
FAQ
Forecast uncertainty, not just the average
A responsible budget has at least three cases:
- expected: normal traffic, output length, and escalation;
- high: launch traffic, longer context, or a temporary quality regression;
- stress: retry loop, agent bug, or accidental premium routing.
Set alerts below the stress case so someone can act before the full monthly budget disappears. Limit steps and output tokens at the application level where appropriate. Track costs by customer, feature, environment, and prompt version; a blended account total hides the source of growth.
Also separate experiments from production. Evaluation traffic can be substantial, but cutting it to make the model line look cheaper creates a false economy. Give testing its own budget and label.
Price changes require a repeatable model
Store assumptions in a small calculator rather than a presentation screenshot. Inputs should include traffic, average tokens, cache hit rate where applicable, retries, escalation share, tool charges, human review minutes, and incident estimates.
When OpenAI updates a price or your workload changes, replace one input and rerun the scenarios. Record the official price-page date. This prevents an SEO article, old invoice, or colleague’s memory from becoming a procurement source months later.
What is the cheapest GPT-5.6 model?
Luna has the lowest official API token rates: $1 input and $6 output per million tokens.
Is Terra exactly half the price of Sol?
At the listed input and output token rates, yes. Total workload cost may not be half because usage, retries, and tools can differ.
Are ChatGPT subscriptions included?
No. The figures in this article are API prices. Check current ChatGPT plan pages separately.
How can I estimate tokens?
Use provider-supported usage reporting or a compatible tokenizer for estimates, then replace estimates with actual API usage logs during a pilot.
Should I always start with Luna?
Start with Luna when the task is bounded and validated. For nuanced general work, Terra may reduce total cost. For hard or consequential work, test Sol and require review.
Conclusion
GPT‑5.6’s cheapest token belongs to Luna, but the best value belongs to the tier that produces an accepted result with the least total cost.
Control output length, trim irrelevant context, investigate retries, count review labor, and price failure. Route routine work to Luna, the broad middle to Terra, and the difficult tail to Sol.
When a pricing spreadsheet includes only input and output tokens, it is unfinished. Add the people, tools, retries, and consequences—then the right model usually becomes much easier to see.
































































