inference-providers

MiMo V2.5 Pro

by xiaomi · family mimo

Facts

Release date2026-04-23
Retired date
Knowledge cutoff
Context (max)1,048,576
Max output
Modalitiestext → text
Aliases
Open weightsyes (XiaomiMiMo/MiMo-V2.5-Pro)
Description1.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

ProviderWire IDVariantEndpointProtocolStatusPrice (USD / Mtok)Reasoning
OpenCode Gomimo-v2.5-proprogo-chat-completionsopenai-chatgaadaptive · default on · returns reasoning_content · round-trips reasoning_content
OpenRouterxiaomi/mimo-v2.5-proprochat-completionsopenai-chatga0.43 / 0.87effort · default on · returns reasoning_content · round-trips reasoning_content
Xiaomi MiMomimo-v2.5-proprochat-completionsopenai-chatga0.43 / 0.87adaptive · 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_content artifacts — 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_content artifacts — 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_content artifacts — pass them back unmodified on subsequent turns (dropping them triggers 400s or quality loss).