MiniMax's newest flagship — M3 brings the latest generation of MiniMax general performance at the same value pricing as M2.7.
ValueBest for: Newest MiniMax generation at value pricing.
| Specification | Value |
|---|---|
| Bridge price | $0.28 / $0.59 per 1M tokens |
| Cached input | $0.06 per 1M tokens |
| Context window | 128K tokens |
| Max output | 8,192 tokens |
| Strengths | Flagship general, Chinese-language |
from openai import OpenAI
client = OpenAI(base_url="https://bridge.computeindex.net/v1", api_key="sk-bridge-YOUR_KEY")
completion = client.chat.completions.create(
model="minimax-m3",
messages=[{"role": "user", "content": "Summarize this product spec into three bullet points."}],
)
print(completion.choices[0].message.content)
Which endpoint? Standard /v1/chat/completions with model="minimax-m3".
How is it billed? Per token from the upstream usage field, cached-input discount applied automatically.