Back to ModelsBack to Models
MiniMax-M2.5
MiniMax42/ 57
Intelligence Score
Intelligence
42
#17 of 210 (top 8%)
Speed
46 tok/s
#114 of 148
Price
$0.53
per M tokens
#62 cheapest of 144
Context Window
205K
tokens
Latency: 3ms (#107)
Score Breakdown
Quality Score74%
Speed Score7%
Cost Score95%
Similar Models
Use This Model
Claude Code
claude --model minimax-m2-5API (cURL)
curl https://openrouter.ai/api/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $OPENROUTER_API_KEY" \
-d '{
"model": "minimax-m2-5",
"messages": [{"role": "user", "content": "Hello"}]
}'Vercel AI SDK
import { generateText } from "ai";
import { openrouter } from "@openrouter/ai-sdk-provider";
const { text } = await generateText({
model: openrouter("minimax-m2-5"),
prompt: "Hello",
});