← All modelsGet an API key
M
MiniMax M3
minimax/minimax-m3MiniMax-M3 is a multimodal foundation model from MiniMax. It supports text, image, and video inputs with text output, a 1M-token context window, and is suited for long-horizon agentic work, coding,...
Endpoints
Each row is one provider serving these weights at one precision. Prices are per million tokens.
| Quantisation | Context | Max out | Input | Output | Cached in |
|---|---|---|---|---|---|
| FP8 | 512K | 500K | $0.35 | $1.40 | $0.07 |
Agent config
Paste this into your coding agent and it can configure itself. The timeout is derived from this variant's measured throughput, not a guess — a long generation that outlives a client's default ceiling is the most common way a working request looks broken.
# Infersia — minimax/minimax-m3
# Paste this to your agent. Values are measured, not aspirational.
provider:
type: openai-compatible
base_url: https://api.infersia.com/v1
api_key: ${INFERSIA_API_KEY} # from https://infersia.com/dashboard/keys
model: minimax/minimax-m3
limits:
max_input_tokens: 524288 # hard limit — over this returns HTTP 413
max_output_tokens: 512000
timeout_seconds: 600 # no throughput measured yet; 600 is a safe default
features:
streaming: true
tools: true
vision: true
reasoning: true # OFF by default; send chat_template_kwargs.enable_thinking=true to opt in
prompt_caching: false
pricing_usd_per_million_tokens:
input: 0.35
output: 1.4
cached_input: 0.07What FP8 means
8-bit floating point. Near-lossless against FP16.
Call it
curlbash
curl https://api.infersia.com/v1/chat/completions \
-H "Authorization: Bearer $INFERSIA_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "minimax/minimax-m3",
"messages": [{"role": "user", "content": "Hello"}],
"stream": true
}'Pin a provider with minimax/minimax-m3@infersia, or take the cheapest with the bare id. Add :free for the rate-limited free tier where one exists.