Routeway Logo
Back to Models
OpenAI

GPT 5.6 Terra

Available

Description

GPT-5.6 Terra is the balanced model in OpenAI's GPT-5.6 series, positioned between flagship Sol and cost-efficient Luna. It is suited for everyday coding, reasoning, agentic work, and general professional tasks.

At a Glance

Key pricing and model details available for this model.

Input price

$2.50

per 1M tokens

Output price

$15.00

per 1M tokens

Context window

1.1M

tokens

Hallucination rate

0%

Token Pricing

Token pricing normalized to per-million-token rates.

Input / 1M tokens

$2.50

Output / 1M tokens

$15.00

Cache Read / 1M tokens

$0.25

Cache Write (1h) / 1M tokens

$3.13

Token Pricing Details

Rates are shown per 1M tokens for easier comparison.

Input / 1M tokens$2.50
Input unit1M tokens
Output / 1M tokens$15.00
Output unit1M tokens
Cache Read / 1M tokens$0.25
Cache Read unit1M tokens
Cache Write (1h) / 1M tokens$3.13

Feature Availability

Capabilities explicitly listed in the current payload.

LLM

Available

Yes

Vision

Not listed

No

Function calling

Available

Yes

Reasoning

Available

Yes

Supported Parameters

frequency_penalty
logit_bias
max_completion_tokens
presence_penalty
reasoning_effort
response_format
stop
temperature
tool_choice
tools
top_p

Code Samples

Quick start with the Routeway API

import OpenAI from 'openai';

const openai = new OpenAI({
  baseURL: "https://api.routeway.ai/v1",
  apiKey: "<YOUR_API_KEY>",
});

async function main() {
  const completion = await openai.chat.completions.create({
    model: "gpt-5.6-terra",
    messages: [
      {
        role: "user",
        content: "Explain quantum computing in simple terms"
      }
    ]
  });

  console.log(completion.choices[0].message);
}

main();