Back to modelsBuy Plan
MiniMax
MiniMax M3
最新 M 系列语言模型,适用于 Agent 推理、工具调用、代码和长上下文任务(1M 上下文)
Quick Stats
Context
1000K
Max Output
512K
Provider
MiniMax
Specs
1
Modalities
in textin imagein videoout text
Specs & Platform Price (per 1M tokens)
Quality
Input $0.308824Output $1.235294Cache read $0.061765
Recommended Plan
MiniMax M3 Starter Plan
Pay-as-you-go after top-up; $1 free credit for new users.
API Endpoint
Model ID
minimax/minimax-m3cURL
curl https://intertoken.ai/v1/chat/completions \
-H "Authorization: Bearer $TOKENPORTAL_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "minimax/minimax-m3",
"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-m3",
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.