MiMo V2.5 Pro
by xiaomi · family mimo
Facts
| Release date | 2026-04-23 |
|---|---|
| Retired date | — |
| Knowledge cutoff | — |
| Context (max) | 1,048,576 |
| Max output | — |
| Modalities | text → text |
| Aliases | — |
| Open weights | yes (XiaomiMiMo/MiMo-V2.5-Pro) |
| Description | 1.02T/42B-active MoE agentic flagship, 1M context; GDPVal-AA #1 open-source; ultraspeed FP4 variant >1000 tok/s early access. |
Unknown values are shown as —.
Intelligence Index v4.1.1: 43 · reasoning · Source: Artificial Analysis (accessed 2026-08-20)
Offerings
| Provider | Wire ID | Variant | Endpoint | Protocol | Status | Price (USD / Mtok) | Reasoning |
|---|---|---|---|---|---|---|---|
| OpenCode Go | mimo-v2.5-pro | pro | go-chat-completions | openai-chat | ga | — | adaptive · default on · returns reasoning_content · round-trips reasoning_content |
| OpenRouter | xiaomi/mimo-v2.5-pro | pro | chat-completions | openai-chat | ga | 0.43 / 0.87 | effort · default on · returns reasoning_content · round-trips reasoning_content |
| Xiaomi MiMo | mimo-v2.5-pro | pro | chat-completions | openai-chat | ga | 0.43 / 0.87 | adaptive · default on · returns reasoning_content · round-trips reasoning_content |
Reasoning controls
OpenCode Go· mimo-v2.5-pro· go-chat-completions adaptive
adaptive · default on · returns reasoning_content · round-trips reasoning_content
OpenRouter· xiaomi/mimo-v2.5-pro· chat-completions effort
reasoning.effort nonelowmedium●highxhighmax
effort · default on · returns reasoning_content · round-trips reasoning_content
Xiaomi MiMo· mimo-v2.5-pro· chat-completions adaptive
adaptive · default on · returns reasoning_content · round-trips reasoning_content
Example requests
OpenCode Go · openai-chat · mimo-v2.5-pro
curl 'https://opencode.ai/zen/go/v1/chat/completions' \
-H 'Authorization: Bearer <YOUR_API_KEY>' \
-H 'Content-Type: application/json' \
-d '{
"model": "mimo-v2.5-pro",
"messages": [
{
"role": "user",
"content": "Tell me about the weather."
}
]
}'Python (requests)
import requests
resp = requests.post(
"https://opencode.ai/zen/go/v1/chat/completions",
headers={
"Authorization": "Bearer <YOUR_API_KEY>",
"Content-Type": "application/json"
},
json={
"model": "mimo-v2.5-pro",
"messages": [
{
"role": "user",
"content": "Tell me about the weather."
}
]
},
)
print(resp.json())TypeScript (fetch)
const resp = await fetch("https://opencode.ai/zen/go/v1/chat/completions", {
method: "POST",
headers: {
"Authorization": "Bearer <YOUR_API_KEY>",
"Content-Type": "application/json"
},
body: JSON.stringify({
"model": "mimo-v2.5-pro",
"messages": [
{
"role": "user",
"content": "Tell me about the weather."
}
]
}),
})
console.log(await resp.json())- ⚠ Responses include
reasoning_contentartifacts — pass them back unmodified on subsequent turns (dropping them triggers 400s or quality loss).
OpenRouter · openai-chat · xiaomi/mimo-v2.5-pro
curl 'https://openrouter.ai/api/v1/chat/completions' \
-H 'Authorization: Bearer <YOUR_API_KEY>' \
-H 'Content-Type: application/json' \
-d '{
"model": "xiaomi/mimo-v2.5-pro",
"messages": [
{
"role": "user",
"content": "Tell me about the weather."
}
],
"reasoning": {
"effort": "medium"
}
}'Python (requests)
import requests
resp = requests.post(
"https://openrouter.ai/api/v1/chat/completions",
headers={
"Authorization": "Bearer <YOUR_API_KEY>",
"Content-Type": "application/json"
},
json={
"model": "xiaomi/mimo-v2.5-pro",
"messages": [
{
"role": "user",
"content": "Tell me about the weather."
}
],
"reasoning": {
"effort": "medium"
}
},
)
print(resp.json())TypeScript (fetch)
const resp = await fetch("https://openrouter.ai/api/v1/chat/completions", {
method: "POST",
headers: {
"Authorization": "Bearer <YOUR_API_KEY>",
"Content-Type": "application/json"
},
body: JSON.stringify({
"model": "xiaomi/mimo-v2.5-pro",
"messages": [
{
"role": "user",
"content": "Tell me about the weather."
}
],
"reasoning": {
"effort": "medium"
}
}),
})
console.log(await resp.json())- ⚠ Responses include
reasoning_contentartifacts — pass them back unmodified on subsequent turns (dropping them triggers 400s or quality loss).
Xiaomi MiMo · openai-chat · mimo-v2.5-pro
curl 'https://api.xiaomimimo.com/v1/chat/completions' \
-H 'Authorization: Bearer <YOUR_API_KEY>' \
-H 'Content-Type: application/json' \
-d '{
"model": "mimo-v2.5-pro",
"messages": [
{
"role": "user",
"content": "Tell me about the weather."
}
]
}'Python (requests)
import requests
resp = requests.post(
"https://api.xiaomimimo.com/v1/chat/completions",
headers={
"Authorization": "Bearer <YOUR_API_KEY>",
"Content-Type": "application/json"
},
json={
"model": "mimo-v2.5-pro",
"messages": [
{
"role": "user",
"content": "Tell me about the weather."
}
]
},
)
print(resp.json())TypeScript (fetch)
const resp = await fetch("https://api.xiaomimimo.com/v1/chat/completions", {
method: "POST",
headers: {
"Authorization": "Bearer <YOUR_API_KEY>",
"Content-Type": "application/json"
},
body: JSON.stringify({
"model": "mimo-v2.5-pro",
"messages": [
{
"role": "user",
"content": "Tell me about the weather."
}
]
}),
})
console.log(await resp.json())- ⚠ Responses include
reasoning_contentartifacts — pass them back unmodified on subsequent turns (dropping them triggers 400s or quality loss).