Model families
Create a free accountBrowse all models
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.
10 modelsOpenAI- & Anthropic-compatiblePay-as-you-go
| Model | Tier | Context | Price in / out (1M) | |
|---|---|---|---|---|
| Claude Haiku 4.5 | Paid | 200K | $0.30 / $1.80 | View |
| Claude Opus 4 | Paid | — | $2.25 / $11.25 | View |
| Claude Opus 4 1 | Paid | — | $2.25 / $11.25 | View |
| Claude Opus 4.5 | Paid | 200K | $0.80 / $4.00 | View |
| Claude Opus 4.6 | Paid | 200K | $2.50 / $12.50 | View |
| Claude Opus 4.7 | Paid | — | $0.80 / $4.00 | View |
| Claude Opus 4.8 | Paid | — | $4.00 / $20.00 | View |
| Claude Sonnet 4 20250514 | Paid | 200K | $0.45 / $2.25 | View |
| Claude Sonnet 4.5 | Paid | 200K | $0.40 / $2.00 | View |
| Claude Sonnet 4.6 | Paid | 200K | $1.00 / $5.00 | View |
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-haiku-4.5",
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-haiku-4.5"). 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 10 Claude models, including Claude Haiku 4.5, Claude Opus 4, Claude Opus 4 1. The catalog is refreshed as new models launch, so the list above is always current.