MiniMax-M3 is a multimodal foundation model from MiniMax. It supports text, image, and video inputs with text output, a 1M-token context window, and is suited for long-horizon agentic work, coding,...
At a glance
- Context window
- 1Mtokens
- Max output
- 512Ktokens
- Knowledge to
- —
- Released
- 2026
Capabilities
Benchmarks
- Intelligence index
- 30
- Coding index
- 59
- Agentic index
- 31
Design Arena
| Category | Elo | Win rate |
|---|---|---|
| models · website | 1,271 | 52.6 |
| models · codecategories | 1,265 | 52 |
| models · uicomponent | 1,260 | 51.6 |
| models · dataviz | 1,249 | 51.5 |
| models · 3d | 1,239 | 51.5 |
| models · gamedev | 1,237 | 47.2 |
| models · svg | 1,194 | 48.1 |
| models · asciiart | 1,180 | 47.6 |
Standard evaluations
| Benchmark | Score | Tasks |
|---|---|---|
| gpqa_diamond | 0.91 | 2,370 |
| tau_bench_verified_airline | 0.71 | 646 |
Source: Artificial Analysis, Design Arena · as of Sep 16, 2026
Performance
Uptime on IranRouter
23.5%
Reference uptime
100%
Median latency
1,184 ms
Throughput
74.9 tok/s
IranRouter uptime comes from our own automated probes; the reference figures are daily measurements of this model's upstream routes. Each card shows a 30-day average, and a day without data stays empty.
Popularity
- Current rank
- #17
- Rank change, 7 days
- 0
Daily tokens · 90 days
441.3B
Ranked by daily token volume across the global model market; the figure above the chart is the daily average.
Supported parameters
Parameters this model accepts; anything else is ignored.
Quick start
from openai import OpenAI
client = OpenAI(
api_key="ir-...",
base_url="https://iranrouter.com/v1",
)
resp = client.chat.completions.create(
model="minimax/minimax-m3",
messages=[{"role": "user", "content": "سلام!"}],
)
print(resp.choices[0].message.content)Only base_url and the key change; the rest of your code stays as it is.