What Does Claude Haiku 4 Cost?

Claude Haiku 4 pricing: $0.80/$4.00 per 1M tokens (input/output). Context window: 200K. Best for classification, extraction, high-volume tasks.

Pricing Overview

MetricValue
Input price (per 1M tokens)$0.80
Output price (per 1M tokens)$4.00
Context window200K tokens
Speed (typical)150 tok/s
ProviderAnthropic

Cost for Common Tasks

TaskInput TokensOutput TokensCost
1-page summary~800~400$0.0022
10K token conversation~8,000~2,000$0.0144
Batch of 1,000 API calls~500K~500K$2.4000

Claude Haiku 4 vs Alternatives

ModelInput (per 1M)Output (per 1M)ContextSpeedQuality
Claude Haiku 4$0.80$4.00200K150 tok/s78/100
GPT-4o Mini$0.15$0.60128K130 tok/s75/100
DeepSeek V3$0.27$1.10128K60 tok/s82/100
Gemini 2.0 Flash$0.07$0.301M200 tok/s73/100

When to Use Claude Haiku 4

API Code Example with Cost Calculation

import anthropic

client = anthropic.Anthropic()

response = client.messages.create(
    model="claude-haiku-4-20260301",
    max_tokens=1024,
    messages=[{"role": "user", "content": "Summarize this document..."}]
)

# Cost calculation
input_tokens = response.usage.input_tokens
output_tokens = response.usage.output_tokens
cost = (input_tokens / 1_000_000) * 0.8 + (output_tokens / 1_000_000) * 4
print(f"Tokens: {input_tokens} in / {output_tokens} out")
print(f"Cost: {cost:.6f}")
# Typical 1-page summary: ~$0.0022

Monthly Cost Estimates

Usage LevelDaily Tokens (in/out)Monthly Cost
Light (personal project)50K / 25K$4.20
Medium (small SaaS)500K / 250K$42.00
Heavy (production app)5M / 2.5M$420.00

FAQ

How much does Claude Haiku 4 cost per API call?

A typical Claude Haiku 4 API call with 1K input and 500 output tokens costs approximately $0.0028. Pricing is $0.80 per 1M input tokens and $4.00 per 1M output tokens.

Is Claude Haiku 4 worth the price?

Claude Haiku 4 scores approximately 78/100 on aggregate benchmarks. It is best suited for classification, extraction, high-volume tasks. At $0.80/$4.00 per 1M tokens, it offers competitive value for its quality tier.

What are cheaper alternatives to Claude Haiku 4?

Top alternatives: GPT-4o Mini at $0.15/$0.60, DeepSeek V3 at $0.27/$1.10, Gemini 2.0 Flash at $0.07/$0.30. Use KickLLM's calculator to compare costs for your specific workload.

Prices last verified: April 2026. Pricing may change — always check provider websites for current rates.

Calculate your LLM API costs with KickLLM — free, no sign-up required.