GPT-5.6 pricing: what Sol, Terra, and Luna actually cost

The 30-second answer
At launch, GPT-5.6 Sol costs $5 per million input tokens and $30 per million output tokens. Terra costs $2.50 input and $15 output. Luna costs $1 input and $6 output. Choose on cost per successful task, not token price alone: Luna is the cheapest meter, Terra is the balanced default, and Sol is for work where quality, persistence, or avoided rework justifies the premium.
- Lowest API list price: GPT-5.6 Luna
- Balanced starting point: GPT-5.6 Terra
- Highest-capability tier: GPT-5.6 Sol
- Most important cost variable: output volume, followed by retries and repeated context
Public list price per million tokens
Official GPT-5.6 API prices
OpenAI launched GPT-5.6 as three durable capability tiers. The generation is shared, but the list price and intended workload differ. Output tokens cost six times the corresponding input rate across all three launch tiers.
| Model | Input / 1M tokens | Output / 1M tokens | Best starting point |
|---|---|---|---|
GPT-5.6 Sol Flagship tier | $5.00 | $30.00 | Difficult coding, agent work, high-cost failures, and maximum-quality professional tasks |
GPT-5.6 Terra Balanced tier | $2.50 | $15.00 | Daily analysis, writing, research, coding support, and balanced production workloads |
GPT-5.6 Luna Efficiency tier | $1.00 | $6.00 | Simple summaries, classification, routing, drafts, and high-volume low-risk tasks |
What people mean by “GPT-5.6 pricing”
A search for GPT-5.6 pricing can describe at least four different buying questions. A ChatGPT user may be asking which monthly plan includes a model. An API developer may want a per-token rate. A Codex user may be trying to understand a product rate card. A Kynvio user may want to know how the model fits a Kynvio plan and credit balance. Those systems are related by the underlying model family, but they are not interchangeable bills.
This guide uses OpenAI's published direct API rates as the numerical baseline because they provide a transparent input-and-output formula. It then explains how ChatGPT, Codex, and Kynvio differ. Keeping those categories separate prevents a common mistake: treating a monthly subscription as a bucket of API tokens, or presenting a third-party workspace credit as if it were an OpenAI dollar charge.
The useful unit is not always cost per token. For an automated workflow, the better business measure is often cost per accepted result. A model that produces a shorter correct answer on the first attempt can cost less overall than a cheaper model that needs more output, more retries, and more human correction. That distinction becomes important in coding agents, document review, research, and other multi-step tasks.
Prices and availability are time-sensitive. The tables on this page were checked on July 16, 2026, shortly after the GPT-5.6 general-availability announcement. Use the linked provider pages as the final source before committing budget. The calculations here are educational examples, not a quote from OpenAI and not a Kynvio invoice estimate.
GPT-5.6 Sol, Terra, and Luna API prices
OpenAI's launch material lists Sol at $5 input and $30 output per million tokens, Terra at $2.50 input and $15 output, and Luna at $1 input and $6 output. These are list prices for direct API metering. They do not include the value of engineering time, orchestration infrastructure, network services, evaluation, storage, or the people who review an answer before it reaches a customer.
The consistent six-to-one output premium matters. Teams often focus on uploading a large document, but a verbose reasoning trace, code patch, explanation, or agent transcript can become the more expensive side of the bill. Reducing unnecessary output, defining a concise response contract, and preventing repeated failed runs can have more impact than trimming a small instruction prompt.
The three tiers make model routing economically useful. Instead of selecting one model for everything, a system can direct simple classification and drafting to Luna, routine analysis to Terra, and escalate genuinely difficult or costly cases to Sol. Routing only works when quality checks are real; sending every task to the cheapest tier and silently accepting errors is not an optimization.
- Sol: highest direct token price and the strongest starting point when difficult failures are expensive.
- Terra: exactly half of Sol's launch input and output rates, positioned for balanced everyday work.
- Luna: one-fifth of Sol's launch rates, positioned for fast and economical high-volume tasks.
- All three: output tokens are priced at six times their matching input-token rate at launch.
How to calculate GPT-5.6 API cost
Direct API cost begins with two independent meters. Count uncached input tokens, divide by one million, and multiply by the model's input rate. Count output tokens, divide by one million, and multiply by the output rate. Add the two values. If caching is used, split the input into uncached writes, cached reads, and any ordinary input rather than applying one rate to the entire prompt.
For example, 10,000 input tokens and 2,000 output tokens on Sol cost $0.05 for input plus $0.06 for output, or $0.11 total. The same quantities cost $0.055 on Terra and $0.022 on Luna. The calculation is deterministic; the uncertain part is how many tokens a real workflow consumes and how many times it must run before the result is accepted.
Token estimates should include more than the user's visible message. System instructions, tool definitions, retrieved passages, file extracts, conversation history, and tool results may all enter the context. A long-running agent can repeatedly carry forward state. A product budget based only on the first prompt will therefore understate the real meter when the orchestration layer sends much more context.
Build a budget from logs, not intuition. Record input, cached input, output, tool calls, latency, retries, completion status, and reviewer acceptance for representative tasks. Once those distributions exist, calculate median and high-percentile cost per task. Averages alone can hide rare but expensive loops that matter at production volume.
What the worked cost examples do—and do not—prove
The everyday-answer example is deliberately small: 10,000 input tokens and 2,000 output tokens. It could represent a focused analysis with a controlled response length. At this size, all three tiers are inexpensive per run, so model quality and user experience may matter more than fractions of a cent. At large traffic volume, however, the same difference becomes material.
The document example uses 100,000 input tokens and 5,000 output tokens. It illustrates a report, contract set, transcript, or file bundle kept in active context. Sol costs $0.65, Terra $0.325, and Luna $0.13 under the simple uncached formula. If the same document prefix is reused many times, caching can change the input side substantially.
The large-agent example uses one million input tokens and 50,000 output tokens. The simple direct cost is $6.50 on Sol, $3.25 on Terra, and $1.30 on Luna. That is not a prediction for every coding agent. It is a transparent scale reference. Real agent runs can add repeated context, programmatic tool activity, parallel branches, failed attempts, and human review.
Do not convert these examples into a universal claim that one model is always cheaper. To compare cost per success, run the same representative tasks under a fixed acceptance rubric and enough repetitions to observe variance. Measure the rejected and retried runs too. Publishing only the best screenshot while ignoring failed attempts produces a misleading cost story.
Three reproducible GPT-5.6 cost examples
These worked examples turn per-million-token prices into task-sized estimates. They are not promises about how many tokens a specific job will use; they show how to perform the calculation before running a workload.
Everyday answer
A short prompt with a useful but controlled answer, similar to routine analysis, rewriting, or a focused code explanation.
- Input tokens
- 10,000
- Output tokens
- 2,000
Long document analysis
A document-heavy job that keeps a substantial report, policy, transcript, or group of files in the active context.
- Input tokens
- 100,000
- Output tokens
- 5,000
Large agent workflow
A large agent or coding workflow with extensive context and a relatively long final response. Real runs may add tool and retry costs.
- Input tokens
- 1,000,000
- Output tokens
- 50,000
How prompt caching changes GPT-5.6 cost
OpenAI's GPT-5.6 launch page says cache writes for GPT-5.6 and later models are billed at 1.25 times the uncached input rate, while cache reads continue to receive a 90% cached-input discount. It also describes explicit cache breakpoints and a minimum 30-minute cache life. The economic benefit therefore depends on a stable context prefix being reused within the applicable behavior and time window.
Caching can help when many requests share a large system prompt, tool schema, codebase snapshot, research corpus, policy set, or document bundle. The first write may cost more than ordinary input, but later eligible reads can be much cheaper. A one-off prompt with no reuse receives no read-side advantage, and frequently changing the beginning of the context can reduce the reusable portion.
Cache savings apply to input, not output. A workflow that generates long reports, verbose agent traces, or repeated explanations can remain output-dominated. Before investing in complicated cache logic, calculate whether repeated input is actually the largest part of the bill. Shorter response contracts and fewer retries may be the simpler optimization.
Operationally, track cache hits and misses alongside tokens. A spreadsheet that assumes a perfect hit rate will overstate savings. Use observed production behavior, include the higher write cost, and test how prompt versioning, tool changes, personalization, and conversation history affect the stable prefix.
Why cost per successful task matters more than token price
List price answers only one question: how much a measured token costs. Product economics ask a wider question: how much does it cost to produce a result that passes? The difference includes retries, fallback models, validation calls, human editing, delayed users, and failures that reach production. For important workflows, measure both token cost per attempt and total cost per accepted outcome.
Suppose Luna completes a simple classification accurately on the first attempt. Paying for Sol would add little value. Now suppose a difficult repository task requires three Luna attempts, a fallback, and thirty minutes of engineering review, while Sol completes it once. Sol's higher token price can be the cheaper business decision. The answer depends on observed completion rates, not the prestige of the model name.
Create an acceptance rubric before running the comparison. For code, require tests, security constraints, compatibility, and review. For research, require source support, claim coverage, and uncertainty labels. For writing, define factual accuracy, structure, voice, and editing time. A score invented after seeing the outputs will tend to confirm the preferred model.
Total cost also has a risk dimension. A low-cost draft used internally can tolerate review. A customer-facing policy, financial analysis, security change, or production migration may justify higher capability and stronger validation. Model routing should reflect the consequence of a wrong answer as well as the average token bill.
Which GPT-5.6 tier should you choose?
Luna is the natural first test for simple, repetitive, and low-risk work: labeling, routing, extraction with a narrow schema, brief summaries, headline variants, and early drafts. Its advantage is strongest when the acceptance rule is clear and volume is high. Keep a quality sample and escalate exceptions instead of assuming every lightweight output is correct.
Terra is the balanced starting point for general production work. It fits analysis, everyday coding support, research organization, drafting, and document tasks that need more judgment than a classifier but do not consistently require the flagship tier. Because its launch rates are half of Sol's, it is a useful control model in a routing evaluation.
Sol belongs on the hardest tasks and on tasks where failure is costly: complex coding, long-horizon agents, difficult professional analysis, sensitive review, and work that benefits from maximum persistence or polish. The justification should be fewer failed attempts, less correction, or a better accepted result—not simply choosing the most expensive option by default.
The practical policy is to start with the least expensive tier that reliably clears the task rubric, then escalate when confidence, complexity, or consequence requires it. Re-evaluate that routing as prompts, tools, and model behavior change. A decision that was efficient for one workload may not transfer to another.
ChatGPT, API, Codex, and Kynvio are different billing systems
ChatGPT pricing is subscription access, not a direct purchase of API tokens. A plan can include model availability, product features, and usage limits that change over time. If the question is whether a ChatGPT account can select GPT-5.6, consult the current ChatGPT help and pricing pages. Do not infer API credits from the monthly subscription fee.
Codex also needs its own reading. OpenAI publishes a Codex rate card and product guidance, but a Codex user's visible usage units and workflow can differ from a developer receiving a direct API invoice. File reading, cached context, code edits, tool execution, and retries can make a coding task more complex than one request-and-response calculation.
Kynvio is a separate multi-model product. Kynvio plan and credit rules cover access and usage inside Kynvio and should be read on the Kynvio pricing page. OpenAI's official API price table does not represent Kynvio plan pricing, and a Kynvio credit should not be presented as an OpenAI token price. This separation is essential for honest product communication.
When comparing options, first decide what you are buying. Choose direct API access when you are building and operating your own integration. Choose a first-party subscription when its product experience and included limits match the job. Choose a multi-model workspace when comparing models and keeping work in one workflow is more valuable than managing separate products. Then compare total workflow cost, not unlike billing units.

How to evaluate GPT-5.6 in Kynvio
Kynvio's role in this guide is practical model access and comparison. The public GPT-5.6 page explains the model family and hands a deliberate action into the private chat workspace. Inside the workspace, users can continue a real task and use Kynvio's current product controls. Public SEO pages explain and route; they do not spend credits or create private history on first load.
A useful evaluation starts with one real prompt and a visible success condition. Try the balanced tier, review the answer, then compare a cheaper or stronger tier when the result warrants it. Keep the files, tool settings, and requested output format consistent. Changing web access or attachments between runs makes the model comparison less meaningful.
For teams, save a small evaluation set based on recurring work: one code task, one document task, one research task, and one structured-output task. Record which tier passes, how much review it needs, and where it fails. That evidence is more actionable than adopting a general benchmark winner for every job.
Use the Kynvio pricing page for Kynvio's current plan and credit amounts. Use the OpenAI links on this page for direct OpenAI billing. Keeping both available lets readers make a commercial decision without implying that the two systems share the same unit or invoice.
Continue your GPT-5.6 evaluation in Kynvio
Continue from price research to model evaluation, plan comparison, or a real Kynvio workspace task without confusing public discovery pages with the private execution surface.
Verification checklist and final recommendation
Model pricing pages age quickly. Before publishing a budget or campaign, verify the model names, per-million-token rates, cache rules, product availability, and plan limits on the linked first-party pages. Record the access date in internal notes and update the visible page date only when the content actually changes.
Treat provider benchmarks as evidence about their stated test conditions, not a universal guarantee for your prompts. For an original comparison, publish your own task definition, run count, scoring rubric, failures, and calculation method. Readers should be able to reproduce the arithmetic and understand the limits of the conclusion.
The bottom line is simple: Luna has the lowest launch token price, Terra is the balanced default, and Sol is the premium tier for difficult work. The economically correct choice is the cheapest tier that reliably completes the actual task after retries, review, and risk are counted.
GPT-5.6 pricing FAQ
Short answers to the pricing questions that most often cause confusion between tokens, subscriptions, credits, and completed-task cost.
How much does GPT-5.6 cost?
OpenAI lists GPT-5.6 Sol at $5 per million input tokens and $30 per million output tokens; Terra at $2.50 input and $15 output; and Luna at $1 input and $6 output. Those are direct API list prices published at launch and should be rechecked before a purchasing decision.
Which GPT-5.6 model is cheapest?
Luna has the lowest public API token price. The cheapest token price does not guarantee the lowest cost per completed task, because output length, retries, tool calls, and human correction can change total cost.
Is ChatGPT plan pricing the same as GPT-5.6 API pricing?
No. A ChatGPT subscription provides product access and usage limits, while the API charges for metered input and output tokens. Codex has its own published rate card and usage presentation. Compare each product inside its own billing model.
How do I calculate GPT-5.6 API cost?
For direct API use, divide input tokens by one million and multiply by the input rate, then do the same for output tokens and add the two results. Add cached-input, tool, retry, and operational costs when they apply to the real workflow.
Does prompt caching reduce GPT-5.6 cost?
OpenAI states that GPT-5.6 cache writes are billed at 1.25 times the uncached input rate and cache reads receive a 90% cached-input discount. Savings depend on whether a stable prefix is actually reused; caching does not reduce the output-token rate.
Are OpenAI API prices the same as Kynvio pricing?
No. OpenAI's direct API list prices and Kynvio's plan or credit rules describe different products. Use the Kynvio pricing page for current Kynvio amounts and the official OpenAI sources for direct API billing.
Should I choose GPT-5.6 Sol, Terra, or Luna?
Start with the lowest-cost tier that reliably meets the task's quality and completion requirements. Luna fits simple, high-volume work; Terra is a balanced starting point; Sol is designed for the hardest work where failed attempts and rework are expensive. Validate that decision on your own prompts.
Official sources
Pricing and availability are volatile. These primary pages are the source of record used for this guide and should be checked again before a spending decision.
Editorial method: pricing and availability claims were checked against the linked OpenAI and ChatGPT pages on July 16, 2026. Calculations use the displayed public token rates. Kynvio used AI assistance for drafting and editing, followed by source review and product-context review. No provider sponsored this article.