GPT Image 2.5 is LIVE — Flare & Sunburst | Try in Image Generator →
openai
openai/gpt-5.6-terra-pro

openai/gpt-5.6-terra-pro

Release date: 2026-07-09

1,050,000 context · $2.00/M input tokens · $12.00/M output tokens

GPT-5.6 Terra Pro is the same underlying model as GPT-5.6 Terra, served with reasoning.mode set to pro for higher-quality responses on complex tasks. Learn more in OpenAI's docs: https://developers.openai.com/api/docs/guides/reasoning#reasoning-mode

Pricing

Pay-per-use

No upfront costs, pay only for what you use

Input
> 272K $4.00 / M Tokens
Output
> 272K $18.00 / M Tokens
Cache Read
> 272K $0.40 / M Tokens
Cache Write$2.50 / M Tokens

Try the model

openai/gpt-5.6-terra-pro
Online
openai
Hi! I am a helpful AI assistant. What can I do for you?
Ready to use this model in a local coding agent?Agent setup

API Usage

Use the following code examples to integrate with our API:

import OpenAI from 'openai';

if (!process.env.WAVESPEED_API_KEY) throw new Error('Set WAVESPEED_API_KEY');
const client = new OpenAI({
  apiKey: process.env.WAVESPEED_API_KEY,
  baseURL: 'https://llm.wavespeed.ai/v1',
  timeout: 120_000,
  maxRetries: 2,
});

try {
  const response = await client.chat.completions.create({
    model: 'openai/gpt-5.6-terra-pro',
    messages: [{ role: 'user', content: 'Hello!' }],
  });
  console.log(response.choices[0]?.message?.content ?? '');
} catch (error) {
  console.error('LLM request failed:', error);
  process.exitCode = 1;
}

Model Introduction

OpenAI: GPT-5.6 Terra Pro

GPT-5.6 Terra Pro is the same underlying model as GPT-5.6 Terra, served with reasoning.mode set to pro for higher-quality responses on complex tasks. Learn more in OpenAI's docs: https://developers.openai.com/api/docs/guides/reasoning#reasoning-mode

This model is imported from OpenRouter metadata and exposed through the WaveSpeed AI OpenAI-compatible API for chat completions and compatible application workflows.


Why It Looks Great

  • text+image+file->text architecture for file, Image, Text to Text workloads
  • 1050000 context window for long prompts, document analysis, and multi-turn workflows
  • Competitive pricing at $2/$12 per million tokens
  • Vision input support for image understanding and multimodal tasks
  • Function calling and tool-use support for agentic application workflows
  • Structured output support for JSON responses and schema-constrained generation
  • Reasoning controls available through supported OpenRouter parameters

Key Features

  • Context Window: 1050000 tokens
  • Max Input: 922000 tokens
  • Max Output: 128000 tokens
  • Vision: Supported
  • Function Calling: Supported
  • Structured Outputs: Supported
  • Image Generation: Not listed
  • Audio Input: Not listed
  • Supported Parameters: include_reasoning, max_completion_tokens, max_tokens, reasoning, reasoning_effort, response_format, seed, structured_outputs, tool_choice, tools

Specifications

SpecificationValue
Provideropenai
Model TypeChat Completions model
Architecturetext+image+file->text
Context Window1050000 tokens
Max Input922000 tokens
Max Output128000 tokens
Inputfile, Image, Text
OutputText
VisionSupported
Function CallingSupported
Structured OutputsSupported
OpenRouter CreatedJuly 9, 2026

Pricing

Token TypeCost
Input$2 per million tokens
Output$12 per million tokens
Cached Input$0.2 per million tokens
Cache Write (5m)$2.5 per million tokens
Web Search$20000 per million tokens

Note: Pricing is generated from OpenRouter model metadata. If multiple upstream providers expose different endpoint prices, review and adjust the price before publishing.


How to Use

  1. Write your prompt - describe the task, provide context, and specify the desired output format.
  2. Submit - the model processes your request and returns the response.

API Integration

Base URL: https://llm.wavespeed.ai/v1 API Endpoint: chat/completions Model ID: openai/gpt-5.6-terra-pro


API Usage

Python SDK

from openai import OpenAI

client = OpenAI(
    api_key="YOUR_API_KEY",
    base_url="https://llm.wavespeed.ai/v1"
)

response = client.chat.completions.create(
    model="openai/gpt-5.6-terra-pro",
    messages=[{"role": "user", "content": "Hello!"}]
)

print(response.choices[0].message.content)

cURL

curl https://llm.wavespeed.ai/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "model": "openai/gpt-5.6-terra-pro",
    "messages": [{"role": "user", "content": "Hello!"}]
  }'

Notes

  • Model: openai/gpt-5.6-terra-pro
  • Provider: openai
  • OpenRouter marks the top provider as moderated
  • Endpoint availability and provider-specific routing may change on OpenRouter

Sources: OpenRouter model metadata.

Info

Provideropenai
Typellm

Supported Functionality

Input
TextImage
Output
Text
Context1,050,000
Max Output128,000
Vision✓ Supported
Function Calling✓ Supported

API Access Guide

Base URLhttps://llm.wavespeed.ai/v1
API Endpointchat/completions
Model IDopenai/gpt-5.6-terra-pro

GPT 5.6 Terra Pro API

openai/gpt-5.6-terra-pro

GPT-5.6 Terra Pro is the same underlying model as GPT-5.6 Terra, served with `reasoning.mode` set to `pro` for higher-quality responses on complex tasks. Learn more in OpenAI's docs: https://developers.openai.com/api/docs/guides/reasoning#reasoning-mode

Input

$2 /M

Output

$12 /M

Context

1050K

Max Output

128K

Vision

Supported

Tool Use

Supported

Try GPT 5.6 Terra Pro on WaveSpeedAI

Access GPT 5.6 Terra Pro through our unified API — OpenAI-compatible, no cold starts, transparent pricing.

Frequently Asked Questions about GPT 5.6 Terra Pro

How much does GPT 5.6 Terra Pro cost via the API?+

Pricing on WaveSpeedAI: $2.00 per million input tokens and $12.00 per million output tokens. Prompt caching and batch processing are billed separately and reduce effective cost on long, repetitive workloads.

What is the context window of GPT 5.6 Terra Pro?+

GPT 5.6 Terra Pro supports up to 1050K tokens of context with up to 128K tokens of output per request.

Is GPT 5.6 Terra Pro OpenAI-compatible?+

WaveSpeedAI exposes GPT 5.6 Terra Pro at https://llm.wavespeed.ai/v1 through the OpenAI-compatible Chat Completions interface. Most OpenAI SDK clients work by changing the base URL and API key; optional fields depend on the selected model.

How do I get started with GPT 5.6 Terra Pro?+

Sign in to WaveSpeedAI, create an API key in Access Keys, then send a request to https://llm.wavespeed.ai/v1/chat/completions with the model id shown above. Check the current model catalog for availability, capabilities, and pricing.

Related LLM APIs

GPT-5.6 Terra Pro | OpenAI Frontier LLM API Pricing | WaveSpeedAI