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.
12 modelsOpenAI- & Anthropic-compatiblePay-as-you-go
| Model | Tier | Context | Price in / out (1M) | |
|---|---|---|---|---|
| Claude Fable 5 | Paid | — | $7.00 / $35.00 | View |
| Claude Haiku 4.5 | Paid | 200K | $0.50 / $2.50 | View |
| Claude Opus 4 | Paid | — | $0.84 / $4.14 | View |
| Claude Opus 4.1 | Paid | — | $0.84 / $4.14 | View |
| Claude Opus 4.5 | Paid | 200K | $2.50 / $12.50 | View |
| Claude Opus 4.6 | Paid | 200K | $2.50 / $12.50 | View |
| Claude Opus 4.7 | Paid | — | $2.50 / $12.50 | View |
| Claude Opus 4.8 | Paid | — | $4.00 / $20.00 | View |
| Claude Sonnet 4 | Paid | 200K | $0.18 / $0.84 | View |
| Claude Sonnet 4.5 | Paid | 200K | $1.50 / $7.50 | View |
| Claude Sonnet 4.6 | Paid | 200K | $1.50 / $7.50 | View |
| Claude Sonnet 5 | Paid | — | $1.59 / $7.97 | 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-fable-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-fable-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 12 Claude models, including Claude Fable 5, Claude Haiku 4.5, Claude Opus 4. The catalog is refreshed as new models launch, so the list above is always current.