AnthropicText / LLM

claude-fable-5-1

Anthropic flagship text model — great for chat, code, tool calling and agent workflows.

Capabilities

  • Text
  • Vision
  • Reasoning

Call it (OpenAI-compatible)

Point base_url at WanAPIs and keep your existing OpenAI SDK.

cURL
curl https://api.wanapis.com/v1/chat/completions \
  -H "Authorization: Bearer $WANAPIS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "claude-fable-5-1",
    "messages": [{"role": "user", "content": "Hello"}]
  }'
Python
from openai import OpenAI

client = OpenAI(
    api_key="$WANAPIS_API_KEY",
    base_url="https://api.wanapis.com/v1",
)

resp = client.chat.completions.create(
    model="claude-fable-5-1",
    messages=[{"role": "user", "content": "Hello"}],
)
print(resp.choices[0].message.content)

More Anthropic models

Integrate claude-fable-5-1 in minutes

Sign up for free trial credit and go live by changing one base_url line.