
claude-sonnet-5Claude Sonnet 5 是 Anthropic 最新的 Sonnet 模型,默认且最大都是 100 万 token 上下文窗口(没有更小的上下文变体)、最大 128K 输出 token、自适应思维,工具与平台功能与 Claude Sonnet 4.6 相同,唯一例外是不支持优先级(Priority Tier)。在 API Models 上仅 $1 输入 / $4.5 输出(每百万 token),并支持提示词缓存(缓存命中 $0.1/M)。通过 Anthropic Messages API(/v1/messages)提供原生工具调用,Claude Code、Anthropic SDK 及 Cursor 等 Anthropic 兼容客户端可直接接入,请求参数与 Opus 4.8 一致。
Default and maximum — no smaller variant
Extended reasoning when the task needs it
Long, complete responses in one call
Native tool use via the Anthropic Messages API
View complete API reference with all parameters and examples.
Enable real-time streaming responses with Server-Sent Events.
{
"model": "claude-sonnet-5",
"stream": true,
"max_tokens": 1024,
"messages": [...]
}Enable Claude to use tools and call functions.
{
"model": "claude-sonnet-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-sonnet-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-sonnet-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-sonnet-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-sonnet-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
Claude Sonnet 5 是由 Anthropic 提供的大语言模型 API。Claude Sonnet 5 是 Anthropic 最新的 Sonnet 模型,默认且最大都是 100 万 token 上下文窗口(没有更小的上下文变体)、最大 128K 输出 token、自适应思维,工具与平台功能与 Claude Sonnet 4.6 相同,唯一例外是不支持优先级(Priority Tier)。在 API Models 上仅 $1 输入 / $4.5 输出(每百万 token),并支持提示词缓存(缓存命中 $0.1/M)。通过 Anthropic Messages API(/v1/messages)提供原生工具调用,Claude Code、Anthropic SDK 及 Cursor 等 Anthropic 兼容客户端可直接接入,请求参数与 Opus 4.8 一致。 通过 API Models 平台,您可以使用统一的 API 接口调用该模型,按量计费、价格透明。当前定价:Input: $1, Output: $4.5 per 1M tokens。
构建智能对话系统,自动回答用户问题,提升客户服务效率。
自动撰写文章、邮件、广告文案等文本内容,提高内容产出效率。
辅助代码编写、调试和代码审查,加速软件开发流程。
理解和分析非结构化数据,提取关键信息并生成报告摘要。
Claude Sonnet 5 通过 API Models 平台调用,当前定价:Input: $1, Output: $4.5 per 1M tokens。按量计费,用多少付多少。
在 API Models 注册账号并获取 API Key,然后通过我们的统一 API 端点调用即可。我们提供详细的 API 文档和 cURL、Python、Node.js 代码示例。
API Models 通过聚合平台提供与官方相同的 Claude Sonnet 5 模型。我们提供统一的 API 接口,无需分别注册各平台账号,一个 API Key 即可调用所有模型。
Claude Sonnet 5 是 Anthropic 最新的 Sonnet 模型:默认且最大都是 100 万 token 上下文(没有更小的上下文变体)、最大 128K 输出 token、自适应思维,工具与平台功能与 Claude Sonnet 4.6 相同——唯一例外是不支持优先级(Priority Tier)。在 apimodels.app 上仅 $1 输入 / $4.5 输出(每 1M token),兼顾能力与低价。
支持工具调用(function calling)。Sonnet 5 通过 Anthropic Messages API(/v1/messages)提供原生 tool_use——这正是 Claude Code 与 Anthropic SDK 的调用方式:把 ANTHROPIC_BASE_URL 指向 https://apimodels.app/api/v1、模型设为 claude-sonnet-5、填入 apimodels API Key 即可(详见 /docs/claude-code)。Cursor 等支持 Anthropic API 的客户端,按"自定义 Anthropic 模型"接入同样可用。工具需用 Anthropic 格式({name, input_schema}),请求参数与 Claude Opus 4.8 完全一致。
输入 $1 / 输出 $4.5(每 1M token)。支持提示词缓存:缓存命中(读取)按 $0.1/M 计费,仅为输入价的十分之一;缓存写入按 $2/M。100 万 token 长上下文 + 缓存,特别适合长文档、长会话与 agentic 编码。
Sonnet 5 是最新 Sonnet,100 万上下文 + 自适应思维,$1/$4.5,质价比最佳,适合绝大多数编码/对话/长文任务;Sonnet 4.6 是上一代 Sonnet;Opus 4.8($3/$13)用于最难的长程 agentic 推理。想要最新、最省又够强选 claude-sonnet-5——三者共用一个 API Key,可按任务随时切换。
在 API Models,Claude Sonnet 5 与 60+ 个模型共用一个 API Key、一个余额,所以选型只看合不合适,不存在锁定。它支持 1M Context、Adaptive Thinking、128K Output、Tool Calling,你可以在价格和能力上把它和其它大语言模型模型对比,换模型只需改一个模型名字符串——无需新账号、无需重新对接。所有大语言模型模型与实时价格见 apimodels.app/models。
Claude Sonnet 5 支持:1M Context、Adaptive Thinking、128K Output、Tool Calling。完整参数与调用方式见 API Models 的 API 文档。
可以。API Models 提供可直接访问的统一 API,一个 API Key 即可调用 Claude Sonnet 5,无需分别注册官方账号、也无需自行处理官方接口的网络访问。
我们支持 Stripe(Visa、Mastercard 等国际信用卡)和支付宝付款。充值后积分即时到账。