> ## Documentation Index
> Fetch the complete documentation index at: https://docs.unifically.com/llms.txt
> Use this file to discover all available pages before exploring further.

# GPT 5.6 Sol

> OpenAI's GPT 5.6 Sol language model. See supported inputs, parameters, pricing, response fields, and API examples.

GPT 5.6 Sol is a variant in OpenAI's GPT 5.6 line with strong general-purpose reasoning and instruction following.

## Model

```
openai/gpt-5.6-sol
```

|              |             |
| ------------ | ----------- |
| **Provider** | OpenAI      |
| **Name**     | GPT 5.6 Sol |

## Supported Endpoints

All three API formats are supported:

* [Chat Completions](/api-reference/v1-chat-completions) — `POST /v1/chat/completions`
* [Responses](/api-reference/v1-responses) — `POST /v1/responses`
* [Messages](/api-reference/v1-messages) — `POST /v1/messages`

## Example

```bash theme={null}
curl -X POST https://api.unifically.com/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "model": "openai/gpt-5.6-sol",
    "messages": [
      {"role": "user", "content": "Explain eventual consistency with a practical example."}
    ]
  }'
```

<Note>
  **Volume discounts** are available for almost all models. Reach out at [contact@unifically.com](mailto:contact@unifically.com) to discuss custom pricing.
</Note>
