1M Token Long Context
MiniMax M3 handles up to 1,048,576 tokens with a 512K guaranteed minimum. MSA keeps retrieval coherent across the full window, so whole-repo and long-document runs fit in one prompt.
curl --request POST "https://gptproto.com/v1/chat/completions" \
--header "Authorization: Bearer $GPTPROTO_API_KEY" \
--header "Content-Type: application/json" \
--data '{
"model": "MiniMax-M3",
"messages": [
{
"role": "user",
"content": "Hello"
}
]
}'Estimate a request with real work scenarios. GPTProto token pricing is 20% below official rates.
Cost calculator
Top up
GPTProto vs official pricing.Save$25.00 (20%)vs MiniMax official
Call the MiniMax M3 API on GPTProto — an open-weight coding and agent model with a 1M-token context — at $0.96 per 1M output tokens, one key across 200+ models, no regional sign-up.
MiniMax M3 handles up to 1,048,576 tokens with a 512K guaranteed minimum. MSA keeps retrieval coherent across the full window, so whole-repo and long-document runs fit in one prompt.
MiniMax M3 runs on MiniMax Sparse Attention (MSA), cutting per-token compute at 1M context to roughly 1/20 of the M2 generation — over 9x faster prefill and 15x faster decode.
MiniMax M3 is built for sustained agent and coding work — autonomous task decomposition, tool calls, and multi-step reasoning held in one 1M-token session, tuned on multi-turn developer workflows.
In MiniMax's own tests, M3 scores 59.0% on SWE-Bench Pro and 83.5 on BrowseComp — ahead of GPT-5.5 and Gemini 3.1 Pro on coding, and above Opus 4.7 on web browsing.
MiniMax M3 is an open-weight large language model from MiniMax (MiniMaxAI), released June 1, 2026. It targets long-horizon coding and agent workloads: autonomous task decomposition, tool use, and multi-step reasoning across a 1M-token context. Its defining change is MiniMax Sparse Attention (MSA), which selects the key–value blocks that matter instead of attending to every token — the reason a 1-million-token window is practical to run rather than just a spec-sheet number. On GPTProto you call the MiniMax M3 API through one account balance shared with 200+ other models, no separate MiniMax sign-up required.
| Field | MiniMax M3 |
|---|---|
| Developer | MiniMax (MiniMaxAI), Shanghai |
| Released | June 1, 2026 |
| Type | Open-weight LLM |
| Architecture | Mixture-of-Experts · 428B total / 23B active · 256 experts |
| Attention | MiniMax Sparse Attention (MSA) |
| Context window | 1,048,576 tokens (512K guaranteed minimum) |
| Max output | up to ~512K tokens |
| Input modality | text (on this page) · image / file via the image-to-text subpage |
| Output modality | text |
| Thinking mode | toggleable per request |
| Tool use / function calling | yes |
| Endpoint | https://gptproto.com/v1/chat/completions (OpenAI-compatible) |
| GPTProto price | $0.48 / 1M input · $0.96 / 1M output |
| GPTProto model string | MiniMax-M3 |
Both models run on GPTProto under the same key and balance. M2.5 is the earlier, full-attention text model; M3 moves to sparse attention (MSA) and a practical 1M-token window, and adds image input through its image-to-text subpage.
| MiniMax M3 | MiniMax M2.5 | |
|---|---|---|
| Attention | MSA (sparse) | Full attention |
| Input (this page) | text | text |
| Image input | via image-to-text subpage | — |
| Context window | 1,048,576 tokens |
204,800 tokens |
| GPTProto price (in / out per 1M) | $0.48 / $0.96 | $0.24 / $0.96 |
| Best for | Long-horizon coding & agent runs, 1M context | Lower-cost text reasoning at shorter context |
If you already call MiniMax directly, moving to GPTProto is a drop-in change: point your client at the GPTProto endpoint, pass your GPTProto key, and set the model to MiniMax-M3. The request and response shape follow the OpenAI chat format, so existing code paths stay the same. You keep one balance across 200+ models, skip a separate MiniMax platform sign-up, and avoid the regional payment friction Western developers hit on the official Shanghai platform.
One migration gotcha: GPTProto expects the API key directly in the Authorization header — no Bearer prefix. If your OpenAI SDK auto-adds Bearer, set the header manually.
bash
curl --location 'https://gptproto.com/v1/chat/completions' \
--header 'Authorization: GPTPROTO_API_KEY' \
--header 'Content-Type: application/json' \
--data '{
"model": "MiniMax-M3",
"messages": [{ "role": "user", "content": "Who are you?" }],
"stream": false
}'
Yes. MiniMax released M3 as an open-weight model, with weights and a technical report published to Hugging Face and GitHub. On GPTProto you can call the hosted MiniMax M3 API without self-hosting — useful when you want the model's long-context and agent behaviour but not the GPU footprint of running 229.9B parameters yourself.
Everything you need to know about integrating the MiniMax M3 model into your workflow, from context limits to pricing and data security.
Guides, comparisons, and updates related to this model.
All Articles
Seedance 2.0 Mini isn't "half price"—on the API it's ~20% cheaper. The big saving comes from 720p drafting. Real pricing, runnable code, which tier to ship.

A developer's guide to Kling 3.0 Motion Control — pro vs std, input limits, prompt tips, and runnable API code (Python + cURL) via GPTProto.

GLM 5.2 is Z.ai's open-weight, MIT-licensed coding model with a 1M-token context. See its features, benchmarks vs Claude Opus 4.8 and GPT-5.5, pricing, and how to run it.

MiniMax M3 vs DeepSeek V4 Pro compared on price, benchmarks, and multimodality. Which Chinese open-weight model to actually use — and the SWE-bench trap most guides get wrong.