GPT 5.6 Luna API
openai/gpt-5.6-lunaGPT 5.6 Luna converts prompts and conversation history into answers, labels, extracted fields, summaries, and rewrites. Its lower Vidgo token rates make it the GPT 5.6 option for routine chat and high-volume text processing where cost per request is a primary constraint.
GPT 5.6 Luna
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-luna
- Protocol
- Responses
Request fields
| Field | Requirement | Description |
|---|---|---|
| model | Required | gpt-5-6-luna |
| 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-luna",
"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 Luna API — Frequently asked questions
What is the GPT 5.6 Luna API?
GPT 5.6 Luna 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 Luna API?
Send a Bearer-authenticated POST request to /v1/responses with model gpt-5-6-luna and valid input. Use stream: false for JSON or stream: true for SSE.
How much does GPT 5.6 Luna cost?
Per 1M tokens, Vidgo charges 11.2 credits for input, 67.2 for output, 1.12 for cache reads, and 14 for cache writes. The minimum positive charge for a successful request is 0.001 credit.
What inputs does GPT 5.6 Luna 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 Luna for routine chat, classification, extraction, and rewriting at high volume. Choose Terra for broader recurring production work or Sol for the most demanding multi-step reasoning and software tasks.
