Anthropic · Claude Haiku 4.5

Claude Haiku 4.5 API, up to 55% less

Call Claude Haiku 4.5 through FrugalDev's prepaid, Anthropic-compatible gateway. The same frontier model, billed per token at 55% below the official list price — no subscription, $5 minimum, hard spend limits.

Per-token pricing

USD / 1M tokens
ModelInputOutputCache RCache WOfficial I/OSave
Claude Haiku 4.5$0.46$2.27$0.046$0.57$1 / $555%

Drop-in with the Anthropic SDK

Point the official Anthropic SDK at the FrugalDev base URL and pass your prepaid key. Change the model string to claude-haiku-4-5 — no other code changes.

import anthropic

client = anthropic.Anthropic(
    api_key="YOUR_FRUGALDEV_KEY",
    base_url="https://api-direct.apikey.cloud/proxy",
)
message = client.messages.create(
    model="claude-haiku-4-5",
    max_tokens=1024,
    messages=[{"role": "user", "content": "Hello!"}],
)
print(message.content[0].text)

Frequently asked questions

How much does the Claude Haiku 4.5 API cost on FrugalDev?

FrugalDev resells Claude Haiku 4.5 at 55% below the official list price, billed per token with no subscription. You load prepaid credit (from $5) and draw it down as you call the model.

Is this the real Claude Haiku 4.5 model?

Yes — it is the same frontier Claude Haiku 4.5 model, reached through our Anthropic-compatible gateway. Only the price and the base URL change.

Do I need to change my code to use Claude Haiku 4.5?

No. Point your existing Anthropic SDK at the FrugalDev base URL, pass your prepaid key, and set the model string. Nothing else changes.

Related