Skip to main content
Core.Today
|
OpenAIFastUltra

GPT-6 Astra

OpenAI's most capable model (GPT-6 generation, September 2026), built for the hardest end-to-end work: complex reasoning, coding, computer use, research and document creation. 1M token context window, 128K max output tokens, cached inputs at a 90% discount. Prompts above 272K input tokens are billed at 2x input / 1.5x output for the whole request.

18,580/92,900credits
input / output ยท per 1M tokens
Most capable OpenAI model (GPT-6 generation)
1M token context window
128K max output tokens
Knowledge cutoff: April 2026
Cached input pricing (90% discount)
Adjustable reasoning effort (low to max)
Function calling and native vision support

Run it right now

Test this model instantly in the Console Playground โ€” no code required

Sign in to try

Use with AI Assistant

Copy usage instructions for Claude, ChatGPT, or other AI

Model Specifications

Context Window
1M
tokens
Max Output
128K
tokens
Training Cutoff
2026-04
Compatible SDK
OpenAI

Capabilities

Vision
Function Calling
Streaming
JSON Mode
System Prompt

Token Pricing (per 1M tokens)

Token TypeCreditsUSD Equivalent
Input Tokens18,580$12.39
Output Tokens92,900$61.93
Cached Tokens1,858$1.24

* 1,500 credits โ‰ˆ $1 (actual charges may vary based on usage)

Quick Start

curl -X POST "https://api.core.today/llm/openai/v1/chat/completions" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer cdt_your_api_key" \
  -d '{
  "model": "gpt-6-astra",
  "messages": [
    {
      "role": "system",
      "content": "You are a senior software engineer. Think step by step."
    },
    {
      "role": "user",
      "content": "Design a migration plan from a monolithic Express API to modular services, then generate the first service's code with tests."
    }
  ],
  "reasoning_effort": "high",
  "max_completion_tokens": 8000
}'

Parameters

ParameterTypeRequiredDefaultDescription
messagesarrayYes-Array of message objects with role and content
modelstringYesgpt-6-astraModel identifier
max_completion_tokensintegerNo4096Maximum tokens in response (up to 128000). Note: use max_completion_tokens, not max_tokens
reasoning_effortstringNomediumReasoning effort level: low, medium, high, xhigh, or max
lowmediumhighxhighmax
temperaturefloatNo1.0Sampling temperature (0-2)
streambooleanNofalseEnable Server-Sent Events streaming

Examples

Frontier Agentic Coding

Multi-step code reasoning with GPT-6 Astra

curl -X POST "https://api.core.today/llm/openai/v1/chat/completions" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer cdt_your_api_key" \
  -d '{
  "model": "gpt-6-astra",
  "messages": [
    {
      "role": "system",
      "content": "You are a senior software engineer. Think step by step."
    },
    {
      "role": "user",
      "content": "Design a migration plan from a monolithic Express API to modular services, then generate the first service's code with tests."
    }
  ],
  "reasoning_effort": "high",
  "max_completion_tokens": 8000
}'

Cached Repeated Context

Reuse a large system prompt with 90% cached input discount

curl -X POST "https://api.core.today/llm/openai/v1/chat/completions" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer cdt_your_api_key" \
  -d '{
  "model": "gpt-6-astra",
  "messages": [
    {
      "role": "system",
      "content": "<large repeated system prompt or codebase context>"
    },
    {
      "role": "user",
      "content": "Summarize the open TODOs and rank them by risk."
    }
  ],
  "temperature": 0.3,
  "max_completion_tokens": 4000
}'

Tips & Best Practices

1Astra is the top of the line ($10/$50 per M) โ€” use GPT-5.6 Sol ($5/$30) or Terra ($2/$12) when tasks don't need maximum capability
2Use cached inputs ($1/M, 90% off) for repeated system prompts and RAG context
3Keep prompts under 272K input tokens where possible โ€” above that the whole request bills at 2x input / 1.5x output
4reasoning_effort 'high', 'xhigh' or 'max' for the most complex tasks
5128K output enables single-shot long-form generation
6Lower temperature (0.2-0.5) for coding and analytical tasks

Use Cases

Frontier reasoning and analysis
Complex agentic workflows with tool use
Large-codebase understanding and refactoring
Long document processing up to 1M tokens
Repeated context with cached inputs (RAG, codebases)