Xiaomi logo
Xiaomi

Mimo V2.5 Pro

Call Mimo V2.5 Pro for the hardest reasoning, agentic, and coding tasks — through one OpenAI-compatible endpoint, with local payments and a free API key to begin.

Model id mimo-v2.5-pro Context 1M tokens Plan Basic (free) & up Input $0.435 /1M Output $0.87 /1M

Last updated June 5, 2026

Pricing

Per 1M tokens, billed from your credit balance — there is no markup on usage.

DirectionPrice / 1M tokens
Input$0.435
Output$0.87
How billing works. The rate above is what usage costs against your prepaid credits on a paid plan — no per-token markup, and Zylo's flat 25% platform fee applies only when you add credits. The free Basic plan instead gives a daily allowance of Basic-tier models (10 requests/min, no card, no credits). Mimo V2.5 Pro is a Basic-tier model — callable on the free Basic plan within its daily allowance and a global 10 requests/min limit. Prices update live from our catalogue.

Quickstart

Already using the OpenAI SDK? Change two lines — base_url and your key — and set the model to mimo-v2.5-pro.

Terminal
curl https://api.zyloai.net/v1/chat/completions \
  -H "Authorization: Bearer YOUR_ZYLO_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "mimo-v2.5-pro",
    "messages": [{"role": "user", "content": "Hello from Zylo!"}]
  }'
Python
# pip install openai
from openai import OpenAI

client = OpenAI(
    api_key="YOUR_ZYLO_KEY",
    base_url="https://api.zyloai.net/v1",
)

response = client.chat.completions.create(
    model="mimo-v2.5-pro",
    messages=[{"role": "user", "content": "Hello from Zylo!"}],
)
print(response.choices[0].message.content)
Node.js
// npm install openai
import OpenAI from "openai";

const client = new OpenAI({
  apiKey: "YOUR_ZYLO_KEY",
  baseURL: "https://api.zyloai.net/v1",
});

const response = await client.chat.completions.create({
  model: "mimo-v2.5-pro",
  messages: [{ role: "user", content: "Hello from Zylo!" }],
});
console.log(response.choices[0].message.content);

Migrating?

On OpenRouter this model is xiaomi/mimo-v2.5-pro; on Zylo, use the id mimo-v2.5-pro.

Frequently asked questions

How much does Mimo V2.5 Pro cost on Zylo?

Mimo V2.5 Pro is billed at its base per-token rate: $0.435 per 1M input tokens and $0.87 per 1M output tokens, deducted from your prepaid credits. There is no markup on usage — Zylo's 25% platform fee applies only when you add credits.

Is Mimo V2.5 Pro available on the free Basic plan?

Yes. Mimo V2.5 Pro is a Basic-tier model, so you can call it on the free Basic plan within its daily usage allowance and a global limit of 10 requests per minute. The Basic plan does not include credits; paid plans (Go and up) add premium models and credits you spend on usage.

What is the context window of Mimo V2.5 Pro?

Mimo V2.5 Pro supports up to 1M tokens of context through Zylo's OpenAI-compatible API.

Is Mimo V2.5 Pro OpenAI-compatible?

Yes. Point any OpenAI SDK at https://api.zyloai.net/v1, use your Zylo API key, and set the model to mimo-v2.5-pro.

How do I switch Mimo V2.5 Pro from OpenRouter to Zylo?

On OpenRouter this model is xiaomi/mimo-v2.5-pro. On Zylo, use the bare id mimo-v2.5-pro with base URL https://api.zyloai.net/v1 — no vendor prefix.

Related reading

Guides for building on Mimo V2.5 Pro and other models through one API.

Start calling Mimo V2.5 Pro in under 2 minutes

Create a free account and get an API key — no credit card required.

Get free API key