
claude-opus-5Claude Opus 5 is Anthropic's newest Opus-tier model — a step change over Opus 4.8 on deep reasoning, agentic coding and long-horizon work — and on APIMODELS it costs $3 input / $15 output per 1M tokens against $5 / $25 official. 1M-token context, adaptive thinking on by default, and native tool use (function calling). Call it through the Anthropic Messages API (/v1/messages) for Claude Code, the Anthropic SDK and Cursor, or through /v1/chat/completions with the OpenAI SDK — tools work on both. Note that Opus 5 removed the temperature, top_p and top_k parameters upstream; send them and they are dropped rather than rejected, so steer behaviour through prompting instead.
View complete API reference with all parameters and examples.
Enable real-time streaming responses with Server-Sent Events.
{
"model": "claude-opus-5",
"stream": true,
"max_tokens": 1024,
"messages": [...]
}Enable Claude to use tools and call functions.
{
"model": "claude-opus-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",
"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",
"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",
"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) |
| 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
$3 / $15 per 1M tokens against $5 / $25 official
Strongest tier for multi-file features and long refactors
On by default — no thinking budget to tune
Prompt-cache hits bill at $0.25 per 1M tokens
Claude Opus 5 — это API категории «языковая модель» от Anthropic. Claude Opus 5 is Anthropic's newest Opus-tier model — a step change over Opus 4.8 on deep reasoning, agentic coding and long-horizon work — and on APIMODELS it costs $3 input / $15 output per 1M tokens against $5 / $25 official. 1M-token context, adaptive thinking on by default, and native tool use (function calling). Call it through the Anthropic Messages API (/v1/messages) for Claude Code, the Anthropic SDK and Cursor, or through /v1/chat/completions with the OpenAI SDK — tools work on both. Note that Opus 5 removed the temperature, top_p and top_k parameters upstream; send them and they are dropped rather than rejected, so steer behaviour through prompting instead. Через платформу APIMODELS доступ к этой модели идёт по единому API с прозрачной оплатой по факту использования. Текущая цена: Input: $3, Output: $15 per 1M tokens.
Диалоговые системы, которые сами отвечают на вопросы пользователей и разгружают поддержку.
Статьи, письма, рекламные тексты и прочее — пишутся автоматически и экономят часы работы.
Писать код, искать ошибки и проводить ревью — разработка идёт быстрее.
Разбирать неструктурированные данные, вытаскивать главное и собирать сводные отчёты.
Claude Opus 5 доступна через APIMODELS по цене: Input: $3, Output: $15 per 1M tokens. Оплата идёт по факту использования — вы платите только за то, что сгенерировали.
Зарегистрируйтесь на APIMODELS, получите API-ключ и обращайтесь к нашему единому эндпоинту. Есть подробная документация с примерами на cURL, Python и Node.js.
APIMODELS отдаёт ту же самую модель Claude Opus 5 через свою агрегирующую платформу. Мы предоставляем единый интерфейс API, поэтому отдельные аккаунты у каждого поставщика не нужны — один ключ открывает доступ ко всем моделям.
В APIMODELS Claude Opus 5 соседствует более чем с 60 моделями под одним API-ключом и общим балансом, поэтому выбор — это вопрос соответствия задаче, а не привязки к поставщику. Модель поддерживает 1M Context, Agentic Coding, Adaptive Thinking, 40% Cheaper; вы можете сравнить её по цене и возможностям с другими моделями категории «языковая модель» и переключиться, изменив одну строку с именем модели — без нового аккаунта и без переписывания интеграции. Все варианты категории «языковая модель» с актуальными ценами — на apimodels.app/models.
Claude Opus 5 поддерживает: 1M Context, Agentic Coding, Adaptive Thinking, 40% Cheaper. Полный список параметров и примеры вызовов — в документации APIMODELS.
Да. APIMODELS отдаёт Claude Opus 5 через единый API и один ключ — отдельные аккаунты у каждого поставщика не нужны, и вам не приходится самостоятельно решать вопросы регионального сетевого доступа к каждому из них.
Принимаем Stripe (Visa, Mastercard и другие международные карты) и Alipay. Баланс становится доступен сразу после оплаты.
How to get access, regional availability, and how this model compares with its alternatives.