Back to modelsBuy Plan
MiniMax
MiniMax M3
MiniMax M3 是多模态基础模型,支持文本、图像与视频输入,面向长上下文与多模态 Agent 场景。
Quick Stats
Context
1049K
Max Output
512K
Provider
MiniMax
Specs
1
Modalities
in textin imagein videoout text
Specs & List Price (per 1M tokens)
Quality
Input $0.626866Output $2.507463Cache read $0.125373
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
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.