Text Xiaomi

MiMo API

Use the MiMo API via RunAPI with a model skill, unified auth, and pay-as-you-go pricing.

runapi.ai
# Base URL
https://runapi.ai

# Endpoints
POST /v1/chat/completions
POST /v1/responses
POST /v1/messages
curl https://runapi.ai/v1/chat/completions \
  -H "Authorization: Bearer $RUNAPI_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "model": "mimo-v2.5",
  "messages": [
    {
      "role": "user",
      "content": "Summarize this report, identify its main points, and draft a clear response."
    }
  ]
}'
from openai import OpenAI

client = OpenAI(
    base_url="https://runapi.ai/v1",
    api_key="your-runapi-key"
)

response = client.chat.completions.create(
    model="mimo-v2.5",
    messages=[{"role": "user", "content": "Summarize this report, identify its main points, and draft a clear response."}]
)
import OpenAI from "openai";

const client = new OpenAI({
  baseURL: "https://runapi.ai/v1",
  apiKey: "your-runapi-key"
});

const response = await client.chat.completions.create({
  model: "mimo-v2.5",
  messages: [{ role: "user", content: "Summarize this report, identify its main points, and draft a clear response." }]
});
https://runapi.ai 3 endpoints
OVERVIEW

About MiMo

MiMo 2.5 is a language-model family. Both models support text-only requests through Chat Completions, Responses, and Anthropic Messages on their existing synchronous and SSE paths. Base mimo-v2.5 supports custom function calling and tool-result continuation on Chat Completions and native Anthropic Messages, including Claude Code, with sync and SSE responses. Pro and Responses retain basic text support. Base mimo-v2.5 additionally accepts remote HTTP(S) image_url parts in messages[].content[] only for synchronous OpenAI Chat Completions. mimo-v2.5-pro is text-only; image input through Responses, Anthropic Messages, streaming/SSE, data URLs, and audio/file/video is not verified.

Provider
Xiaomi
Modality
Text

MiMo API endpoints

EndpointProtocol
POST /v1/chat/completionsOpenAI compatible
POST /v1/responsesOpenAI Responses
POST /v1/messagesAnthropic compatible

Available Versions

Variant Billing Pricing
mimo-v2.5 1K tokens Input $0.09 / 1M tokens | Output $0.18 / 1M tokens View →
mimo-v2.5-pro 1K tokens Input $0.27 / 1M tokens | Output $0.54 / 1M tokens View →
PRICING

MiMo Pricing

Endpoint Resolution Duration Price
chat_completion Input $0.09 / 1M tokens | Output $0.18 / 1M tokens
response Input $0.09 / 1M tokens | Output $0.18 / 1M tokens
message Input $0.09 / 1M tokens | Output $0.18 / 1M tokens

Prices shown for mimo-v2.5. Other variants retain their own endpoint pricing.

Agent integration

Run MiMo From an Agent

HOW IT WORKS

Get Started with MiMo

  1. Create an API key

    Sign up and generate an API key from the dashboard.

  2. Pick a version

    Choose the version that best matches your quality and cost requirements.

  3. Send a request

    Submit your prompt and parameters to the model's documented endpoint.

  4. Get your result

    Poll the task or set a webhook, then download the completed output.

CONTEXT

About MiMo on RunAPI

RunAPI supports text-only requests for both MiMo models through Chat Completions, Responses, and Anthropic Messages on their existing synchronous and SSE paths. The only verified image shape is base mimo-v2.5 with synchronous OpenAI Chat Completions, where messages[].content[] may contain text and remote HTTP(S) image_url parts. Pro remains text-only; other image and media shapes are closed or unverified.

Provider
Xiaomi
See all →
Modality
Text
Browse models →

Why Use MiMo Through RunAPI

One auth, every provider

A single RunAPI API key unlocks the whole model catalog across all providers. No separate accounts to create, no API keys to rotate per integration, and no credential management overhead. Add a new model to your app by changing one parameter.

Unified pricing & billing

Per-call pricing in USD, billed monthly into a single invoice. No subscription tiers, no minimum spend, and failed generations are never charged. The pricing page and check_pricing API show exact costs before you commit to a model.

Schema-first SDK

Typed schemas, parameter constraints, and setup notes are packaged in the model skill so your implementation starts from the right contract. The skill loads into Claude Code, Codex, Gemini CLI, Cursor, and VS Code — your agent knows the correct request shape before you write a line of code.

MiMo Questions

What is the difference between MiMo 2.5 and MiMo 2.5 Pro?

Both models support text-only requests through Chat Completions, Responses, and Anthropic Messages on their existing synchronous and SSE paths. Base mimo-v2.5 additionally supports remote HTTP(S) image_url parts in messages[].content[] for synchronous OpenAI Chat Completions; mimo-v2.5-pro is text-only.

Which APIs can I use with MiMo 2.5 on RunAPI?

Text-only requests remain supported for both models through Chat Completions, Responses, and Anthropic Messages on their existing synchronous and SSE paths. For images, only base mimo-v2.5 with synchronous OpenAI Chat Completions and remote HTTP(S) image_url parts in messages[].content[] is verified.

Does MiMo 2.5 accept non-text input?

Base mimo-v2.5 accepts remote HTTP(S) image_url parts alongside text in messages[].content[] only for synchronous OpenAI Chat Completions; Pro is text-only. Image input through Responses, Anthropic Messages, streaming/SSE, data URLs, and audio, file, or video is not verified.

Which variant should I start with?

Pick the cheapest variant that meets your quality bar. Most teams start on the fast variant and graduate to pro for production.

Is there a free tier?

Creating an account and API key is free. API calls use prepaid, pay-as-you-go billing; add funds before making requests.

Do you stream results?

Where streaming is available, RunAPI streams end-to-end.

SIMILAR MODELS

Similar Text Models

Start generating with MiMo