Model families
Create a free accountBrowse all models
MiniMax API
The MiniMax M-series models through one OpenAI-compatible endpoint. Compare the latest versions’ context, capabilities and pricing below.
11 modelsOpenAI- & Anthropic-compatiblePay-as-you-go
| Model | Tier | Context | Price in / out (1M) | |
|---|---|---|---|---|
| Abab5.5 Chat | Paid | — | $0.73 / $2.18 | View |
| MiniMax Hailuo 02 | Paid | — | $2.08 / $2.08 | View |
| MiniMax Hailuo 2.3 | Paid | — | $2.08 / $2.08 | View |
| MiniMax M2 | Paid | 205K | $0.27 / $1.10 | View |
| MiniMax M2.1 | Paid | — | $0.33 / $1.31 | View |
| MiniMax M2.1 Lightning | Paid | — | $0.27 / $2.19 | View |
| MiniMax M2.5 Lightning | Paid | — | $0.27 / $2.19 | View |
| MiniMax M2.7 | Paid | — | $0.30 / $1.20 | View |
| MiniMax M2.7 Highspeed | Paid | — | $0.55 / $2.19 | View |
| MiniMax M3 | Paid | — | $0.30 / $1.26 | View |
| MiniMax Voice Design | Paid | — | $29.28 / $2.08 | View |
Call MiniMax 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="abab5.5-chat",
messages=[{"role": "user", "content": "Hello!"}],
)
print(resp.choices[0].message.content)Frequently asked questions
- How do I use MiniMax models through Api.Airforce?
- Point any OpenAI-compatible client at https://api.airforce/v1 and set the model id (for example "abab5.5-chat"). 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 MiniMax models free?
- MiniMax 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 MiniMax 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 MiniMax models are available?
- Currently 11 MiniMax models, including Abab5.5 Chat, MiniMax Hailuo 02, MiniMax Hailuo 2.3. The catalog is refreshed as new models launch, so the list above is always current.