Xiaomi MiMo Models & API
Compare the Xiaomi MiMo models available on TokenHub, including MiMo V2.5, MiMo V2.5 Pro, MiMo V2 Flash, and MiMo V2 Pro. Review pricing, context, capabilities, and model IDs, then call Xiaomi MiMo, MiMo AI, and Xiaomi LLM through one OpenAI-compatible API workflow.
Xiaomi MiMo Models & API Pricing
Compare current Xiaomi MiMo API pricing, input and output token costs, context windows, endpoints, and model IDs. The catalog may include MiMo V2.5, MiMo V2.5 Pro, MiMo V2 Flash, and MiMo V2 Pro; availability follows the live TokenHub model list.
Compare input, output, and cache-read prices for the available Xiaomi MiMo models. Open a model page to confirm the current billing unit and model ID.
Compare context windows, maximum output, reasoning, tool calling, endpoints, and release dates across MiMo V2.5, MiMo V2.5 Pro, MiMo V2 Flash, and MiMo V2 Pro.
Pricing, model availability, context windows, and endpoint support reflect the current TokenHub catalog. Confirm the model detail page before a production release because specifications and availability can change.
Last updated: 2026-08-25Get Started With the Xiaomi MiMo API
Create a TokenHub API key, copy a published Xiaomi MiMo model ID, and call it with OpenAI Chat Completions, Responses, or Claude Messages. Existing OpenAI SDK projects can usually switch by changing the API key, Base URL, and model ID.
- 01Create a TokenHub API key
- 02Choose an available Xiaomi MiMo model
- 03Choose an API protocol
- 04Copy the published Xiaomi MiMo model ID
- 05Send your first request
Choose an API protocol
import OpenAI from "openai"
const client = new OpenAI({
apiKey: process.env.TOKENHUB_API_KEY,
baseURL: "https://us-api.tokenhub.com/v1",
})
const result = await client.chat.completions.create({
"model": "mimo-v2.5-pro",
"messages": [
{
"role": "user",
"content": "Explain why low latency matters for an AI product in one sentence."
}
]
})
console.log(result.choices[0]?.message?.content)import json
import os
from openai import OpenAI
client = OpenAI(
api_key=os.environ.get("TOKENHUB_API_KEY"),
base_url="https://us-api.tokenhub.com/v1",
)
request = json.loads("{\"model\":\"mimo-v2.5-pro\",\"messages\":[{\"role\":\"user\",\"content\":\"Explain why low latency matters for an AI product in one sentence.\"}]}")
result = client.chat.completions.create(**request)
print(result.choices[0].message.content)curl 'https://us-api.tokenhub.com/v1/chat/completions' \
-X 'POST' \
-H "Authorization: Bearer $TOKENHUB_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "mimo-v2.5-pro",
"messages": [
{
"role": "user",
"content": "Explain why low latency matters for an AI product in one sentence."
}
]
}'const response = await fetch("https://us-api.tokenhub.com/v1/chat/completions", {
method: "POST",
headers: {
Authorization: `Bearer ${process.env.TOKENHUB_API_KEY}`,
"Content-Type": "application/json",
},
body: JSON.stringify({
"model": "mimo-v2.5-pro",
"messages": [
{
"role": "user",
"content": "Explain why low latency matters for an AI product in one sentence."
}
]
}),
})
const data = await response.json()
console.log(data)import os
import requests
response = requests.request(method="POST", url="https://us-api.tokenhub.com/v1/chat/completions",
headers={
"Authorization": f"Bearer {os.environ['TOKENHUB_API_KEY']}",
"Content-Type": "application/json",
},
json=__import__("json").loads("{\"model\":\"mimo-v2.5-pro\",\"messages\":[{\"role\":\"user\",\"content\":\"Explain why low latency matters for an AI product in one sentence.\"}]}"),
)
response.raise_for_status()
print(response.json())import OpenAI from "openai"
const client = new OpenAI({
apiKey: process.env.TOKENHUB_API_KEY,
baseURL: "https://us-api.tokenhub.com/v1",
})
const result = await client.responses.create({
"model": "mimo-v2.5-pro",
"input": "Explain why low latency matters for an AI product in one sentence."
})
console.log(result.output_text)import json
import os
from openai import OpenAI
client = OpenAI(
api_key=os.environ.get("TOKENHUB_API_KEY"),
base_url="https://us-api.tokenhub.com/v1",
)
request = json.loads("{\"model\":\"mimo-v2.5-pro\",\"input\":\"Explain why low latency matters for an AI product in one sentence.\"}")
result = client.responses.create(**request)
print(result.output_text)curl 'https://us-api.tokenhub.com/v1/responses' \
-X 'POST' \
-H "Authorization: Bearer $TOKENHUB_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "mimo-v2.5-pro",
"input": "Explain why low latency matters for an AI product in one sentence."
}'const response = await fetch("https://us-api.tokenhub.com/v1/responses", {
method: "POST",
headers: {
Authorization: `Bearer ${process.env.TOKENHUB_API_KEY}`,
"Content-Type": "application/json",
},
body: JSON.stringify({
"model": "mimo-v2.5-pro",
"input": "Explain why low latency matters for an AI product in one sentence."
}),
})
const data = await response.json()
console.log(data)import os
import requests
response = requests.request(method="POST", url="https://us-api.tokenhub.com/v1/responses",
headers={
"Authorization": f"Bearer {os.environ['TOKENHUB_API_KEY']}",
"Content-Type": "application/json",
},
json=__import__("json").loads("{\"model\":\"mimo-v2.5-pro\",\"input\":\"Explain why low latency matters for an AI product in one sentence.\"}"),
)
response.raise_for_status()
print(response.json())curl 'https://us-api.tokenhub.com/v1/messages' \
-X 'POST' \
-H "Authorization: Bearer $TOKENHUB_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "mimo-v2.5-pro",
"max_tokens": 1024,
"messages": [
{
"role": "user",
"content": "Explain why low latency matters for an AI product in one sentence."
}
]
}'const response = await fetch("https://us-api.tokenhub.com/v1/messages", {
method: "POST",
headers: {
Authorization: `Bearer ${process.env.TOKENHUB_API_KEY}`,
"Content-Type": "application/json",
},
body: JSON.stringify({
"model": "mimo-v2.5-pro",
"max_tokens": 1024,
"messages": [
{
"role": "user",
"content": "Explain why low latency matters for an AI product in one sentence."
}
]
}),
})
const data = await response.json()
console.log(data)import os
import requests
response = requests.request(method="POST", url="https://us-api.tokenhub.com/v1/messages",
headers={
"Authorization": f"Bearer {os.environ['TOKENHUB_API_KEY']}",
"Content-Type": "application/json",
},
json=__import__("json").loads("{\"model\":\"mimo-v2.5-pro\",\"max_tokens\":1024,\"messages\":[{\"role\":\"user\",\"content\":\"Explain why low latency matters for an AI product in one sentence.\"}]}"),
)
response.raise_for_status()
print(response.json())Which Xiaomi MiMo Model Should You Choose?
Use this Xiaomi MiMo model selection guide for coding, agent workflows, fast text generation, reasoning, and general assistants. Compare price, context, reasoning, tool calling, and endpoint support before shipping.
| API workload | Start with | When it fits | Verify before launch |
|---|---|---|---|
| High-volume Xiaomi MiMo API calls | MiMo V2.5 | Fast iteration, chat, extraction, summarization, and batch workloads using Xiaomi MiMo. | Xiaomi MiMo API pricing, throughput, and output-token cost |
| Xiaomi MiMo reasoning and coding | MiMo V2.5 | Multi-step analysis, code generation, debugging, and agent tasks where answer quality matters. | Reasoning support, tool calling, latency, and total request cost |
| General Xiaomi MiMo applications | MiMo V2.5 | Everyday assistants, content generation, information extraction, and product features. | Task accuracy, endpoint support, and production price |
| Long-context Xiaomi MiMo workloads | MiMo V2.5 | Documents, codebases, research, and conversations where input length is the constraint. | Context window, input-token price, maximum output, and streaming |
| Quality-first Xiaomi MiMo workloads | MiMo V2.5 Pro | Production outputs where capability matters more than the lowest unit cost. | Task quality, latency, and the price difference versus a faster model |
Choose and Compare Xiaomi MiMo Models
Use the live catalog to compare Xiaomi MiMo API price, model specifications, context limits, and supported endpoints.
Integrate Xiaomi MiMo
Use TokenHub to connect Xiaomi MiMo to the development tools already in your workflow.
Xiaomi MiMo API FAQ
What are Xiaomi MiMo, MiMo AI, and Xiaomi LLM?
Xiaomi MiMo, MiMo AI, and Xiaomi LLM are names and search terms associated with this model family. TokenHub uses the published provider and model IDs shown in the live catalog.
Which Xiaomi MiMo models are available on TokenHub?
The live list above shows current availability. Relevant model searches include MiMo V2.5, MiMo V2.5 Pro, MiMo V2 Flash, and MiMo V2 Pro, but only models displayed in the TokenHub catalog can be called through this page.
How do I get a Xiaomi MiMo API key?
Xiaomi MiMo API and Xiaomi MiMo API key searches lead to the same TokenHub workflow: create an API key, select a published Xiaomi MiMo model ID, and use the TokenHub Base URL in your application.
How is Xiaomi MiMo API pricing calculated?
Pricing depends on the selected model and billing type. Compare input, output, cache, or per-request prices in the table and confirm the model detail page before production use.
Can I use the OpenAI SDK with Xiaomi MiMo?
Yes. Use the TokenHub Base URL, API key, and published Xiaomi MiMo model ID with the OpenAI Python or Node.js SDK. Endpoint support is shown for each model.
Which Xiaomi MiMo model should I use?
Choose based on the workload: coding, agent workflows, fast text generation, reasoning, and general assistants. Compare actual price, context, reasoning, tool calling, and output limits in the live catalog.
Does this page include every Xiaomi MiMo modality?
MiMo Audio and MiMo VL have different modality and endpoint requirements from text-only MiMo models.
Start Building With Xiaomi MiMo
Choose a Xiaomi MiMo model, copy its model ID, create a TokenHub API key, and send your first request through one compatible API workflow.