Model familiesCreate 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.
102 modelsOpenAI- & Anthropic-compatiblePay-as-you-go
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="qvq-max-latest",
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 "qvq-max-latest"). 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 102 Qwen models, including Qvq Max Latest, Qvq Plus, Qwen Coder Plus. The catalog is refreshed as new models launch, so the list above is always current.