Models
Claude Haiku 4.5
Model id: anthropic/claude-haiku-4-5
- Agentic
- Cost
- Fast
- Vision
Anthropic’s fast, economical Claude Haiku tier with strong near-frontier intelligence.
Best for
real-time apps, high-volume processing, and cost-sensitive sub-agents.
- Provider
- Anthropic
- Context window
- 200,000
- Release date
- 2025-10-15
Pricing
Input
$1.5432 / 1M
Output
$7.716 / 1M
Cached input
$0.1543 / 1M
Cache write
$1.929 / 1M
Cache write (1h)
$3.0864 / 1M
Web search
Per successful search
$0.0154 / search
Billed on top of tokens when the model uses web search.
Amounts in Canadian dollars, converted at the Bank of Canada indicative rate (2026-07-31).
Performance
Reading
Last 7 days
Not enough data to display the chart.
Activity
Tokens
—
—
—
—
—
Top 5 tools · last 7 days
Not enough data to display tool activity.
Availability
Availability (%)
Last 7 days
- Operational probes
- 99.85% over 7 days
- Samples
- 8,615
Quick start
Call the API with a tonia_ key and the exact model id below.
curl
curl https://pass.tonia.ca:8443/v1/chat/completions \
-H "Authorization: Bearer $TONIA_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "anthropic/claude-haiku-4-5",
"messages": [{"role":"user","content":"Bonjour"}]
}'Python (OpenAI SDK)
import os
from openai import OpenAI
client = OpenAI(
base_url="https://pass.tonia.ca:8443/v1",
api_key=os.environ["TONIA_API_KEY"],
)
response = client.chat.completions.create(
model="anthropic/claude-haiku-4-5",
messages=[{"role": "user", "content": "Bonjour"}],
)TypeScript (OpenAI SDK)
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://pass.tonia.ca:8443/v1",
apiKey: process.env.TONIA_API_KEY,
});
const response = await client.chat.completions.create({
model: "anthropic/claude-haiku-4-5",
messages: [{ role: "user", content: "Bonjour" }],
});With the Anthropic API (/v1/messages), Claude models are used without the anthropic/ prefix.