Canopy Wave & SAIHEACanopy Wave & SAIHEAT Announce Merger Agreement | Learn MoreArrow
MiMo-V2.6 Flash API
VisionCodeChat

MiMo-V2.6 Flash API

All You Need to Know About MiMo-V2.6 Flash API

Overview

Model Provider:XiaomiMiMo
Model Type:Vision/Code/Chat
State:Ready

Key Specs

Quantization:-
Parameters:309B
Context:1M
Pricing:$0.14 input / $0.28 output / $0.07 cache
Try Model API
Quick Start
Reserve Dedicated Endpoint

Introduction

MiMo-V2.6-Flash is an open-source foundation model developed by Xiaomi. Built on a Mixture-of-Experts architecture with 309B total parameters and 15B activated per token, it employs a hybrid attention mechanism for greater computational efficiency. The model features a 1M-token context window and native multimodal capabilities. Optimized for agentic workflows, it delivers strong performance across coding, visual, general, and research scenarios, excelling at complex, long-horizon tasks with robust generalization across a diverse range of agent harnesses.

MiMo-V2.6 Flash API Usage

Model

Endpoint

xiaomimimo/mimo-v2.6-flash


        1
        curl -X POST https://api.canopywave.io/v1/chat/completions \
      
        2
          -H "Content-Type: application/json" \
      
        3
          -H "Authorization: Bearer $CANOPYWAVE_API_KEY" \
      
        4
          -d '{
      
        5
            "model": "xiaomimimo/mimo-v2.6-flash",
      
        6
            "messages": [
      
        7
              {"role": "user", "content": "tell me a story"}
      
        8
            ],
      
        9
            "max_tokens": 1000,
      
        10
            "temperature": 0.7
      
        11
          }'