MiMo V2.6 Flash API

xiaomi/mimo-v2.6-flash
MiMo V2.6 Flash is Xiaomi’s full-modality reasoning model for high-frequency, large-scale professional tasks, optimized for a strong balance of speed, quality, and cost.
Context
1.0M tokens
Input
$0.192556 / 1M tokens
Output
$0.385112 / 1M tokens
Released
Sep 21, 2026

How to use MiMo V2.6 Flash API

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

r = requests.post(
    "https://api.aimlapi.com/v1/chat/completions",
    headers={"Authorization": "Bearer " + AIMLAPI_KEY},
    json={
      "model": "xiaomi/mimo-v2.6-flash",
      "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-flash",
    "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-flash","messages":[{"role":"user","content":"Hello!"}]}'

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

MiMo V2.6 Flash API Pricing

TypePrice
Input
$0.192556 / 1M tokens
Output
$0.385112 / 1M tokens
Cached input
$0.0038511 / 1M tokens

Cached input is billed at roughly a fiftieth of the fresh-input rate, so workflows that re-send the same long prefix cost far less than the headline input price suggests.

MiMo V2.6 Flash vs other models

ModelInputOutputContextBest for
$0.192556 / 1M tokens
$0.385112 / 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 Flash is a full-modality reasoning model for high-frequency calls and large-scale professional tasks. It is positioned for reasoning-heavy workflows with streaming, tools, structured output, and multimodal understanding.

It accepts text, image, video, and audio inputs. Xiaomi describes it as a natively omnimodal model with joint understanding across those modalities.

It returns text output. The model is designed to understand multiple input modalities while producing text responses.

Yes, it supports tool call capability. Xiaomi lists tool call among its model capabilities.

Yes, it supports structured output. Xiaomi lists structured output as a capability for the model.

Yes, it supports streaming. Xiaomi lists streaming among the model capabilities.

Yes, it is described as a full-modality, high-intelligence, low-cost reasoning model. Xiaomi also highlights omnimodal understanding and deep thinking for the model.

Yes, Xiaomi describes it as jointly understanding images, video, audio, and text. The model is built for multimodal perception across those inputs.

It is aimed at high-frequency calls and large-scale tasks in professional workflows. Xiaomi presents it as the best balance of speed, quality, and cost for that use case.

Start building with MiMo V2.6 Flash

Get API Key
1000+ models, one API.