Back to modelsBuy Plan
MiniMax
MiniMax M2.7
开启模型的自我迭代,输出速度约 60 TPS
Quick Stats
Context
205K
Max Output
—
Provider
MiniMax
Specs
1
Modalities
in textout text
Specs & Platform Price (per 1M tokens)
Quality
Input $0.308824Output $1.235294Cache read $0.061765Cache write 5m $0.386029
Recommended Plan
MiniMax M2.7 Starter Plan
Pay-as-you-go after top-up; $1 free credit for new users.
API Endpoint
Model ID
minimax/minimax-m2.7cURL
curl https://intertoken.ai/v1/chat/completions \
-H "Authorization: Bearer $TOKENPORTAL_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "minimax/minimax-m2.7",
"messages": [{"role": "user", "content": "Hello!"}]
}'Python (openai SDK)
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.7",
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.