MiMo v2.5 API — pricing & specs

Xiaomi's MiMo v2.5 — the newer MiMo generation for general text generation, reasoning, and coding. On KeepRouter, MiMo v2.5 costs $0.11 per 1M input tokens and $0.28 per 1M output tokens, billed at cost with no markup and no monthly fee. Call it through the OpenAI- or Anthropic-compatible API with the model id mimo-v2.5.

MakerXiaomi
ModalityText
Input price$0.11 per 1M tokens
Output price$0.28 per 1M tokens
CapabilitiesStreaming, Tool / function calling
APIsOpenAI-compatible & Anthropic-compatible
Model idmimo-v2.5

How pricing works for MiMo v2.5

MiMo v2.5 is billed per token — $0.11 per 1M input tokens and $0.28 per 1M output tokens. As a worked example, a 1,000-token prompt with a 500-token reply costs about $0.0003. All prices are at cost (a 0% markup) with no monthly fee.

Calling MiMo v2.5 on KeepRouter

Point your OpenAI- or Anthropic-compatible client at KeepRouter, set the model to mimo-v2.5, and keep the rest of your code unchanged. Streaming and tool calling work over both APIs.

cURL

curl https://keeprouter.com/v1/chat/completions \
  -H "Authorization: Bearer $KEEPROUTER_KEY" -H "Content-Type: application/json" \
  -d '{"model":"mimo-v2.5","messages":[{"role":"user","content":"Hello"}]}'

Python

from openai import OpenAI
client = OpenAI(base_url="https://keeprouter.com/v1", api_key="$KEEPROUTER_KEY")
r = client.chat.completions.create(model="mimo-v2.5", messages=[{"role":"user","content":"Hello"}])

JavaScript

import OpenAI from "openai";
const client = new OpenAI({ baseURL: "https://keeprouter.com/v1", apiKey: process.env.KEEPROUTER_KEY });
const r = await client.chat.completions.create({ model: "mimo-v2.5", messages: [{ role: "user", content: "Hello" }] });

Frequently asked questions

How much does MiMo v2.5 cost on KeepRouter?

MiMo v2.5 is $0.11 per 1M input tokens and $0.28 per 1M output tokens, billed at cost with no markup and no monthly fee.

How much does a typical MiMo v2.5 request cost?

On KeepRouter, a 1,000-token prompt with a 500-token reply costs about $0.0003 — billed at cost with no markup.

Who makes MiMo v2.5?

MiMo v2.5 is made by Xiaomi. KeepRouter provides it through one OpenAI- and Anthropic-compatible API.

How do I call MiMo v2.5 via API?

Point your OpenAI- or Anthropic-compatible client at KeepRouter and set the model to "mimo-v2.5". It works with the OpenAI SDK, the Anthropic SDK, and Claude Code — no provider-specific SDK needed.

Does MiMo v2.5 support streaming?

Yes. KeepRouter streams MiMo v2.5 responses over both the OpenAI and Anthropic APIs.

Does MiMo v2.5 support tool (function) calling?

Yes. KeepRouter passes tool calls through to MiMo v2.5 and translates them between the OpenAI and Anthropic formats.

Guides

Related models from Xiaomi

All models & pricing · Quickstart · KeepRouter vs OpenRouter · Glossary · Get an API key

Prices as of 2026-07-05.