Model families

Claude API

Anthropic’s Claude family — Opus, Sonnet and Haiku — through one OpenAI- and Anthropic-compatible endpoint. Compare context windows, per-token pricing and capabilities, then call any version with the same API key.

19 modelsOpenAI- & Anthropic-compatiblePay-as-you-go
ModelTierContextPrice in / out (1M)
Claude 3 HaikuPaid200K$0.21 / $1.08View
Claude 3 OpusPaid$9.50 / $47.50View
Claude 3.5 HaikuPaid$0.47 / $2.34View
Claude 3.5 SonnetPaid200K$3.15 / $15.75View
Claude 3.5 SonnetPaid200K$3.15 / $15.75View
Claude 3.7 SonnetPaid200K$3.15 / $15.75View
Claude Fable 5Paid$7.00 / $35.00View
Claude Haiku 4.5Paid200K$0.89 / $4.42View
Claude Opus 4Paid$15.00 / $82.50View
Claude Opus 4.1Paid200K$15.00 / $75.00View
Claude Opus 4.5Paid200K$5.00 / $25.00View
Claude Opus 4.6Paid$2.50 / $12.50View
Claude Opus 4.7Paid1M$2.50 / $12.50View
Claude Opus 4.8Paid1M$2.50 / $12.50View
Claude Opus 5Paid1M$3.58 / $17.88View
Claude Sonnet 4Paid200K$3.15 / $15.75View
Claude Sonnet 4.5Paid$1.50 / $7.50View
Claude Sonnet 4.6Paid1M$1.50 / $7.50View
Claude Sonnet 5Paid1M$1.59 / $7.97View

Call Claude in three lines

Same code as the OpenAI SDK — change the base URL and key, pick a model id:

from openai import OpenAI

client = OpenAI(
    base_url="https://api.airforce/v1",
    api_key="YOUR_KEY",
)

resp = client.chat.completions.create(
    model="claude-3-haiku",
    messages=[{"role": "user", "content": "Hello!"}],
)
print(resp.choices[0].message.content)

Frequently asked questions

How do I use Claude models through Api.Airforce?
Point any OpenAI-compatible client at https://api.airforce/v1 and set the model id (for example "claude-3-haiku"). Your existing OpenAI SDK works unchanged — you only swap the base URL and API key. The same key also speaks the Anthropic Messages API.
Are Claude models free?
Claude models are premium — you add credits (a monthly plan or a pay-as-you-go top-up) to call them. A free account can still use the open free-tier models from other families at $0.
How much do Claude models cost on Api.Airforce?
Billing is pay-as-you-go per token, at rates that sit well below the official APIs. The exact per-model input and output prices are listed in the table above and update automatically as upstream prices change.
Which Claude models are available?
Currently 19 Claude models, including Claude 3 Haiku, Claude 3 Opus, Claude 3.5 Haiku. The catalog is refreshed as new models launch, so the list above is always current.
Create a free accountBrowse all models