Anthropic's fastest model with near-frontier intelligence. Optimized for high-throughput, low-latency applications requiring quick responses at minimal cost. Supports extended thinking.
200K tokens
2
available
Cheapest
Amazon Bedrock
$4.80/1M tokens
Fastest
Anthropic
626ms TTFT
Amazon Bedrock, Anthropic
Sorted by total cost (input + output per 1M tokens). Click a row to view provider details.
| Provider | Pricing (per 1M) | Rate Limits | Regions | Health | Latency |
|---|---|---|---|---|---|
In: $0.80Out: $4.00 | 200 RPM / 400K TPM | us-east-1us-west-2eu-west-1ap-southeast-1 | Healthy | 0ms | |
In: $1.00Out: $5.00 | 200 RPM / 400K TPM | us-east-1eu-west-1 | Healthy | 626ms |
Use this model via Amazon Bedrock with an OpenAI-compatible SDK.
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.amazon-bedrock.com/v1",
apiKey: process.env.AMAZON_BEDROCK_API_KEY,
});
const response = await client.chat.completions.create({
model: "anthropic.claude-haiku-4-5-20250401-v1:0",
messages: [
{ role: "user", content: "Hello!" }
],
});
console.log(response.choices[0].message.content);Using Amazon Bedrock API • OpenAI-compatible SDK