GPT 5.6 Sol API
openai/gpt-5.6-solGPT 5.6 Sol turns prompts and conversation context into detailed text for complex reasoning, multi-file software work, agent planning, and research synthesis. Choose it when task depth and careful constraint handling matter more than minimizing token cost.
GPT 5.6 Sol
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-sol
- Protocol
- Responses
Request fields
| Field | Requirement | Description |
|---|---|---|
| model | Required | gpt-5-6-sol |
| 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-sol",
"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 Sol API — Frequently asked questions
What is the GPT 5.6 Sol API?
GPT 5.6 Sol 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 Sol API?
Send a Bearer-authenticated POST request to /v1/responses with model gpt-5-6-sol and valid input. Use stream: false for JSON or stream: true for SSE.
How much does GPT 5.6 Sol cost?
Per 1M tokens, Vidgo charges 280 credits for input, 1680 for output, 28 for cache reads, and 350 for cache writes. The minimum positive charge for a successful request is 0.001 credit.
What inputs does GPT 5.6 Sol 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 Sol for the most demanding reasoning, software, agent, and research work. Choose Terra for balanced recurring production tasks or Luna for routine, high-volume text processing at lower Vidgo token rates.
