gpt-6-astra β API, Pricing & Context Window | Vivgrid
Run OpenAI's gpt-6-astra on Vivgrid: the flagship gpt-6 coding model with a 1.05M-token context window, geo-distributed acceleration, and a unified API.
gpt-6-astra opens OpenAI's gpt-6 generation and succeeds gpt-5.6-sol. It pairs a 1.05M-token context window with a step up in multi-step reasoning and tool use, built for whole-repository refactors, long-running agents, and workflows where output quality outweighs token cost.
On Vivgrid, gpt-6-astra is served through a single OpenAI-compatible endpoint with geo-distributed acceleration across AMER, EMEA, and APAC, so requests are routed to the nearest compute region for lower latency. You can switch your agent to gpt-6-astra from the Console without changing a line of application code.
It is available on both OpenAI surfaces β Chat Completions (/chat/completions) and the Responses API (/responses) β so coding CLIs that expect the Responses wire format, such as Codex and Pi, work against the same key.
Specifications
| Provider | OpenAI |
| Model ID | gpt-6-astra |
| Best for | Coding |
| Context window | 1,050,000 tokens |
| Max output | 128,000 tokens |
| Modalities | Text, Image |
| Tool / function calling | Yes |
| Knowledge cutoff | 2026-06 |
| Acceleration | β‘ Geo-Distributed β AMER, EMEA, APAC |
Pricing
Pricing in USD per 1M tokens, matching the provider's rates.
| Input | Cached input | Output |
|---|---|---|
| $10.00 | $1.00 | $50.00 |
Quick start
Call gpt-6-astra through Vivgrid's unified, OpenAI-compatible endpoint. Get an API key from the Vivgrid Console.
curl https://api.vivgrid.com/v1/chat/completions \
-H "Authorization: Bearer $VIVGRID_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-6-astra",
"messages": [
{ "role": "user", "content": "Say hello in English, Chinese and Spanish." }
],
"stream": true
}'Prompt caching is billed at $12.50 per 1M cache-write tokens, with cached reads at $1.00.
Requests beyond 272K input tokens are billed at the long-context rate: $20.00 input / $2.00 cached input / $25.00 cache write / $75.00 output per 1M tokens.
Ideal use cases
- Frontier coding agents and CLI tools (Codex, OpenCode, Claude Code-style flows)
- Whole-codebase reads and edits in a single 1.05M-token pass
- High-stakes reasoning where answer quality outweighs token cost
- Long agent traces that chain many tool calls across a session
Related models
- gpt-5.6-sol β the prior-generation flagship at half the price
- gpt-5.6-terra β the balanced gpt-5.6 model
- claude-fable-5-1 β Anthropic's most capable model
claude-haiku-4-5
claude-haiku-4-5 on Vivgrid: Anthropic's fast, low-cost Haiku model with a 200K context window, Messages API, and geo-distributed acceleration.
gpt-5.6-sol
Run OpenAI's gpt-5.6-sol on Vivgrid: the flagship gpt-5.6 coding model with a 1.05M-token context window, geo-distributed acceleration, and a unified API.