← Back to model catalog
ClaudeLiveModel Card ↗

Claude Haiku 4.5

Provider
Proprietary models
Context
200,000 tokens
Pricing
$1.00 / 1M input · $5.00 / 1M output
APAC regions
Singapore, Jakarta, Malaysia, Thailand, Tokyo, Seoul, Taiwan, Mumbai, Sydney, New Zealand
Residency
in-region
Task
Chat
APAC performance

Latency profile

Proprietary route performance (from Singapore)

ap-southeast-1: TTFT p50 59ms · E2E latency p50 83ms

ap-southeast-2: TTFT p50 71ms · E2E latency p50 98ms

Measured from Brightnode's Singapore infrastructure. Your latency may vary based on your origin.

Pricing

Input: $1.00 per 1M tokens

Output: $5.00 per 1M tokens

Billing: Per-token, charged against wallet balance

View full pricing and calculator →
Capabilities

Fast Claude tier for lightweight chat and extraction workloads when low latency and low cost are priorities.

Best for: Low-latency chat, Classification, Extraction pipelines

Quickstart code snippets
Python
from openai import OpenAI

client = OpenAI(
    base_url="https://api.brightnode.cloud/v1",
    api_key="YOUR_BRIGHTNODE_API_KEY",
)

response = client.chat.completions.create(
    model="anthropic/claude-haiku-4-5",
    messages=[{"role": "user", "content": "Hello from APAC"}],
)
Node
import OpenAI from "openai";

const client = new OpenAI({
  baseURL: "https://api.brightnode.cloud/v1",
  apiKey: process.env.BRIGHTNODE_API_KEY,
});

const response = await client.chat.completions.create({
  model: "anthropic/claude-haiku-4-5",
  messages: [{ role: "user", content: "Hello from APAC" }],
});
Other models on Brightnode