
claude-fable-5Claude Fable 5 is Anthropic's latest and most capable publicly available model — and on API Models 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 is a Large Language Model API provided by Anthropic. Anthropic의 최신이자 가장 강력한 공개 LLM으로, 공식 대비 약 50% 저렴합니다. Anthropic API를 통해 Claude Code 및 Cursor에서 사용할 수 있습니다. 초장문 컨텍스트, 멀티모달, 복잡한 추론, 엄격한 안전성. Through API Models platform, you can access this model via a unified API with transparent pay-as-you-go pricing. Current pricing: 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 is available through API Models at: Input: $5, Output: $25 per 1M tokens. Billing is pay-as-you-go — you only pay for what you generate.
Sign up at API Models, get your API key, and call our unified API endpoint. We provide detailed API documentation with code examples in cURL, Python, and Node.js.
API Models offers the same Claude Fable 5 model through our aggregation platform. We provide a unified API interface so you do not need separate accounts for each provider - one API key to access all models.
Claude Fable 5는 Anthropic이 공개한 최신이자 가장 강력한 LLM으로, 초장문 컨텍스트, 멀티모달(비전) 이해, 복잡한 추론, 엔터프라이즈급 지식 작업을 지원하며 엄격한 안전 장치를 갖추고 있습니다. 장문 문서·이미지 작업, 복잡한 다단계 추론, 에이전트형 코딩, 고품질 지식 작업에 가장 적합합니다. apimodels.app에서는 입력 $5 / 출력 $25(1M 토큰당)로 과금되며, 이는 공식 가격의 약 절반 수준입니다.
네. Fable 5는 Anthropic Messages API(/v1/messages)를 통해 네이티브 도구 사용(tool_use)을 지원하며, 이는 Claude Code와 Anthropic SDK가 사용하는 형식입니다. ANTHROPIC_BASE_URL을 https://apimodels.app/api/v1로 지정하고, 모델을 claude-fable-5로 설정한 뒤 apimodels API Key를 사용하면 됩니다(자세한 내용은 /docs/claude-code 참고). Cursor처럼 Anthropic API와 호환되는 클라이언트도 '커스텀 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(1M 토큰당)로, Anthropic 공식 가격의 약 절반(약 50% 저렴) 수준입니다. 프롬프트 캐싱도 지원합니다. 캐시 읽기(히트) 토큰은 $0.5/M로 입력 단가보다 훨씬 저렴하며, 캐시 쓰기는 $9/M입니다. 반복되는 컨텍스트가 많은 긴 세션에 특히 유용합니다.
Fable 5는 Anthropic의 최신 플래그십으로, 종합 성능이 가장 뛰어나고 멀티모달도 더 우수하며, apimodels.app에서 $5/$25(공식 가격의 약 절반)입니다. Opus 4.8은 더 안정적으로 자리 잡았고 토큰당 단가도 저렴하며($3/$13) 장기 에이전트 작업에서도 여전히 훌륭합니다. 최신·최고 성능을 원하면 claude-fable-5를, 더 낮은 토큰 단가를 원하면 claude-opus-4-8을 선택하세요. 둘은 하나의 API Key를 공유하므로 작업에 따라 라우팅할 수 있습니다.
On API Models, Claude Fable 5 runs alongside 60+ models on one API key and one balance, so choosing is about fit, not lock-in. It supports Ultra-Long Context、Multimodal、Complex Reasoning、~50% Cheaper, and you can weigh it on price and capability against other Large Language Model models, then switch by changing a single model-name string — no new account or integration. Browse every Large Language Model option with live pricing at apimodels.app/models.
Claude Fable 5 supports: Ultra-Long Context、Multimodal、Complex Reasoning、~50% Cheaper. See the API Models docs for full parameters and call examples.
Yes. API Models exposes Claude Fable 5 through a single unified API and one key — no separate provider accounts, and no need to handle each provider's regional network access yourself.
We support Stripe (Visa, Mastercard, and other international cards) and Alipay. Credits are available instantly after payment.