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.
7 models1 free at $0OpenAI- & Anthropic-compatiblePay-as-you-go
| Model | Tier | Context | Price in / out (1M) | |
|---|---|---|---|---|
| Minimax Hailuo 02 | Paid | — | $3.42 / $3.42 | View |
| Minimax Hailuo 2.3 | Paid | — | $3.42 / $3.42 | View |
| Minimax M2 | Paid | 197K | $0.45 / $1.80 | View |
| Minimax M2.1 | Paid | — | $0.45 / $1.80 | View |
| Minimax M2.5 | Free | 246K | $1.50 / $1.50 | View |
| Minimax M2.7 | Paid | — | $0.45 / $1.80 | View |
| Minimax M3 | Paid | — | $0.45 / $1.80 | 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="minimax-m2",
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 "minimax-m2"). 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 MiniMax models free?
- Yes — 1 of the 7 MiniMax models is on the free tier and callable at $0 (for example Minimax M2.5). A free account needs no credit card; the remaining models are pay-as-you-go.
- 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 7 MiniMax models, including Minimax Hailuo 02, Minimax Hailuo 2.3, Minimax M2. The catalog is refreshed as new models launch, so the list above is always current.