Back to modelsBuy Plan
MiniMax
MiniMax M2.5
MiniMax M2.5 是稀宇科技推出的高效模型,响应速度快,擅长编程、办公等真实生产力场景。
Quick Stats
Context
205K
Max Output
197K
Provider
MiniMax
Specs
1
Modalities
in textout text
Specs & List Price (per 1M tokens)
Quality
Input $0.313433Output $1.253731Cache read $0.031343
Recommended Plan
MiniMax M2.5 Starter Plan
Pay-as-you-go after top-up; $1 free credit for new users.
API Endpoint
Model ID
minimax/minimax-m2.5cURL
curl https://intertoken.ai/v1/chat/completions \
-H "Authorization: Bearer $TOKENPORTAL_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "minimax/minimax-m2.5",
"messages": [{"role": "user", "content": "Hello!"}]
}'Python
from openai import OpenAI
client = OpenAI(
base_url="https://intertoken.ai/v1",
api_key="$TOKENPORTAL_API_KEY",
)
resp = client.chat.completions.create(
model="minimax/minimax-m2.5",
messages=[{"role": "user", "content": "Hello!"}],
)
print(resp.choices[0].message.content)Start using this model
Sign up free, get an API key, and make your first call in 30 seconds.