Back to ModelsBack to Models
MiniMax-M2.7
MiniMax50/ 57
Intelligence Score
Intelligence
50
#20 of 203 (top 10%)
Speed
47 tok/s
#110 of 131
Price
$0.53
per M tokens
#58 cheapest of 136
Context Window
205K
tokens
Latency: 2ms (#78)
Score Breakdown
Quality Score83%
Speed Score7%
Cost Score95%
Similar Models
Qwen3.6 Plus
Alibaba
50intelligence
DeepSeek V4 Pro (High)
DeepSeek
50intelligence
GLM-5
Z AI
50intelligence
GLM-5.1
Z AI
51intelligence
GPT-5.5 (low)
OpenAI
51intelligence
Use This Model
Claude Code
claude --model minimax-m2-7API (cURL)
curl https://openrouter.ai/api/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $OPENROUTER_API_KEY" \
-d '{
"model": "minimax-m2-7",
"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-7"),
prompt: "Hello",
});