Claude Fable 5.1 Economy


Claude Fable 5.1 is Anthropic's upgraded flagship frontier model engineered for high-complexity software development, long-horizon agentic workflows, and multi-step knowledge work. Built on Mythos-tier reasoning, Fable 5.1 significantly enhances autonomous self-verification and root-cause troubleshooting while reducing safety false-positive interventions by up to 60%. Powered by an optimized prompt-caching architecture featuring a 75% reduction in cache-read pricing, it cuts total operating costs by 25% to 45% for highly agentic tasks.

Claude Fable 5.1 Economy

Claude Fable 5.1 is Anthropic's upgraded flagship frontier model engineered for high-complexity software development, long-horizon agentic workflows, and multi-step knowledge work. Built on Mythos-tier reasoning, Fable 5.1 significantly enhances autonomous self-verification and root-cause troubleshooting while reducing safety false-positive interventions by up to 60%. Powered by an optimized prompt-caching architecture featuring a 75% reduction in cache-read pricing, it cuts total operating costs by 25% to 45% for highly agentic tasks.

Base URL

https://api.icreat.ai/llm/anthropic

Authentication

All API requests must be authenticated with an API Key. You can obtain an API Key from the console.

export ICREAT_API_KEY="your-api-key-here"

HTTP Request Headers

import os

API_KEY = os.environ.get("ICREAT_API_KEY")
headers = {
    "Content-Type": "application/json",
    "Authorization": "Bearer " + API_KEY,
}

Protect your API Key

Never expose your API Key in client-side code or public repositories. Use environment variables or a backend proxy.

Code Examples

This model is invoked via the Anthropic-compatible Messages API, supporting streaming and non-streaming modes.

POST/v1/messages

Input Schema

Total: 4 Required: 2 Optional: 2

modelstringrequired

Model ID. Must be iCreat model_code (claude-fable-5-1).

messagesarray[object]required

Conversation messages.

max_tokensinteger

Maximum tokens to generate.

streamboolean

Whether to stream the response.

Output Schema

Anthropic Messages compatible response.

Total: 4

idstring

Message ID.

typestring

Object type, always message.

rolestring

Role, always assistant.

contentarray[object]

Content blocks from the model.

LLM-friendly prompt

Below is an LLM-friendly Markdown prompt you can copy into Cursor, ChatGPT, or other AI assistants to help them understand this model's API integration, call flow, and key parameters.

# claude-fable-5-1

> Claude Fable 5.1 is Anthropic's upgraded flagship frontier model engineered for high-complexity software development, long-horizon agentic workflows, and multi-step knowledge work.

## Overview

Call via iCreat Anthropic-compatible Messages API; supports streaming and non-streaming.

## API Info

- **Base URL**: `https://api.icreat.ai/llm/anthropic`
- **Endpoint (POST)**: `/v1/messages`
- **Model ID**: `claude-fable-5-1`
- **Auth**: `Authorization: Bearer ${ICREAT_API_KEY}`

## Call Flow

Single POST; `stream: false` returns full JSON, `stream: true` streams via SSE.

### Input

- `model` (required): iCreat model_code `claude-fable-5-1`
- `messages` (required): conversation messages
- Common optional: `max_tokens`, `stream`

### Output

- Read reply from `content` text blocks (e.g. `content[0].text`)

## Notes

- `model` must be the iCreat model_code
- Other fields follow the Anthropic Messages protocol