PixMind Docs
API ReferenceLanguage ModelsGPT-5.6 Sol

GPT-5.6 Sol Chat Completion

Call GPT-5.6 Sol for high-capability reasoning, vision, tools, and streaming through the PixMind API.

GPT-5.6 Sol is the highest-capability route in the GPT-5.6 family. PixMind applies separate input, output, cache-read, and cache-write rates, with a second price tier when request input exceeds 272K tokens.

GPT-5.6 Sol through PixMind's OpenAI-compatible chat completions endpoint.

Provider

OpenAI

Model ID

gpt-5.6-sol

Endpoint

POST /api-platform/v1/chat/completions

Model notes

  • Keep the API key on your server and use streaming when the client needs incremental output.
  • The pricing tier is selected from the request's input-token count. Above 272K input tokens, the long-context tier applies to the entire request—not only the excess tokens. Cache reads and cache writes are billed independently.

Request parameters

ParameterTypeRequiredDescription
modelstringYes

Stable PixMind model ID. Use `gpt-5.6-sol`.

Allowed values: gpt-5.6-sol

messagesarrayYes

OpenAI-compatible chat messages. Gemini user content may be a string or an array of text, image_url, and video_url blocks.

max_tokensintegerNo

Maximum number of completion tokens to generate.

Default: 4096

temperaturenumberNo

Sampling temperature for the response.

Allowed values: 0, 0.5, 1, 2

Default: 1

streambooleanNo

Return tokens incrementally when enabled.

Allowed values: true, false

Default: false

Request example

cURL
curl https://aihub-admin.aimix.pro/api-platform/v1/chat/completions \
  -H "Authorization: Bearer $PIXMIND_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "model": "gpt-5.6-sol",
  "messages": [
    {
      "role": "user",
      "content": "Draft three launch concepts for this product."
    }
  ],
  "stream": false
}'
JavaScript
const response = await fetch("https://aihub-admin.aimix.pro/api-platform/v1/chat/completions", {
  method: "POST",
  headers: {
    "Authorization": `Bearer ${process.env.PIXMIND_API_KEY}`,
    "Content-Type": "application/json"
  },
  body: JSON.stringify({
  "model": "gpt-5.6-sol",
  "messages": [
    {
      "role": "user",
      "content": "Draft three launch concepts for this product."
    }
  ],
  "stream": false
})
});

const task = await response.json();

Accepted task response

Generation is asynchronous. Save taskId and poll GET /api-platform/v1/tasks/{taskId} until status is ready or failed.

200 OK
{
  "code": 1000,
  "data": {
    "id": "img_44160",
    "taskId": 44160,
    "type": "image",
    "model": "gpt-5.6-sol",
    "status": "processing"
  }
}

API pricing

ConfigurationPrice
Input · ≤272K input tokens3694.6 credits (~$3.90) / 1M tokens
Output · ≤272K input tokens22167.6 credits (~$23.39) / 1M tokens
Cache read · ≤272K input tokens369.46 credits (~$0.39) / 1M tokens
Cache write · ≤272K input tokens4618.25 credits (~$4.88) / 1M tokens
Input · >272K input tokens7389.2 credits (~$7.80) / 1M tokens
Output · >272K input tokens33251.4 credits (~$35.09) / 1M tokens
Cache read · >272K input tokens738.92 credits (~$0.78) / 1M tokens
Cache write · >272K input tokens9236.5 credits (~$9.75) / 1M tokens

API pricing uses the apiPlatform role and is separate from PixMind Studio credits. The accepted task response is the final pricing snapshot.