Models / Claude Haiku 4.5 (2025-10-01)
Claude Haiku 4.5 (2025-10-01)
ProprietaryAnthropic Claude Haiku 4.5 (2025-10-01 snapshot).
anthropic/claude-haiku-4-5-20251001Context Window
200K
Max Output
33K
Released
2026-01
Capabilities
ChatToolsFunction CallingStreaming
Price
Prices shown are the official rate published by the model provider, before any platform discounts. Your actual rate may be lower based on your account's discount tier.
| Price | Latency p50 | Latency p95 | Status |
|---|---|---|---|
| $1.00 /M in · $5.00 /M out | 800ms | 3000ms |
Quick Start
Python
import magicrouter
mr = magicrouter.Client(api_key="mr-your-key")
response = mr.chat(
"anthropic/claude-haiku-4-5-20251001",
"Your prompt here"
)
print(response.choices[0].message.content)TypeScript
import { MagicRouter } from "magicrouter";
const mr = new MagicRouter({ apiKey: "mr-your-key" });
const response = await mr.chat({
model: "anthropic/claude-haiku-4-5-20251001",
messages: [{ role: "user", content: "Your prompt here" }]
});
console.log(response.choices[0].message.content);cURL
curl https://api.magicrouter.ai/v1/chat/completions \
-H "Authorization: Bearer mr-your-key" \
-H "Content-Type: application/json" \
-d '{
"model": "anthropic/claude-haiku-4-5-20251001",
"messages": [{"role": "user", "content": "Your prompt here"}]
}'