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.
| Type | Price |
|---|---|
| Input | |
| Output | |
| Cached input |
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.
| Benchmark | Score | What it measures | Source | Retrieved |
|---|---|---|---|---|
| Intelligence | 46.3 | Composite score across standardised reasoning, knowledge and problem-solving evaluations, measured independently by Artificial Analysis | Source | September 22, 2026 |
| Model | Input | Output | Context | Best for |
|---|---|---|---|---|
MiMo V2.6 Pro This page | Agentic workflows and structured output | |||
| Reasoning + agents | ||||
| Reasoning + agents |
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.