Skip to content

MiniMax M3 API — unlimited & flat-rate access

MiniMax M3 is MiniMax’s frontier multimodal coding and agentic model, with a 1M-token context window. CheapestInference serves it through an OpenAI- and Anthropic-compatible API on unlimited, flat-rate time-block subscriptions — so your cost does not scale with tokens.

ModelMiniMax M3
Model IDminimax-m3
Context window1M tokens
Cost basis$0.60 / $2.40 per 1M tokens (in / out)
Endpoints/v1/chat/completions (OpenAI), /anthropic/v1/messages (Anthropic)
PricingFrom $52/mo — reserve an 8-hour daily time block, up to full 24/7
from openai import OpenAI
client = OpenAI(
base_url="https://api.cheapestinference.com/v1",
api_key="sk-..." # your subscriber key
)
response = client.chat.completions.create(
model="minimax-m3",
messages=[{"role": "user", "content": "Summarize this document..."}],
)
Terminal window
curl https://api.cheapestinference.com/v1/chat/completions \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model": "minimax-m3", "messages": [{"role": "user", "content": "Hello"}]}'

MiniMax M3 pairs frontier coding and agentic ability with a 1M-token context window, making it well suited to large codebases, long documents, and long-running agent loops. On CheapestInference it is billed at a flat monthly rate, not per token, so heavy long-context workloads have a predictable cost. It is part of the Frontier Pool alongside Kimi K2.7, Kimi K2.6, and GLM 5.2, so one subscription covers all four. It works in any OpenAI-compatible client.

Is there a MiniMax M3 API? Yes. Use model id minimax-m3 against https://api.cheapestinference.com/v1. The API is OpenAI- and Anthropic-SDK compatible.

How much does MiniMax M3 cost? From $52/month ($44.20/mo billed annually). You reserve one or more 8-hour daily time blocks (up to full 24/7) and use MiniMax M3 with no token caps — billed at a flat monthly fee, not per token.

What is the MiniMax M3 context window? 1M tokens, so it handles large codebases, long documents, and extended agent conversations in a single request.

Is MiniMax M3 good for coding? Yes — it is a frontier coding and agentic model, and is served alongside Kimi K2.7, Kimi K2.6, and GLM 5.2 in the Frontier Pool.