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

# Claude Opus 5.5

> Claude Opus 系列模型，面向长程代理式编程和知识工作。

Claude Opus 系列模型，面向长程代理式编程和知识工作。

## 模型信息

| 字段           | 说明                |
| ------------ | ----------------- |
| `model`      | claude-opus-5-5   |
| `context`    | 1M tokens         |
| `max output` | 128K tokens       |
| `endpoint`   | POST /v1/messages |

上下文和输出长度为模型规格；实际请求限制、可用性与计费取决于 MixRoute 路由。

## 能力与使用

* 支持文本和图像输入，返回文本或工具调用内容块。
* 始终启用自适应思考。通过 output\_config.effort 调节强度，默认为 medium；不要设置 thinking.type=disabled 或旧版 budget\_tokens。

## 请求示例

调用前设置 `MIXROUTE_API_KEY`。

```bash theme={null}
curl --request POST "https://api.mixroute.ai/v1/messages" \
  --header "Authorization: Bearer $MIXROUTE_API_KEY" \
  --header "Content-Type: application/json" \
  --header "anthropic-version: 2023-06-01" \
  --data '{
  "model": "claude-opus-5-5",
  "max_tokens": 1024,
  "messages": [
    {
      "role": "user",
      "content": "Explain the tradeoffs of database indexes."
    }
  ]
}'
```

## 请求字段

| 字段           | 说明                        |
| ------------ | ------------------------- |
| `model`      | 必填，使用上方完整模型 ID。           |
| `messages`   | 必填，会话消息包含 role 和 content。 |
| `max_tokens` | 必填，输出 token 预算。           |

完整请求格式见[接口说明](/cn/api-reference/endpoint/messages)。
