
claude-opus-5-5Claude Opus 5.5 是 Anthropic Claude 5.5 家族的第一款模型,2026 年 9 月 22 日发布。在 APIMODELS 上输入 $2.40、输出 $12.00 每 1M token,比 Anthropic 官方 $4 / $20 低 40%,缓存读 $0.12、缓存写 $3.00。Anthropic 自己的说法是:大多数工作上达到 Claude Fable 5.1 的水平,而典型负载的运行成本比 Opus 5 低 40%,定位是长时间运行的 agent 编码与知识工作。规格与 Fable 5.1 一致:100 万 token 上下文、128K 最大输出、文本与图像输入,知识截止 2026 年 6 月。自适应思考常开且不能关闭,思考深度用 effort 参数控制(默认 medium);从 Fable 5.1 延续下来的四个破坏性变更要留意:强制工具调用会报错、thinking 块绑定产生它的模型、旧的 computer_20251124 工具不再接受、工具调用之间的文本会放进 thinking 块里返回。通过 /v1/messages 或 OpenAI 兼容的 /v1/chat/completions 一把 key 调用,失败不收费。
View complete API reference with all parameters and examples.
Enable real-time streaming responses with Server-Sent Events.
{
"model": "claude-opus-5-5",
"stream": true,
"max_tokens": 1024,
"messages": [...]
}Enable Claude to use tools and call functions.
{
"model": "claude-opus-5-5",
"max_tokens": 1024,
"tools": [{
"name": "get_weather",
"description": "Get current weather for a location",
"input_schema": {
"type": "object",
"properties": {
"location": {"type": "string", "description": "City name"}
},
"required": ["location"]
}
}],
"tool_choice": {"type": "auto"},
"messages": [{"role": "user", "content": "What's the weather in Tokyo?"}]
}Analyze PDF documents by sending them as base64 encoded content.
{
"model": "claude-opus-5-5",
"max_tokens": 1024,
"messages": [{
"role": "user",
"content": [{
"type": "document",
"source": {
"type": "base64",
"media_type": "application/pdf",
"data": "<base64_encoded_pdf>"
}
}, {
"type": "text",
"text": "Summarize this document."
}]
}]
}Get structured JSON responses that match your schema.
{
"model": "claude-opus-5-5",
"max_tokens": 1024,
"output_format": {
"type": "json_schema",
"schema": {
"type": "object",
"properties": {
"name": {"type": "string"},
"age": {"type": "integer"}
},
"required": ["name", "age"]
}
},
"messages": [{"role": "user", "content": "Extract info: John is 30 years old"}]
}Enable Claude to search the web for up-to-date information.
{
"model": "claude-opus-5-5",
"max_tokens": 1024,
"tools": [{
"type": "web_search_20250305",
"name": "web_search",
"max_uses": 5
}],
"messages": [{"role": "user", "content": "What's the latest news about AI?"}]
}| Parameter | Type | Required | Description |
|---|---|---|---|
| model | string | Yes | Model identifier (e.g., claude-opus-5-5) |
| messages | array | Yes | Array of message objects with role and content |
| max_tokens | integer | Yes | Maximum tokens in the response (1 - 128000) |
| system | string | No | System prompt to set context |
| stream | boolean | No | Enable streaming responses (SSE) |
| temperature | number | No | Sampling temperature (0.0 - 1.0) |
| top_p | number | No | Nucleus sampling threshold (0.0 - 1.0) |
| top_k | integer | No | Top-k sampling (0 - infinity) |
| stop_sequences | array | No | Sequences that stop generation |
| tools | array | No | Function calling tools definition |
| tool_choice | object | No | Tool selection strategy (auto/any/tool) |
| thinking | object | No | Enable extended thinking mode |
| output_format | object | No | Structured output with JSON schema |
View complete API reference with streaming, thinking, and more.
Billing: Cost = (input_tokens * input_price + output_tokens * output_price) / 1,000,000
$2.40 / $12.00 每 1M token,Anthropic 官方 $4 / $20;缓存读 $0.12
Anthropic:大多数工作达到 Fable 5.1 水平,运行成本比 Opus 5 低 40%
与 Fable 5.1 同一规格;文本与图像输入;知识截止 2026 年 6 月
不能关闭,用 effort 控制深度(默认 medium);强制工具调用会报错
Claude Opus 5.5 是由 Anthropic 提供的大语言模型 API。Claude Opus 5.5 是 Anthropic Claude 5.5 家族的第一款模型,2026 年 9 月 22 日发布。在 APIMODELS 上输入 $2.40、输出 $12.00 每 1M token,比 Anthropic 官方 $4 / $20 低 40%,缓存读 $0.12、缓存写 $3.00。Anthropic 自己的说法是:大多数工作上达到 Claude Fable 5.1 的水平,而典型负载的运行成本比 Opus 5 低 40%,定位是长时间运行的 agent 编码与知识工作。规格与 Fable 5.1 一致:100 万 token 上下文、128K 最大输出、文本与图像输入,知识截止 2026 年 6 月。自适应思考常开且不能关闭,思考深度用 effort 参数控制(默认 medium);从 Fable 5.1 延续下来的四个破坏性变更要留意:强制工具调用会报错、thinking 块绑定产生它的模型、旧的 computer_20251124 工具不再接受、工具调用之间的文本会放进 thinking 块里返回。通过 /v1/messages 或 OpenAI 兼容的 /v1/chat/completions 一把 key 调用,失败不收费。 通过 APIMODELS 平台,您可以使用统一的 API 接口调用该模型,按量计费、价格透明。当前定价:Input: $2.40, Output: $12.00 per 1M tokens。
构建智能对话系统,自动回答用户问题,提升客户服务效率。
自动撰写文章、邮件、广告文案等文本内容,提高内容产出效率。
辅助代码编写、调试和代码审查,加速软件开发流程。
理解和分析非结构化数据,提取关键信息并生成报告摘要。
Claude Opus 5.5 通过 APIMODELS 平台调用,当前定价:Input: $2.40, Output: $12.00 per 1M tokens。按量计费,用多少付多少。
在 APIMODELS 注册账号并获取 API Key,然后通过我们的统一 API 端点调用即可。我们提供详细的 API 文档和 cURL、Python、Node.js 代码示例。
APIMODELS 通过聚合平台提供与官方相同的 Claude Opus 5.5 模型。我们提供统一的 API 接口,无需分别注册各平台账号,一个 API Key 即可调用所有模型。
输入 $2.40、输出 $12.00 每百万 token,缓存读 $0.12、缓存写 $3.00。Anthropic 官方是 $4 / $20、缓存读 $0.20,所以我们低 40%。按实际 token 扣费,失败的请求不收钱,也没有月费门槛。
Anthropic 自己的定位是:Opus 5.5 在大多数工作上达到 Fable 5.1 的水平,而典型负载的运行成本比 Opus 5 低 40%。在我们这里 Opus 5.5 是 $2.40 / $12.00,Opus 5 是 $3 / $15,Fable 5.1 是 $5 / $25 —— 除非你已经验证某个任务只有 Fable 5.1 做得对,否则从 Opus 5.5 开始是更划算的默认选择。规格三者一致:100 万上下文、128K 输出。
模型名改成 claude-opus-5-5 即可,但有四个破坏性变更:自适应思考常开、不能再关闭(用 effort 控制深度,默认 medium);强制工具调用(tool_choice 指定某个工具)会报错;thinking 块绑定产生它的模型,跨模型续对话不能带旧的 thinking 块;旧的 computer_20251124 工具不再接受。另外工具调用之间的文本会放进 thinking 块里返回,用它做进度提示的应用要设置 display。
两种都行:Anthropic 原生 POST https://api.apimodels.app/v1/messages,或 OpenAI 兼容的 /v1/chat/completions,model 填 claude-opus-5-5,Authorization: Bearer 你的 apimodels key。流式、工具调用、图片输入都支持;提示词缓存按 Anthropic 的 cache_control 用法,命中按 $0.12 计。
在 APIMODELS,Claude Opus 5.5 与 60+ 个模型共用一个 API Key、一个余额,所以选型只看合不合适,不存在锁定。它支持 40% Below Official、1M Context、Agentic Coding、Adaptive Thinking,你可以在价格和能力上把它和其它大语言模型模型对比,换模型只需改一个模型名字符串——无需新账号、无需重新对接。所有大语言模型模型与实时价格见 apimodels.app/models。
Claude Opus 5.5 支持:40% Below Official、1M Context、Agentic Coding、Adaptive Thinking。完整参数与调用方式见 APIMODELS 的 API 文档。
可以。APIMODELS 提供可直接访问的统一 API,一个 API Key 即可调用 Claude Opus 5.5,无需分别注册官方账号、也无需自行处理官方接口的网络访问。
我们支持 Stripe(Visa、Mastercard 等国际信用卡)和支付宝付款。充值后积分即时到账。