Xiaomi · Schema
Xiaomi MiMo Chat Completion
Schema for a Xiaomi MiMo AI API chat completion request and response.
Consumer ElectronicsIoTSmart HomeMobileArtificial IntelligenceCloud StorageMachine-Learning
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique identifier for the completion. |
| object | string | Object type identifier. |
| created | integer | Unix timestamp when the completion was created. |
| model | string | The MiMo model used for the completion. |
| choices | array | List of completion choices. |
| usage | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/xiaomi/main/json-schema/xiaomi-chat-completion-schema.json",
"title": "Xiaomi MiMo Chat Completion",
"description": "Schema for a Xiaomi MiMo AI API chat completion request and response.",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for the completion."
},
"object": {
"type": "string",
"enum": ["chat.completion"],
"description": "Object type identifier."
},
"created": {
"type": "integer",
"description": "Unix timestamp when the completion was created."
},
"model": {
"type": "string",
"description": "The MiMo model used for the completion.",
"examples": ["mimo-v2.5-pro", "mimo-v2-flash"]
},
"choices": {
"type": "array",
"description": "List of completion choices.",
"items": {
"type": "object",
"properties": {
"index": {
"type": "integer"
},
"message": {
"type": "object",
"properties": {
"role": {
"type": "string",
"enum": ["assistant"]
},
"content": {
"type": "string"
}
},
"required": ["role", "content"]
},
"finish_reason": {
"type": "string",
"enum": ["stop", "length", "tool_calls"]
}
}
}
},
"usage": {
"type": "object",
"properties": {
"prompt_tokens": {
"type": "integer"
},
"completion_tokens": {
"type": "integer"
},
"total_tokens": {
"type": "integer"
}
}
}
},
"required": ["id", "object", "created", "model", "choices"]
}
Work with this as data
Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for schemas
4 MCP tools reach this
find_json_schemasBrowse and filter every JSON Schema in the catalog.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/xiaomi-chat-completion"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.