Model families
Create a free accountBrowse all models
Qwen API
Alibaba’s Qwen family — Max, Plus, the Qwen3 line and the coder variants — behind one OpenAI-compatible endpoint, with several models callable at $0.
26 modelsOpenAI- & Anthropic-compatiblePay-as-you-go
| Model | Tier | Context | Price in / out (1M) | |
|---|---|---|---|---|
| Qwen Max | Paid | — | $0.51 / $2.07 | View |
| Qwen Plus | Paid | — | $0.18 / $0.42 | View |
| Qwen Turbo | Paid | — | $0.06 / $0.12 | View |
| Qwen3 | Paid | — | $0.06 / $0.27 | View |
| Qwen3 0.6b | Paid | — | $0.06 / $0.27 | View |
| Qwen3 1.7b | Paid | — | $0.06 / $0.27 | View |
| Qwen3 14b | Paid | — | $0.21 / $0.87 | View |
| Qwen3 235b A22b | Paid | — | $0.42 / $1.71 | View |
| Qwen3 30b A3b | Paid | — | $0.15 / $0.63 | View |
| Qwen3 32b | Paid | — | $0.42 / $1.71 | View |
| Qwen3 4b | Paid | — | $0.06 / $0.27 | View |
| Qwen3 8b | Paid | — | $0.12 / $0.42 | View |
| Qwen3 Coder | Paid | — | $1.29 / $5.13 | View |
| Qwen3 Coder 30b A3b | Paid | — | $0.33 / $1.29 | View |
| Qwen3 Coder 480b A35b | Paid | — | $2.22 / $8.88 | View |
| Qwen3 Max | Paid | — | $0.54 / $2.13 | View |
| Qwen3 Next 80b A3b | Paid | — | $0.21 / $0.87 | View |
| Qwen3 Vl | Paid | — | $0.21 / $2.13 | View |
| Qwen3 Vl 235b A22b | Paid | — | $0.42 / $1.71 | View |
| Qwen3 Vl 30b A3b | Paid | — | $0.15 / $0.63 | View |
| Qwen3 Vl 32b | Paid | — | $0.42 / $1.71 | View |
| Qwen3 Vl 8b | Paid | — | $0.12 / $0.42 | View |
| Qwen3.5 | Paid | — | $0.12 / $1.02 | View |
| Qwen3.5 397b A17b | Paid | — | $0.27 / $1.53 | View |
| Qwen3.6 35b A3b | Paid | — | $0.39 / $2.31 | View |
| Qwen3.7 | Paid | — | $2.58 / $7.71 | View |
Call Qwen 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="qwen-max",
messages=[{"role": "user", "content": "Hello!"}],
)
print(resp.choices[0].message.content)Frequently asked questions
- How do I use Qwen models through Api.Airforce?
- Point any OpenAI-compatible client at https://api.airforce/v1 and set the model id (for example "qwen-max"). 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 Qwen models free?
- Qwen 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 Qwen 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 Qwen models are available?
- Currently 26 Qwen models, including Qwen Max, Qwen Plus, Qwen Turbo. The catalog is refreshed as new models launch, so the list above is always current.