Research index
Model releases/

GPT-6 Astra API: Pricing, the 272K Cliff and Setup

GPT-6 Astra API pricing is $10 per 1M input and $50 per 1M output below 272K tokens. Above 272K the whole request bills $20/$75. Rates, 922K input and setup.

Written byRouterPlex
Reading time5 min
GPT-6 Astra API: Pricing, the 272K Cliff and Setup

GPT-6 Astra is OpenAI's current flagship, live as model ID gpt-6-astra. The list price is $10 per 1M input tokens and $50 per 1M output tokens for prompts at or below 272,000 input tokens. Cross that line and the whole request bills at $20 input and $75 output per 1M.

That cliff is the number most pricing tables bury. It is not a marginal rate.

Sources: OpenAI GPT-6 Astra, OpenAI API pricing, and the latest-model guide, checked September 5, 2026. OpenAI also published a GPT-6 Astra system card. Rates change; the live number is always the GPT-6 Astra price page.

GPT-6 Astra API pricing #

All figures are USD per 1M tokens. The first row is the standard rate at or below 272K input tokens; the second is long-context pricing above 272K.

TierInputOutput
Standard (≤272K input)$10.00$50.00
Long context (>272K input)$20.00$75.00

OpenAI also publishes $1 per 1M cached input and $12.50 per 1M cache writes. RouterPlex bills cached tokens at the full $10 input rate on this route, because the upstream does not pass the cache discount through. Price a cache-heavy agent against $10, not $1.

The 272K cliff applies to the whole request #

OpenAI's rule is the same shape as xAI's 200K cliff: once input tokens go past 272,000, the higher rate applies to every token in that request. There is no blended calculation.

text
271,000-token prompt on gpt-6-astra → 271,000 × $10.00/1M = $2.71
273,000-token prompt on gpt-6-astra → 273,000 × $20.00/1M = $5.46

Two thousand extra input tokens roughly double the input bill, and output on that same request lifts from $50 to $75 per 1M. If you are anywhere near 272K, trimming the prompt below the threshold is worth more than any other optimisation available to you.

How GPT-6 Astra compares on price #

Flagship list prices, USD per 1M tokens, on a 40,000-token prompt returning 2,000 tokens with no cache:

ModelContextInput / 1MOutput / 1MCost per turn
grok-4.6500K$2.00$6.00$0.092
qwen3.8-max1M$2.00$6.00$0.092
gpt-5.6-sol258K$5.00$30.00$0.260
claude-opus-4-81M$5.00$25.00$0.250
gpt-6-astra922K in$10.00$50.00$0.500
claude-fable-51M$10.00$50.00$0.500

Astra is priced as a premium flagship, not a value one. It matches Claude Fable 5 on list rates and costs about twice a GPT-5.6 Sol turn. Pay that only when the newer model actually moves the task.

Live pricing: GPT-6 Astra, GPT-5.6 Sol, Claude Fable 5.

What OpenAI actually documents #

CapabilityGPT-6 Astra
Model IDgpt-6-astra
Context window1,050,000 tokens
Max input922,000 tokens
Max output128,000 tokens
Knowledge cutoff30 April 2026
Reasoning effortlow, medium, high, xhigh, max
Chat CompletionsYes
Responses APIYes
OpenAI-compatible chat API on RouterPlexYes
Anthropic-compatible /v1/messagesYes

Reasoning tokens are billed as output at $50 per 1M ($75 above the cliff). A short reply is not necessarily a cheap one. Check usage.completion_tokens_details.reasoning_tokens if a simple prompt costs more than you expected.

OpenAI's Batch and Flex endpoints are 50% of Standard, and Fast is 2×. RouterPlex bills the standard list rate in the table above. Do not assume a Batch or Flex discount on this key.

Call GPT-6 Astra with RouterPlex #

Create a RouterPlex key, give it a hard budget, and send a standard chat-completions request:

bash
curl https://api.routerplex.com/v1/chat/completions \
-H "Authorization: Bearer $ROUTERPLEX_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-6-astra",
"messages": [
{"role": "user", "content": "Name the riskiest assumption in this migration plan."}
]
}'

The Python version uses the regular OpenAI client — only the base URL, key and model ID change:

python
import os
from openai import OpenAI
 
client = OpenAI(
api_key=os.environ["ROUTERPLEX_API_KEY"],
base_url="https://api.routerplex.com/v1",
)
 
response = client.chat.completions.create(
model="gpt-6-astra",
messages=[{"role": "user", "content": "Design a rollback-safe deployment plan."}],
)
 
print(response.choices[0].message.content)

Claude Code and the Anthropic SDK reach the same model through the Anthropic-compatible format — set ANTHROPIC_BASE_URL=https://api.routerplex.com and use gpt-6-astra as the model. See the Claude Code setup guide for the full configuration.

Should you switch from GPT-5.6 Sol? #

  • Hardest work, newest model — architecture reviews, high-risk migrations, long-horizon agents that need the 922K input window. Astra is the current OpenAI flagship. Budget $10 / $50 and stay under 272K unless you mean to pay the cliff.
  • Same family, lower rate — keep GPT-5.6 Sol at $5 / $30 when evaluation does not show a quality gain that pays for doubling input.
  • Anything near 272K — trim first. Two thousand extra tokens can double the request.

Astra is live on RouterPlex at OpenAI list input and output rates with no per-token markup, on the same prepaid key as Sol, Terra, Luna and the rest of the OpenAI catalog. See the live GPT-6 Astra price page before you commit a budget.

Common questions

Frequently asked questions

How much does the GPT-6 Astra API cost?

OpenAI lists GPT-6 Astra at $10 per 1M input tokens and $50 per 1M output tokens for prompts at or below 272K input tokens. Prompts above 272K are billed at $20 input and $75 output per 1M for the whole request. RouterPlex bills those list rates with no markup. Cached tokens on this route are billed at the full input rate.

What is the GPT-6 Astra context window?

OpenAI documents a 1,050,000-token context window, 922,000 maximum input tokens, and 128,000 maximum output tokens. Knowledge cutoff is 30 April 2026.

Why did my GPT-6 Astra bill jump on one long request?

The 272K cliff. Once input tokens go past 272,000, OpenAI bills the higher rate for every token in that request, not just the tokens past the threshold. A 273K-token prompt costs roughly double a 271K-token one on the input side, and output lifts 1.5×.

Does RouterPlex pass OpenAI's cached-input discount for GPT-6 Astra?

No. OpenAI publishes $1 per 1M cached input and $12.50 per 1M cache writes. RouterPlex bills cached tokens at the full $10 input rate because the upstream for this route does not pass that discount through.

Is GPT-6 Astra cheaper than GPT-5.6 Sol?

No. Astra is $10/$50 per 1M against Sol at $5/$30 on this catalog. On a 40K-in / 2K-out turn that is $0.50 versus $0.26. Astra is the newer flagship, not a price cut.

Can I use GPT-6 Astra with the OpenAI SDK?

Yes. Point the OpenAI SDK at https://api.routerplex.com/v1 with model ID gpt-6-astra, or point the Anthropic SDK and Claude Code at https://api.routerplex.com to reach the same model through /v1/messages.

Run the smallest paid test.

Add $5, cap the key, and verify the result with your own workload. No subscription, and credit never expires — a first top-up of $25+ is matched with $25 extra.