
claude-fable-5Claude Fable 5 is Anthropic's latest and most capable publicly available model — and on APIMODELS it costs about 50% less than official Anthropic pricing ($5 input / $25 output per 1M tokens). Ultra-long context, multimodal (vision) understanding, complex reasoning and enterprise-grade knowledge work, with strict safety safeguards. Use it through the Anthropic Messages API (/v1/messages) — the native path for Claude Code, the Anthropic SDK, and Anthropic-compatible clients like Cursor — with native tool use (function calling). Request params match Claude Opus 4.8.
About half the official Anthropic price
Handles very large inputs end to end
Text + image (vision) comprehension
Strong multi-step reasoning and analysis
View complete API reference with all parameters and examples.
Enable real-time streaming responses with Server-Sent Events.
{
"model": "claude-fable-5",
"stream": true,
"max_tokens": 1024,
"messages": [...]
}Enable Claude to use tools and call functions.
{
"model": "claude-fable-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-fable-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-fable-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-fable-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-fable-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 Fable 5 — это API категории «языковая модель» от Anthropic. Claude Fable 5 is Anthropic's latest and most capable publicly available model — and on APIMODELS it costs about 50% less than official Anthropic pricing ($5 input / $25 output per 1M tokens). Ultra-long context, multimodal (vision) understanding, complex reasoning and enterprise-grade knowledge work, with strict safety safeguards. Use it through the Anthropic Messages API (/v1/messages) — the native path for Claude Code, the Anthropic SDK, and Anthropic-compatible clients like Cursor — with native tool use (function calling). Request params match Claude Opus 4.8. Через платформу APIMODELS доступ к этой модели идёт по единому API с прозрачной оплатой по факту использования. Текущая цена: Input: $5, Output: $25 per 1M tokens.
Build intelligent conversational systems to automatically answer user queries and improve service efficiency.
Automatically write articles, emails, ad copy, and other text content to boost productivity.
Assist with code writing, debugging, and code review to accelerate software development.
Understand and analyze unstructured data, extract key insights, and generate summary reports.
Claude Fable 5 доступна через APIMODELS по цене: Input: $5, Output: $25 per 1M tokens. Оплата идёт по факту использования — вы платите только за то, что сгенерировали.
Зарегистрируйтесь на APIMODELS, получите API-ключ и обращайтесь к нашему единому эндпоинту. Есть подробная документация с примерами на cURL, Python и Node.js.
APIMODELS отдаёт ту же самую модель Claude Fable 5 через свою агрегирующую платформу. Мы предоставляем единый интерфейс API, поэтому отдельные аккаунты у каждого поставщика не нужны — один ключ открывает доступ ко всем моделям.
Claude Fable 5 — новейшая и самая мощная публично доступная LLM от Anthropic: сверхдлинный контекст, мультимодальное (визуальное) понимание, сложные рассуждения и работа со знаниями корпоративного уровня, при строгих механизмах безопасности. Лучше всего подходит для задач с длинными документами и изображениями, сложных многошаговых рассуждений, агентного программирования и качественной работы со знаниями. На apimodels.app тарифицируется по $5 за вход и $25 за выход за миллион токенов — примерно вдвое дешевле официальной цены.
Да — Fable 5 поддерживает нативный вызов инструментов через Anthropic Messages API (/v1/messages), тот же формат, что использует Claude Code и Anthropic SDK. Укажите ANTHROPIC_BASE_URL как https://api.apimodels.app/v1, модель claude-fable-5, и используйте свой ключ apimodels (см. /docs/claude-code). Совместимые с Anthropic API клиенты вроде Cursor тоже работают, если настроить их на кастомную Anthropic-модель. Инструменты передаются в формате Anthropic ({name, input_schema}); параметры запроса идентичны Claude Opus 4.8.
Вызывайте через Anthropic Messages API (/v1/messages) — модель нативно поддерживает вызов инструментов (tool_use) и приём изображений (vision), точно так же, как работают Claude Code и Anthropic SDK. Параметры запроса идентичны Claude Opus 4.8 — достаточно указать модель claude-fable-5.
$5 за вход / $25 за выход за миллион токенов — примерно вдвое дешевле официальной цены Anthropic (~50% экономии). Поддерживается и кэширование промптов: токены, прочитанные из кэша, тарифицируются по $0.5/млн — значительно ниже цены входа — а запись в кэш стоит $9/млн. Отлично подходит для долгих сессий с большим количеством повторяющегося контекста.
Fable 5 — новейший флагман Anthropic: самый мощный в целом, с улучшенной мультимодальностью, по $5/$25 на apimodels.app (примерно вдвое дешевле официальной цены). Opus 4.8 — более устоявшаяся модель, дешевле за токен ($3/$13), и по-прежнему отлично подходит для долгих агентных задач. Берите claude-fable-5 ради новейших и максимальных возможностей, claude-opus-4-8 ради более низкой цены за токен — оба доступны через один API-ключ, так что можно распределять задачи между ними.
В APIMODELS Claude Fable 5 соседствует более чем с 60 моделями под одним API-ключом и общим балансом, поэтому выбор — это вопрос соответствия задаче, а не привязки к поставщику. Модель поддерживает Ultra-Long Context, Multimodal, Complex Reasoning, ~50% Cheaper; вы можете сравнить её по цене и возможностям с другими моделями категории «языковая модель» и переключиться, изменив одну строку с именем модели — без нового аккаунта и без переписывания интеграции. Все варианты категории «языковая модель» с актуальными ценами — на apimodels.app/models.
Claude Fable 5 поддерживает: Ultra-Long Context, Multimodal, Complex Reasoning, ~50% Cheaper. Полный список параметров и примеры вызовов — в документации APIMODELS.
Да. APIMODELS отдаёт Claude Fable 5 через единый API и один ключ — отдельные аккаунты у каждого поставщика не нужны, и вам не приходится самостоятельно решать вопросы регионального сетевого доступа к каждому из них.
Принимаем Stripe (Visa, Mastercard и другие международные карты) и Alipay. Баланс становится доступен сразу после оплаты.