Skip to main content
LaoZhang API now serves OpenAI’s GPT-6 Astra, Sol, and Luna. All three are billed per token in the default group, and you call them through Chat Completions or Responses by setting model to the model ID.
  • Published: September 24, 2026
  • Last verified: September 24, 2026
  • Status: Active. All three models are available in the default token group.

Key facts

Pricing

These rates come from LaoZhang API’s public pricing as of September 24, 2026, in US dollars per 1M tokens. They match the Standard rates on OpenAI’s pricing page. Standard requests (up to 272K input tokens per request): Long-context requests (more than 272K input tokens per request): Once a request has more than 272K input tokens, the whole request is billed at the long-context rates. For current rates, see the model and pricing catalog and the console pricing page.

Choose a model

OpenAI suggests weighing the reasoning your task needs against latency and cost:
  • gpt-6-astra: OpenAI’s most capable model, aimed at the hardest end-to-end work such as complex reasoning, coding, research, and document creation. It has the highest rates of the three.
  • gpt-6-sol: built for complex coding and agentic workflows, and suited to demanding tasks that need strong reasoning.
  • gpt-6-luna: the model OpenAI describes as its most efficient, for focused, repeatable tasks at high volume. It has the lowest rates of the three.
Before you commit to one, run a sample of your own requests through the candidates and compare quality, latency, and token usage. Choose a model describes how.

Who is affected

  • Affected: projects that call text models through LaoZhang API’s OpenAI-compatible endpoint. An API key in the default group with the Usage first or Usage-based billing mode can call GPT-6, so you can start testing by changing model to a GPT-6 ID.
  • Not affected: existing models. GPT-5.6, GPT-5.4, and other models remain available, and current integrations need no changes.

Call GPT-6

Create an API key in Token management in the default group, with its billing mode set to Usage first (按量优先, recommended) or Usage-based (按量计费). Then export the key in your terminal:
You can call GPT-6 through Chat Completions or Responses. These examples first send one message to gpt-6-sol with Chat Completions. For Python, run python -m pip install openai first.
The reply text is in choices[0].message.content, which the Python example prints. To use gpt-6-astra or gpt-6-luna, change only model. The Python example turns off automatic retries so that your application decides when to send a request again. Call logs show the tokens and the charge for each request. To use the Responses API, send input to POST /v1/responses:
In the Python SDK, response.output_text joins the reply text. In the raw JSON, the text is in content[].text of the output item whose type is message.

Check your request parameters before you switch

All three GPT-6 models are reasoning models. OpenAI’s Using GPT-6 guide lists the parameters to check when you move to GPT-6. These rules apply to Chat Completions requests:
  • Reasoning effort (reasoning_effort):
    • gpt-6-sol and gpt-6-luna accept none, low, medium (the default), high, xhigh, and max.
    • gpt-6-astra does not accept none; use low instead.
    • If your requests use minimal, switch to low for any of the three models and compare the results.
  • Sampling parameters: unless reasoning effort is none, remove temperature, top_p, logprobs, and top_logprobs from the request. Because gpt-6-astra has no none setting, never send these parameters to it.
  • Tool calling:
    • Tool calling with gpt-6-astra requires the Responses API.
    • gpt-6-sol and gpt-6-luna support function calling in Chat Completions only when reasoning_effort is none.
    • To use tools with gpt-6-astra, or reasoning together with function calling on Sol or Luna, send the request to LaoZhang API’s Responses endpoint (POST /v1/responses).

Frequently asked questions

Can I call GPT-6 through the Responses API?

Yes. LaoZhang API supports OpenAI’s Responses API: set the base URL to https://api.laozhang.ai/v1 and call client.responses.create as in OpenAI’s GPT-6 guide; see the examples above. Tool calling with gpt-6-astra requires the Responses API, while plain conversations work with either endpoint.

How are requests with more than 272K input tokens billed?

The whole request is billed at the long-context rates, not just the tokens above 272K. Input, output, cache reads, and cache writes all use the long-context table above. Compared with the standard rates, input and cache rates are doubled and output costs 1.5 times as much, the same rule OpenAI applies. To estimate cost, use a request’s full input token count to decide which tier applies.

I already use GPT-5.6. Do I need to switch?

No. gpt-5.6-luna, gpt-5.6-terra, and gpt-5.6-sol remain in the pricing configuration, and existing integrations keep working. If you plan to switch, compare both generations on representative requests for quality, latency, and cost, then check reasoning effort, sampling parameters, and tool calling as described above. The model and pricing catalog lists current rates for both generations.

What if the model doesn’t exist or isn’t allowed?

Check the model ID, token group, and endpoint, in this order:
  1. The model ID is copied exactly (gpt-6-astra, gpt-6-sol, or gpt-6-luna).
  2. Your API key is in the default group with the Usage first or Usage-based billing mode, because a Per-call key can call only per-call models.
  3. The request goes to POST /v1/chat/completions or POST /v1/responses.
If it still fails, follow the steps in model availability.

How do I check what my GPT-6 requests cost?

Multiply a request’s token counts by the current rates and compare the result with the actual charge:
  1. Confirm the current rates on the console pricing page.
  2. Pick a recent request in call logs and work out its expected charge from its token counts. Use the long-context rates if the request had more than 272K input tokens.
  3. Compare the result with the actual charge.
If the amounts differ, email hi@laozhang.ai with the request time and model ID, and do not include your API key.

OpenAI

  • OpenAI API changelog: the September 3, 2026 entry for GPT-6 Astra and the September 22, 2026 entry for GPT-6 Sol and Luna
  • OpenAI API pricing: standard and long-context rates for all three models
  • Model pages for GPT-6 Astra, GPT-6 Sol, and GPT-6 Luna: context window, maximum output, reasoning effort, and pricing rules
  • Using GPT-6: how the three models differ, and the parameter and tool-calling rules for switching

LaoZhang API

LaoZhang API rates, token groups, and endpoints come from the public pricing configuration as of September 24, 2026: