LLM Reference
Anthropic

Claude 3 Haiku on Anthropic

Claude 3 · Anthropic

Serverless

Last refreshed 2026-05-19. Next refresh: weekly.

Why use Claude 3 Haiku on Anthropic?

Anthropic offers Claude 3 Haiku with pay-as-you-go pricing at $0.25/1M input tokens. Anthropic is a safety-focused AI research company and creator of the Claude model family, offering API access through the Anthropic Console for text generation, analysis, and coding tasks.

Compare Claude 3 Haiku across 7 providers to find the best fit for your use case
Input / 1M
$0.25
Output / 1M
$1.25
Cache
read $0.025 / 5m $0.30 / 1h $0.50
Batch
-50% · in $0.125 / out $0.625

Setup recipe

Python + curl
Install
pip install anthropic
Auth
export ANTHROPIC_API_KEY=...
Call
import anthropic
client = anthropic.Anthropic()  # reads ANTHROPIC_API_KEY from env
message = client.messages.create(
    model="claude-3-haiku",
Model ID
claude-3-haiku

Request example

import anthropic

client = anthropic.Anthropic()  # reads ANTHROPIC_API_KEY from env
message = client.messages.create(
    model="claude-3-haiku",
    max_tokens=1024,
    messages=[{"role": "user", "content": "Hello"}]
)
print(message.content[0].text)

Gotchas

  • Use the versioned model ID, e.g. "claude-sonnet-4-6" or "claude-opus-4-7-20251101".
  • The examples expect ANTHROPIC_API_KEY; rename it only if your application config maps the new variable.

Compare Claude 3 Haiku Across Providers

ProviderInput (per 1M)Output (per 1M)
AWS Bedrock$0.25$1.25
GCP Vertex AI$0.25$1.25
Salesforce Einstein Generative AI
Anthropic$0.25$1.25
OpenRouter$0.25$1.25
View all 7 providers →

Pricing

TypePrice (per 1M)
Input tokens$0.25
Output tokens$1.25

Capabilities

VisionMultimodalReasoningStructured OutputsCode Execution

About Claude 3 Haiku

Claude 3 Haiku is Anthropic's Claude 3 model with multimodal text and image input and an optional reasoning mode. It is deprecated (originally released 2024-03-04); use it only for reproducing earlier results or evaluating drift over time.

FAQ

What does Claude 3 Haiku cost on Anthropic?

On Anthropic, Claude 3 Haiku costs $0.25 per 1M input tokens and $1.25 per 1M output tokens.

What is the context window for Claude 3 Haiku on Anthropic?

Claude 3 Haiku supports a 200,000 token context window on Anthropic.

How does Anthropic compare to other Claude 3 Haiku providers?

Claude 3 Haiku is available from 7 providers. The cheapest input pricing is $0.25/1M tokens from AWS Bedrock.

Who created Claude 3 Haiku?

Claude 3 Haiku was created by Anthropic as part of the Claude 3 model family.

Is Claude 3 Haiku open source?

Claude 3 Haiku's open source status is unknown in the seed data.

Get Started