XiaomiPaidOperational
Mimo V2.5 Pro
API model name: mimo-v2.5-pro
Mimo V2.5 Pro is Xiaomi's chat model, served on the Api.Airforce unified API. It is priced at $0.80 per million input tokens and $2.40 per million output tokens. That is below the provider's $1.00 official input rate. Access it through the OpenAI-compatible API with one key, alongside 100+ other models on Api.Airforce.
Pricing
Api.Airforce price vs. the provider's official rate.
Specifications
- Provider
- Xiaomi
- Type
- chat model
Benchmarks
Independent evaluations and measured speed from Artificial Analysis.
Intelligence Index
35.6/100
Coding Index
36.8/100
GPQA Diamond76%
Humanity's Last Exam13%
Output speed45.0 tok/s
Time to first token2.78 s
Source: Benchmark data by Artificial Analysis (artificialanalysis.ai)
What is Mimo V2.5 Pro used for?
- Chatbots & assistants — conversational AI, drafting, summarizing and Q&A.
Mimo V2.5 Pro vs. similar models
| Model | Intelligence | Context | Input / 1M | Output / 1M |
|---|---|---|---|---|
| Mimo V2.5 Pro | 35.6 | — | $0.80 | $2.40 |
| Mimo V2.5 | 49.0 | — | $0.35 | $1.85 |
| Qwen Turbo | — | — | $0.06 | $0.12 |
| Qwen3 | — | — | $0.06 | $0.27 |
Prices are Api.Airforce pay-as-you-go rates per 1M tokens. Context is the maximum input length.
Related models
Mimo V2.5Xiaomi · $0.35 / 1MQwen TurboAlibaba · $0.06 / 1MQwen3Alibaba · $0.06 / 1MQwen3 0.6bAlibaba · $0.06 / 1MQwen3 1.7bAlibaba · $0.06 / 1MQwen3 14bAlibaba · $0.21 / 1MQwen3 235b A22bAlibaba · $0.42 / 1MQwen3 30b A3bAlibaba · $0.15 / 1MQwen3 32bAlibaba · $0.42 / 1MQwen3 4bAlibaba · $0.06 / 1MQwen3 8bAlibaba · $0.12 / 1MQwen3 CoderAlibaba · $1.29 / 1M
Mimo V2.5 Pro — frequently asked questions
- How much does Mimo V2.5 Pro cost?
- Mimo V2.5 Pro is billed pay-as-you-go at $0.80 per 1M input tokens and $2.40 per 1M output tokens. There is no subscription — you only pay for what you use.
- What can Mimo V2.5 Pro do?
- Mimo V2.5 Pro is Xiaomi's chat model, accessible through the Api.Airforce API.
- Is Mimo V2.5 Pro free to use?
- Mimo V2.5 Pro is a paid, pay-as-you-go model — no subscription, you are only charged for usage.
- How do I use Mimo V2.5 Pro via the API?
- Mimo V2.5 Pro is OpenAI-compatible. Point any OpenAI SDK at https://api.airforce/v1 and pass the model ID mimo-v2.5-pro with your Api.Airforce API key.
- Who makes Mimo V2.5 Pro?
- Mimo V2.5 Pro is Xiaomi's chat model, served through the unified Api.Airforce gateway alongside 100+ other models.
Loading live metrics…
Loading live metrics…
Loading live metrics…
Use Mimo V2.5 Pro via the API
OpenAI-compatible — point any OpenAI SDK at https://api.airforce/v1 and pass mimo-v2.5-pro as the model.
cURL
curl https://api.airforce/v1/chat/completions \
-H "Authorization: Bearer $AIRFORCE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "mimo-v2.5-pro",
"messages": [{ "role": "user", "content": "Hello!" }]
}'Python
from openai import OpenAI
client = OpenAI(base_url="https://api.airforce/v1", api_key="$AIRFORCE_API_KEY")
r = client.chat.completions.create(
model="mimo-v2.5-pro",
messages=[{"role": "user", "content": "Hello!"}],
)
print(r.choices[0].message.content)JavaScript
import OpenAI from "openai";
const client = new OpenAI({ baseURL: "https://api.airforce/v1", apiKey: process.env.AIRFORCE_API_KEY });
const r = await client.chat.completions.create({
model: "mimo-v2.5-pro",
messages: [{ role: "user", content: "Hello!" }],
});
console.log(r.choices[0].message.content);