GPT-6 Luna is the fast, cost-efficient model in OpenAI's GPT-6 series, positioned below GPT-6 Sol. It is suited for high-volume and latency-sensitive workloads such as chat, classification, and lightweight agentic tasks. Multimodal input (text, image, file), 1.05M-token context, configurable reasoning effort, tools and structured outputs.
GPT-6 Luna is the fast, cost-efficient model in OpenAI's GPT-6 series, below GPT-6 Sol and the flagship GPT-6 Astra. It targets high-volume and latency-sensitive workloads — chat, classification,…
Multimodal input (text, images and files) with text output, a ~1.05M-token context window and up to 128K output tokens. Supports configurable reasoning effort, function calling / tools, structured (JSON) outputs and seeded sampling. The model is moderated by the provider.
Pricing is tiered by prompt size: the standard rate applies up to 272K input tokens and steps up beyond it. Cached input reads are billed at a reduced rate. See the pricing on this page for the current numbers.
POST /v1/chat/completions with model openai/gpt-6-luna through your OrcaRouter API key — any OpenAI SDK works by setting the base URL to OrcaRouter. Supports tools / function calling, response_format for structured outputs, and reasoning_effort to tune depth. Errors use the OpenAI error envelope.
OpenAI-compatible — keep the SDK you already use
https://api.orcarouter.ai/v1import os
from openai import OpenAI
client = OpenAI(
base_url="https://api.orcarouter.ai/v1",
api_key=os.environ["ORCAROUTER_API_KEY"],
)
response = client.chat.completions.create(
model="openai/gpt-6-luna",
messages=[{"role": "user", "content": "Hello"}],
)
print(response.choices[0].message.content)include_reasoningmax_completion_tokensmax_tokensreasoningreasoning_effortresponse_formatseedstructured_outputstool_choicetools| Tier | Input / 1M tokens | Output / 1M tokens | Cache read / 1M | Cache write / 1M |
|---|---|---|---|---|
| ≤ 272K | $0.100 | $0.500 | $0.010 | $0.125 |
| ≤ ∞ | $0.200 | $0.750 | $0.020 | $0.250 |
| Tier selected by input token count of each request | ||||
Estimate based on list price
Tiered pricing — this estimate uses base-tier rates.
Estimate only — actual token counts depend on the provider's tokenizer.
What developers are saying this week
GET /api/public/models/openai/gpt-6-lunaOpen @misc{orcarouter_gpt_6_luna,
title = {GPT-6 Luna API},
author = {OpenAI},
year = {2026},
howpublished = {OrcaRouter},
url = {https://www.orcarouter.ai/models/openai/gpt-6-luna}
}OpenAI. (2026). GPT-6 Luna API. OrcaRouter. https://www.orcarouter.ai/models/openai/gpt-6-luna