Claude Haiku 4.5

Anthropic chatvisionreasoningtool_use Long

API ID: anthropic/claude-4.5-haiku-20251001

Input Price
$1.00
/1M tokens
Output Price
$5.00
/1M tokens

About Claude Haiku 4.5

Claude Haiku 4.5 is Anthropic's fastest model in the Claude 4 generation, engineered for applications demanding instant responses. The model delivers impressive capability at remarkably low latency, often responding in under a second. Claude Haiku 4.5 features a substantial context window and supports vision inputs for multimodal applications. It excels at real-time chat, content moderation, data extraction, and high-throughput processing. Despite its focus on speed, Haiku maintains strong performance on reasoning and coding tasks. For developers building responsive AI experiences where every millisecond matters, Claude Haiku 4.5 offers the best combination of speed, capability, and affordability in Anthropic's lineup.

💰
Price Ranking
#870 lowest price among 950 Chat models

Model Specifications

Context Length
200k
Max Output
64k
Release Date
2025-10-15
Capabilities
chat vision reasoning tool_use
Input Modalities
imagetext
Output Modalities
text

Best For

  • Complex reasoning, math problems, multi-step logic
  • Image analysis, document understanding, visual Q&A
  • Conversations, content writing, general assistance

Consider Alternatives For

  • Simple Q&A (cheaper models available)

💰 Real-World Cost Examples

Estimated monthly costs for common use cases

Personal AI Assistant
$1.95
/month
50 conversations/day, ~500 tokens each
Customer Service Bot
$60.00
/month
1000 tickets/day, ~800 tokens each
Data Analysis Pipeline
$82.50
/month
500 analyses/day, ~2k tokens each

Anthropic Model Lineup

Compare all models from Anthropic to find the best fit

Model Input Output Context Capabilities
Claude Haiku 4.5 Current Free Free 200k chat vision reasoning 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

Other Llama 3.1 70B Hanami x1
Input: $3.00
Output: $3.00
Context: 16k
OpenAI o3 Mini
Input: $1.10
Output: $4.40
Context: 200k
OpenAI o4 Mini High
Input: $1.10
Output: $4.40
Context: 200k
OpenAI o4 Mini
Input: $1.10
Output: $4.40
Context: 200k

🚀 Quick Start

Get started with Claude Haiku 4.5 API

Anthropic Python SDK
import anthropic

client = anthropic.Anthropic()

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