Model families
Create a free accountBrowse all models
Kimi API
Moonshot’s Kimi family, including the K2 long-context and turbo variants, through one unified API. Compare versions and pricing, then call any of them with the same key.
13 models1 free at $0OpenAI- & Anthropic-compatiblePay-as-you-go
| Model | Tier | Context | Price in / out (1M) | |
|---|---|---|---|---|
| Kimi K2 | Paid | 131K | $0.87 / $3.42 | View |
| Kimi K2 0711 | Paid | — | $0.87 / $3.42 | View |
| Kimi K2 Turbo | Paid | — | $3.42 / $13.65 | View |
| Kimi K2.5 | Paid | 262K | $0.58 / $2.95 | View |
| Kimi K2.6 | Paid | — | $0.55 / $2.00 | View |
| Kimi K2.6 Thinking | Free | 262K | $0.15 / $0.15 | View |
| Kimi K2.7 Code | Paid | — | $0.55 / $2.00 | View |
| Moonshot V1 128k | Paid | — | $4.26 / $12.78 | View |
| Moonshot V1 128k Vision | Paid | — | $4.26 / $12.78 | View |
| Moonshot V1 32k | Paid | — | $2.13 / $8.52 | View |
| Moonshot V1 32k Vision | Paid | — | $2.13 / $8.52 | View |
| Moonshot V1 8k | Paid | — | $0.84 / $4.26 | View |
| Moonshot V1 8k Vision | Paid | — | $0.84 / $4.26 | View |
Call Kimi 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="kimi-k2",
messages=[{"role": "user", "content": "Hello!"}],
)
print(resp.choices[0].message.content)Frequently asked questions
- How do I use Kimi models through Api.Airforce?
- Point any OpenAI-compatible client at https://api.airforce/v1 and set the model id (for example "kimi-k2"). 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 any Kimi models free?
- Yes — 1 of the 13 Kimi models is on the free tier and callable at $0 (for example Kimi K2.6 Thinking). A free account needs no credit card; the remaining models are pay-as-you-go.
- How much do Kimi 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 Kimi models are available?
- Currently 13 Kimi models, including Kimi K2, Kimi K2 0711, Kimi K2 Turbo. The catalog is refreshed as new models launch, so the list above is always current.