GPT-6 Sol and Luna launch: API prices permanently cut 50%, which model should developers pick?
OpenAI launched GPT-6 Sol and Luna on September 22, permanently cutting API prices 50% vs GPT-5.6. Sol targets complex coding and agent tasks at $2/$10 per million tokens; Luna handles high-frequency low-cost use at $0.10/$0.50. Here is the pricing comparison, migration notes, and model selection guidance.
Public-source compilation
Synthesized from public posts/docs. Prefer the original source for primary claims.
TL;DR
If you searched for "GPT-6 Sol Luna API pricing" or "how to migrate from GPT-5.6 to GPT-6": both models launched September 22, 2026, with API prices permanently cut 50% vs GPT-5.6 promotional rates. Sol handles complex coding and agent tasks; Luna is built for high-frequency, low-cost workloads.
Pricing Comparison (per million tokens, USD)
| Model | Input | Output | Cached Input | Context Window |
|---|---|---|---|---|
| GPT-6 Sol | $2.00 | $10.00 | $0.20 | 1,050,000 |
| GPT-6 Luna | $0.10 | $0.50 | $0.01 | 1,050,000 |
| GPT-5.6 Sol (promo) | $4.00 | $20.00 | — | — |
| GPT-5.6 Luna | $0.20 | $1.20 | — | — |
Note: GPT-5.6 Sol's $4/$20 was already a promotional rate guaranteed only through November 21, 2026. The real saving vs list price is greater than 50%.
Model Positioning
| Dimension | GPT-6 Sol | GPT-6 Luna |
|---|---|---|
| Target | Complex professional work, coding, agent tasks | Speed-first, high-frequency low-cost |
| Reasoning effort | none/low/medium(default)/high/xhigh/max | Same |
| Knowledge cutoff | 2026-04-20 | 2026-05-18 |
| Fine-tuning | Not supported | Not supported |
| Endpoints | Responses, Chat Completions, Batch | Same |
Migration Breaking Changes
1. Function calling behavior change
In Chat Completions, function calling only works with reasoning_effort: "none". For any other effort level, migrate tool-calling code to the Responses API.
2. Sampling parameters removed
When reasoning is on, drop temperature, top_p, top_logprobs, and logprobs.
3. Reasoning effort renaming
If you used minimal effort on older models, start with low on GPT-6 and benchmark.
4. Prompt caching config changed
Old: prompt_cache_retention: {"ttl": "30m"}
New: prompt_cache_options: {"ttl": "30m"}
Caching starts at 1,024 visible input tokens. Cache writes cost 125% of input price; reads cost 10%.
5. Codex auto-switching
Multiple developers report Codex sessions being automatically switched to GPT-6 models. Pin the model ID explicitly if you depend on GPT-5.6 behavior.
Developer Model Selection Guide
| Use case | Recommended | Why |
|---|---|---|
| Multi-step agent orchestration, complex coding | GPT-6 Sol | Strong reasoning, stable function calling |
| High-frequency batch classification, summarization | GPT-6 Luna | Extremely low per-token cost, fast |
| Fine-tuning required | Stay on GPT-5.6 | GPT-6 does not support fine-tuning yet |
| Long context (>272K input) | Evaluate cost | Above 272K, input is 2x and output is 1.5x |
Reminder: OpenAI has not announced GPT-5.6 API deprecation dates. But Codex is already auto-switching, so evaluate migration early.
Next Steps
- Replace existing model IDs with
gpt-6-solandgpt-6-lunain your test environment - Check if your function-calling code depends on Chat Completions (if so, migrate to Responses API)
- Use caching to optimize costs: a stable system prompt saves 90% on input from the second call
- Track real-time pricing at OpenAI API Pricing
Related tutorials: how to build an automated content publishing pipeline with Claude Code and n8n at /ai-agent-tutorials.
Topic hub
AI Coding Tools Hub (2026)
From Copilot pricing changes to Claude Code + DeepSeek cost-saving setups—one place to compare tools, read explainers, and follow tutorials.
Explore AI Coding Tools Hub (2026) →Monetization angle
How can you make money from this trend?
WayToClawEarn focuses on verified earn playbooks—not just news. Start from these cases.
AI code review & spec-driven agency
Offer migration consulting as Copilot pricing shifts
Claude Code 48h Micro SaaS
Validate products fast with a low-cost agent stack
Related tutorials
- Claude Code Too Expensive? Cut 90%+ Cost with DeepSeek V4 in 10 Minutes
- GitHub Copilot Pricing 2026: Plan Comparison, Monthly Cost, and 3 Ways to Save
- How to turn off signature in VS Code Copilot AI: remove Co-Authored-by with one line of command
- Copilot vs Cursor vs Claude Code (2026): Which Should You Pick?
Related news
- Plugin4Shell: Zero-click RCE hits four major AI coding agents — how to fix
- Claude Opus 5.5 launched: 40% cheaper, new coding SOTA — which model to pick?
- OpenAI Agents API Enters Public Beta: Codex’s Runtime Layer, with Clear Permission Boundaries
- DeepSeek V4.1-Flash Is Live: How to Handle Model Routing, Cache, and API Price Changes