MiMo V2.6 Pro API

xiaomi/mimo-v2.6-pro
Xiaomi MiMo-V2.6-Pro is Xiaomi’s flagship omni-modal reasoning model, built for complex projects, long-horizon tasks, cybersecurity, and research.
Context
1.0M tokens
Input
$0.598299 / 1M tokens
Output
$1.196598 / 1M tokens
Released
Sep 21, 2026

How to use MiMo V2.6 Pro API

Install any OpenAI-compatible SDK, point it at api.aimlapi.com/v1, and set the model to xiaomi/mimo-v2.6-pro.
import requests

r = requests.post(
    "https://api.aimlapi.com/v1/chat/completions",
    headers={"Authorization": "Bearer " + AIMLAPI_KEY},
    json={
      "model": "xiaomi/mimo-v2.6-pro",
      "messages": [
        {
          "role": "user",
          "content": "Hello!"
        }
      ]
    },
)
print(r.json())
const r = await fetch("https://api.aimlapi.com/v1/chat/completions", {
  method: "POST",
  headers: {
    Authorization: `Bearer ${process.env.AIMLAPI_KEY}`,
    "Content-Type": "application/json",
  },
  body: JSON.stringify({
    "model": "xiaomi/mimo-v2.6-pro",
    "messages": [
      {
        "role": "user",
        "content": "Hello!"
      }
    ]
  }),
});
console.log(await r.json());
curl -X POST https://api.aimlapi.com/v1/chat/completions \
  -H "Authorization: Bearer $AIMLAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model":"xiaomi/mimo-v2.6-pro","messages":[{"role":"user","content":"Hello!"}]}'

OpenAI-compatible — swap the base URL and it works with your existing SDK.

MiMo V2.6 Pro API Pricing

TypePrice
Input
$0.598299 / 1M tokens
Output
$1.196598 / 1M tokens
Cached input
$0.0049514 / 1M tokens

Cached input is billed at roughly a hundredth of the fresh-input rate, which matters for agent loops that re-send the same long prefix every turn.

MiMo V2.6 Pro Benchmarks

BenchmarkScoreWhat it measuresSourceRetrieved
Intelligence
46.3
Composite score across standardised reasoning, knowledge and problem-solving evaluations, measured independently by Artificial AnalysisSourceSeptember 22, 2026

MiMo V2.6 Pro vs other models

ModelInputOutputContextBest for
MiMo V2.6 Pro
This page
$0.598299 / 1M tokens
$1.196598 / 1M tokens
1.0M tokens
Agentic workflows and structured output
$0.192556 / 1M tokens
$0.385112 / 1M tokens
1M tokens
Reasoning + agents
$0.598299 / 1M tokens
$1.196598 / 1M tokens
1M tokens
Reasoning + agents

Frequently asked questions

MiMo V2.6 Pro is Xiaomi’s flagship reasoning model, built for complex projects, long-horizon tasks, high-stakes work, cybersecurity, and research.

It supports text, images, video, and audio as input.

It produces text output.

Yes. Xiaomi lists streaming as one of the model’s supported capabilities.

Yes. Xiaomi lists tool call support for the model.

Yes. Xiaomi lists structured output as a supported capability.

Yes. The model supports joint understanding of images and video, and Xiaomi describes it as omni-modal.

Xiaomi says it can coordinate multiple agents, handle computer-use tasks, and build interactive 3D scenes from text, image, or video prompts.

Yes. Xiaomi says it can generate 3D objects and scenes in Blender, create frontends and slide decks, and assemble video and music workflows.

Yes. Xiaomi describes it as omni-modal, with joint understanding of text, images, video, and audio.

Start building with MiMo V2.6 Pro

Get API Key
1000+ models, one API.