Anthropic

Claude 3.5 Haiku

200K ctxText Tools

Released Oct 22, 2024 · 44B tokens this week · 3 providers

Overview

A small, cheap Claude from 2024 for quick classification and short-form generation. Fast enough for inline UI features and cheap enough for overnight bulk jobs. Text-only, with solid instruction-following for its size.

marketingtranslationagents

Providers

Reference data — not yet measured from live traffic

PROVIDERMAX OUTOUTPUT /MQUANT
AnthropicCheapest
200K8K$0.80$4.00239ms14599.90%Full
Amazon Bedrock
200K8K$0.85$4.24520ms12099.65%Full
Google Vertex AI
200K8K$0.85$4.24500ms12499.60%Full

Latency p50 reflects a provider’s API endpoint responsiveness — the round-trip to its API, not per-token inference time. These figures, with throughput and uptime, are reference data until the gateway aggregates its own traffic.

Price comparison

Blended $ per 1M tokens

Claude 3.5 Haiku$3.20
GPT-5.2$10.94

Blended rate per 1M tokens, weighted one part prompt to three parts completion — roughly the shape of a chat workload. Your mix will move the number.

Call it

OpenAI-compatible — swap the base URL and go

curl https://model.cards/api/v1/chat/completions \
  -H "Authorization: Bearer $MODELCARDS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "anthropic/claude-3.5-haiku",
    "messages": [
      { "role": "user", "content": "Summarize the tradeoffs of speculative decoding." }
    ]
  }'