openai/gpt-6-sol
GPT-6 Sol is OpenAI's balanced model in the GPT-6 series, offering strong reasoning and coding capability at a mid-tier price point. It is suited for chat, agentic workflows, software engineering, and general-purpose tas...
Input⌘ / Ctrl + Enter
Try a prompt
OutputReady
Your response will appear here
Choose an example or write a prompt, then click Run.
API details and access
Model Details
ProviderOpenAI
TypeLlm
Model IDopenai/gpt-6-sol
Capabilities
InputTextImage
OutputText
Context-
Max Output128,000
VisionSupported
Function CallingSupported
Access details
Responses APIBase URLhttps://api.sandbase.ai
API Endpoint/v1/responses
{
"model": "openai/gpt-6-sol",
"instructions": "You are a helpful assistant.",
"input": "Hello",
"max_output_tokens": 512
}Pricing
Input$2.00 / 1M tokens
Output$10.00 / 1M tokens
Cache read$0.20 / 1M tokens
Cache write$2.50 / 1M tokens
Production endpoint
Send your first request
OpenAI-compatible endpoint with unified authentication and usage tracking.
POST
https://api.sandbase.ai/v1/chat/completionsModel ID
openai/gpt-6-sol01
Input Schema
9 parameters · 1 required · 8 optional
| Parameter | Type | Required | Description |
|---|---|---|---|
messages | object[] | Required | — |
seed | integer | Optional | — |
tools | array | Optional | — |
stream | boolean | Optional | Default: false |
max_tokens | integer | Optional | Max: 128000 |
tool_choice | string | Optional | — |
response_format | object | Optional | — |
reasoning_effort | string | Optional | Options: low, medium, high, xhigh, max · Default: "medium" lowmediumhighxhighmax |
max_completion_tokens | integer | Optional | Max: 128000 |
02
Output Schema
| Field | Type | Description |
|---|---|---|
id | string | Unique identifier for the completion |
object | string | Object type, e.g. "chat.completion" |
model | string | Model used for the completion |
choices | array | List of completion choices |
choices[].message.content | string | Generated text content |
choices[].finish_reason | string | Reason the generation stopped |
usage.prompt_tokens | integer | Number of tokens in the prompt |
usage.completion_tokens | integer | Number of tokens in the completion |
usage.total_tokens | integer | Total tokens used |
03
Code Examples
Ready-to-run snippets
curl https://api.sandbase.ai/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"model": "openai/gpt-6-sol",
"messages": [{"role": "user", "content": "Hello"}],
"temperature": 0.7,
"max_tokens": 2048,
"stream": true
}'