Call Mimo V2 Pro for the hardest reasoning, agentic, and coding tasks — through one OpenAI-compatible endpoint, with local payments and a free API key to begin.
Last updated June 5, 2026
Per 1M tokens, billed from your credit balance — there is no markup on usage.
| Direction | Price / 1M tokens |
|---|---|
| Input | $1.00 |
| Output | $3.00 |
Already using the OpenAI SDK? Change two lines — base_url and your key — and set the model to mimo-pro.
curl https://api.zyloai.net/v1/chat/completions \ -H "Authorization: Bearer YOUR_ZYLO_KEY" \ -H "Content-Type: application/json" \ -d '{ "model": "mimo-pro", "messages": [{"role": "user", "content": "Hello from Zylo!"}] }'
# 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-pro", messages=[{"role": "user", "content": "Hello from Zylo!"}], ) print(response.choices[0].message.content)
// 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-pro", messages: [{ role: "user", content: "Hello from Zylo!" }], }); console.log(response.choices[0].message.content);
On OpenRouter this model is xiaomi/mimo-v2-pro; on Zylo, use the id mimo-pro.
Mimo V2 Pro is billed at its base per-token rate: $1.00 per 1M input tokens and $3.00 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.
Yes. Mimo V2 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.
Mimo V2 Pro supports up to 1M tokens of context through Zylo's OpenAI-compatible API.
Yes. Point any OpenAI SDK at https://api.zyloai.net/v1, use your Zylo API key, and set the model to mimo-pro.
On OpenRouter this model is xiaomi/mimo-v2-pro. On Zylo, use the bare id mimo-pro with base URL https://api.zyloai.net/v1 — no vendor prefix.
Guides for building on Mimo V2 Pro and other models through one API.
Create a free account and get an API key — no credit card required.
Get free API key