Back to Models

MiniMax-M2.7

![MiniMax](https://artificialanalysis.ai/img/logos/minimax_small.svg)MiniMax
50/ 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%

Use This Model

Claude Code

claude --model minimax-m2-7

API (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",
});
Back to Models