The top of the Claude lineup: maximum reasoning depth, long-horizon agentic coding, and a 1M-token context. Reach for Fable 5 when correctness and capability matter more than cost.
Every rate is 50% of the provider's official list price. USD per million tokens.
| Token type | List price | Tokenless |
|---|---|---|
| Input | $10.00 | $5.00 |
| Output | $50.00 | $25.00 |
| Cache write | $12.50 | $6.25 |
| Cache read | $1.00 | $0.50 |
Tokenless speaks the OpenAI Chat Completions format. Point your client at the base URL, set model to fable-5, and you are done.
curl https://api.tokenless.store/api/v1/chat/completions \
-H "Authorization: Bearer $TOKENLESS_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "fable-5",
"messages": [{ "role": "user", "content": "Hello" }]
}'