# Xiaomi: mimo-v2.5-asr — API on ChinaAPI

> Xiaomi MiMo-V2.5-ASR — speech recognition for Chinese, English, code-switching, regional dialects, noisy recordings, far-field audio, multiple speakers, and lyrics.

- Canonical page: https://chinaapi-ru.com/models/mimo-v2.5-asr/
- Model ID: `mimo-v2.5-asr`
- Type: speech recognition (ASR)
- Modalities: Audio input, text output
- Capabilities: Audio, Speech-to-Text, Multilingual, Chinese Dialects, Noise Robustness
- Billing: $0.0694 per audio hour (USD)
- Endpoint: `POST https://api.chinaapi-ru.com/v1/chat/completions` (Chat Completions with an input_audio payload)
- Pricing basis: The displayed media rate may include a service margin covering provider input/output billing, payment processing, chargeback exposure, and operations. Any margin is included in the displayed rate and is not added separately.
- Access: no mainland-China account or phone number required; $2 free trial credit
- Sign up: https://dash.chinaapi-ru.com/register?utm_source=chinaapi&utm_medium=model-md&utm_campaign=mimo-v2.5-asr

## Quickstart

```
AUDIO_BASE64=$(base64 < meeting.wav | tr -d '\n')

curl -X POST https://api.chinaapi-ru.com/v1/chat/completions \
  -H "Authorization: Bearer sk-..." \
  -H "Content-Type: application/json" \
  -d '{
    "model": "mimo-v2.5-asr",
    "messages": [{
      "role": "user",
      "content": [{
        "type": "input_audio",
        "input_audio": {"data": "data:audio/wav;base64,'"$AUDIO_BASE64"'"}
      }]
    }]
  }'
```

## FAQ

**How do I use mimo-v2.5-asr?**
Use mimo-v2.5-asr through ChinaAPI with an API key and the OpenAI-compatible endpoint shown on this page.

**How much does mimo-v2.5-asr cost?**
mimo-v2.5-asr is $0.0694 per audio hour, paid in USD. The live pricing page is authoritative. The displayed media rate may include a service margin covering provider input/output billing, payment processing, chargeback exposure, and operations. Any margin is included in the displayed rate and is not added separately.

**Does mimo-v2.5-asr need a Chinese account?**
No. ChinaAPI provides access without a mainland-China account or phone number and includes a $2 free trial. Check live pricing for the displayed USD rate.

---
Markdown twin of https://chinaapi-ru.com/models/mimo-v2.5-asr/ — generated by scripts/gen_model_pages.py. Full catalog: https://chinaapi-ru.com/llms-full.txt
