Anthropic model on Crazyrouter

Use the Claude Haiku 4.5 API with one key and pay-as-you-go pricing

Claude Haiku 4.5 is available on Crazyrouter through the OpenAI-compatible endpoint and the native Anthropic Messages protocol. Switch models without changing your integration, and see every request in one billing view.

Anthropic nativeFastLow cost
Model ID
claude-haiku-4-5
Provider
Anthropic
Endpoint
/v1/chat/completions
Task
chat
Context window
200K tokens
Input modalities
Text, image
Output modalities
Text
Release date
2025-11-01

What is Claude Haiku 4.5?

Claude Haiku 4.5 is a Claude Haiku model from Anthropic for chat, reasoning, coding and agent workflows. It was released on 2025-11-01. On Crazyrouter it runs behind the same API key and billing account as 300+ other models, so you can benchmark it against alternatives and route traffic without new credentials.

Drop-in OpenAI compatibility

Works with the OpenAI SDKs, LangChain, Cursor, Cline and any tool that accepts a custom base URL.

Streaming and tool use

Server-sent events, function calling and JSON output behave the way the upstream model documents them.

Live, discounted pricing

Rates on this page come straight from the billing table and already include the Crazyrouter discount.

One account for every model

Compare against Claude, GPT, Gemini, DeepSeek and more without juggling vendor accounts.

Claude Haiku 4.5 API quickstart

Point your OpenAI SDK at https://crazyrouter.com/v1 and set the model to claude-haiku-4-5. If your client speaks Anthropic Messages natively, use the second example instead.

cURL
curl https://crazyrouter.com/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $CRAZYROUTER_API_KEY" \
  -d '{
    "model": "claude-haiku-4-5",
    "messages": [{"role": "user", "content": "Explain the tradeoffs of this architecture decision."}],
    "stream": true
  }'
Show OpenAI-compatible migration example
cURL
curl https://crazyrouter.com/v1/messages \
  -H "Content-Type: application/json" \
  -H "x-api-key: $CRAZYROUTER_API_KEY" \
  -H "anthropic-version: 2023-06-01" \
  -d '{
    "model": "claude-haiku-4-5",
    "max_tokens": 2048,
    "messages": [{"role": "user", "content": "Explain the tradeoffs of this architecture decision."}],
    "stream": true
  }'

Best use cases

Coding assistants and agent loops with tool calls
Long-document analysis, summarisation and extraction
Customer-facing chat with streaming responses
Evaluation and A/B tests across model vendors
Batch classification, tagging and structured extraction
Technical writing, design docs and code review

Works with developer tools

OpenAI SDKs

Set base_url to https://crazyrouter.com/v1 and model to claude-haiku-4-5.

Cursor, Cline, Continue

Add Crazyrouter as a custom OpenAI-compatible provider and pick the model from the list.

LangChain / LlamaIndex

Use the OpenAI chat model class with the Crazyrouter base URL.

Claude Code / Codex CLI

Follow the Crazyrouter deployment guides to point either CLI at your key.

Claude Haiku 4.5 FAQ

What base URL do I use for Claude Haiku 4.5?

https://crazyrouter.com/v1. Chat completions go to /v1/chat/completions; native Anthropic Messages requests use their usual path.

How is usage billed?

Per token, at the input/output rates shown on this page. Your balance is debited per request; there is no subscription.

Does it support streaming and function calling?

Yes. Set stream: true and pass tools as you would with the upstream API. Behaviour follows the upstream model.

Can I switch to another model later?

Change the model string. The same key works for every model in the Crazyrouter catalogue.

Where do I see the current price?

The pricing page lists live rates for every model, including group discounts if you are logged in.