Claude 3 Haiku

Anthropic chatvisiontool_use Long

API ID: anthropic/claude-3-haiku

Input Price
$0.25
/1M tokens
Output Price
$1.25
/1M tokens

About Claude 3 Haiku

Claude 3 Haiku is Anthropic's fastest and most affordable model, engineered for high-volume applications requiring instant responses. As the speed-optimized member of the Claude 3 family, Haiku delivers impressive capability at remarkably low latency—often responding in under a second. The model features a 200K context window and supports vision inputs, enabling multimodal applications at scale. Claude 3 Haiku excels at real-time chat, content moderation, data extraction, and any scenario where response speed directly impacts user experience. Despite its focus on efficiency, Haiku maintains strong performance on reasoning and coding tasks, outperforming many larger models from previous generations. The model is particularly valuable for customer-facing applications, interactive assistants, and high-throughput processing pipelines. With pricing among the lowest in the premium AI market, Claude 3 Haiku enables cost-effective deployment at scale. For developers building responsive AI experiences where every millisecond matters, Haiku offers the best combination of speed, capability, and affordability in Anthropic's lineup.

💰
Price Ranking
#775 lowest price among 950 Chat models

Model Specifications

Context Length
200k
Max Output
4k
Release Date
2024-03-13
Capabilities
chat vision tool_use
Input Modalities
textimage
Output Modalities
text

Best For

  • Image analysis, document understanding, visual Q&A
  • Conversations, content writing, general assistance

💰 Real-World Cost Examples

Estimated monthly costs for common use cases

Personal AI Assistant
$0.49
/month
50 conversations/day, ~500 tokens each
Customer Service Bot
$15.00
/month
1000 tickets/day, ~800 tokens each

Anthropic Model Lineup

Compare all models from Anthropic to find the best fit

Model Input Output Context Capabilities
Claude 3 Haiku Current Free Free 200k chat vision tool_use
Claude 3.5 Haiku (2024-10-22) Free Free 200k chat vision
Claude 3.5 Sonnet (2024-06-20) Free Free 200k chat vision
Claude 3.5 Sonnet (2024-06-20) Free Free 200k chat vision
Claude 3 Sonnet Free Free 200k chat vision
Claude 3 Sonnet Free Free 200k chat vision

Similar Models from Other Providers

Cross-brand alternatives with similar capabilities

MiniMax MiniMax M2-her
Input: $0.30
Output: $1.20
Context: 66k
DeepSeek DeepSeek V3
Input: $0.30
Output: $1.20
Context: 164k
DeepSeek R1 Distill Llama 70B
Input: $0.70
Output: $0.80
Context: 131k
Other DeepSeek R1T Chimera
Input: $0.30
Output: $1.20
Context: 164k

🚀 Quick Start

Get started with Claude 3 Haiku API

Anthropic Python SDK
import anthropic

client = anthropic.Anthropic()

message = client.messages.create(
    model="anthropic/claude-3-haiku",
    max_tokens=1024,
    messages=[
        {"role": "user", "content": "Hello!"}
    ]
)
print(message.content[0].text)