---
title: "GPT-5.6 Sol"
description: "Complex reasoning and agentic coding. API identifier gpt-5.6-sol, 262,144-token context window"
canonical: "https://inference.boundless.network/models/gpt-5.6-sol"
---

# GPT-5.6 Sol

Complex reasoning and agentic coding.

| | |
| --- | --- |
| API identifier | `gpt-5.6-sol` |
| Developer | OpenAI |
| Context window | 262,144 tokens |
| Supports | text, reasoning, tool-use |
| Status | Serving |

## Rates

US dollars per 1M tokens, on-demand tier.

| Input | Cached input | Output |
| --- | --- | --- |
| $2.00 | $0.20 | $10.00 |

## Call it

Put `gpt-5.6-sol` in the `model` field. The same request works against the Anthropic Messages API — see [API Compatibility](https://inference.boundless.network/docs/api-compatibility).

```bash
curl https://api.inference.boundless.network/v1/chat/completions \
  -H "Authorization: Bearer $BOUNDLESS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "gpt-5.6-sol",
    "messages": [{
      "content": "Say hello",
      "role": "user"
    }]
  }'
```

Every model we serve is listed at [Models](https://inference.boundless.network/models); the rate card in full is on [Pricing](https://inference.boundless.network/docs/pricing).
