MiniMax M2.5
Use this model through the Rawrter OpenAI-compatible API. Requests are routed through available nodes with account-level usage tracking.
Modalities
Input Price / 1M
$0.15
Output Price / 1M
$0.90
Cache Price / 1M
$0.05
Provider
MiniMax
Context
204K
About MiniMax M2.5
MiniMax M2.5 is a cost-efficient model for chat, content generation, and practical text tasks.
API
Copy a ready config for your client — the base URL and this model's id (minimax-m2.5) are already filled in. Paste your API key and you're set.
from openai import OpenAI
client = OpenAI(
base_url="https://api.openrussiarouter.com/v1",
api_key="<YOUR_API_KEY>",
)
response = client.chat.completions.create(
model="minimax-m2.5",
messages=[{"role": "user", "content": "Hello"}],
)
print(response.choices[0].message.content)
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.openrussiarouter.com/v1",
apiKey: "<YOUR_API_KEY>",
});
const response = await client.chat.completions.create({
model: "minimax-m2.5",
messages: [{ role: "user", content: "Hello" }],
});
console.log(response.choices[0].message.content);
{
"providers": {
"openrussiarouter": {
"baseURL": "https://api.openrussiarouter.com/v1",
"apiKey": "<YOUR_API_KEY>",
"compat": {
"supportsDeveloperRole": false,
"supportsReasoningEffort": false
}
}
},
"models": {
"minimax-m2.5": {
"provider": "openrussiarouter",
"id": "minimax-m2.5",
"contextWindow": 204800
}
}
}
curl https://api.openrussiarouter.com/v1/chat/completions \
-H "Authorization: Bearer <YOUR_API_KEY>" \
-H "Content-Type: application/json" \
-d '{
"model": "minimax-m2.5",
"messages": [{ "role": "user", "content": "Hello" }]
}'