GPT 5.6 Terra API
openai/gpt-5.6-terraGPT 5.6 Terra converts prompts and conversation context into structured text for coding, analysis, extraction, and general generation. Its 1M-token context supports large instructions and documents when you need a balanced GPT 5.6 option for recurring production workloads.
GPT 5.6 Terra
OpenAI · responses
Quick start
Send one POST request to /v1/responses. Non-streaming calls return the model result and usage directly, with no task creation or status polling.
- Endpoint
- POST /v1/responses
- Model ID
- gpt-5-6-terra
- Protocol
- Responses
Request fields
| Field | Requirement | Description |
|---|---|---|
| model | Required | gpt-5-6-terra |
| input | Required | A string or message array. |
| max_output_tokens | Optional | Limits output tokens for this response. |
| stream | Optional | Returns an SSE event stream when true. |
Response and usage
Successful responses include generated content and usage. Billing settles from actual input, output, and cache tokens.
Streaming
Set stream: true to read SSE. Finalize usage accounting from the terminal usage event.
curl --request POST \
+ --url https://api.vidgo.ai/v1/responses \
+ --header 'Authorization: Bearer $VIDGO_API_KEY' \
+ --header 'Content-Type: application/json' \
+ --data '{
"model": "gpt-5-6-terra",
"input": "Explain why deterministic retries matter in distributed systems.",
"max_output_tokens": 1024,
"stream": false
}'Keep API keys on the server. Never expose them in browser code or public repositories.
Continue with
Related Models
GPT 5.6 Terra API — Frequently asked questions
What is the GPT 5.6 Terra API?
GPT 5.6 Terra is developed by OpenAI. It accepts text or conversation messages and returns generated text plus usage through Vidgo AI.
How do I call the GPT 5.6 Terra API?
Send a Bearer-authenticated POST request to /v1/responses with model gpt-5-6-terra and valid input. Use stream: false for JSON or stream: true for SSE.
How much does GPT 5.6 Terra cost?
Per 1M tokens, Vidgo charges 112 credits for input, 672 for output, 11.2 for cache reads, and 140 for cache writes. The minimum positive charge for a successful request is 0.001 credit.
What inputs does GPT 5.6 Terra accept?
The Responses endpoint accepts input as a text string or message array. You can also set max_output_tokens and choose synchronous JSON or SSE with stream.
Which GPT 5.6 tier should I choose?
Choose Terra for recurring coding, analysis, extraction, and generation where production cost matters. Choose Sol for the hardest multi-step work or Luna for routine, high-volume text processing at lower Vidgo token rates.
