Inference APIs
Compare/Chat

DeepSeek V4 Pro vs MiniMax M3

Two open-weight chat models on the same endpoint and API key, so switching between them is a one-word change. Below: what each costs for three realistic workloads, how they differ, and measured speed.

Inference APIs prices are read live from the price list.

Short answer
  • Cost: MiniMax M3 is cheaper in all three workloads, by 70–76%.
  • Speed (measured): DeepSeek V4 Pro 0.64 s to first token and 121 tok/s; MiniMax M3 1.3 s and 72 tok/s.

Side by side

DeepSeek V4 ProMiniMax M3
Served byInference APIsInference APIs
Model authorDeepSeekMiniMax
Model iddeepseek-ai/DeepSeek-V4-ProMiniMaxAI/MiniMax-M3
Input price$1.72 / 1M tokens$0.39 / 1M tokens
Output price$5.15 / 1M tokens$1.56 / 1M tokens
Context window1M tokens512K tokens
CapabilitiesChat, Reasoning, Coding, Tool calling, JSON modeChat, Reasoning, Tool calling, JSON mode
WeightsOpenOpen
StatusAvailableAvailable
LimitsNo per-minute or per-day request or token caps; usage draws on a prepaid balanceNo per-minute or per-day request or token caps; usage draws on a prepaid balance
Time to first token0.64 s1.3 s
Output speed121.4 tokens / s72 tokens / s

What three workloads cost

List prices applied to the same work. The cheaper side of each row is in bold.

WorkloadDeepSeek V4 ProMiniMax M3Difference
Chat assistant — 10,000 turns of 800 tokens in, 300 out$29.21$7.8073%
Long prompts or RAG — 10,000 requests of 8,000 in, 500 out$163$39.0076%
Generation-heavy — 10,000 requests of 500 in, 2,000 out$112$33.1570%

MiniMax M3 is cheaper in all three workloads, by 70–76%. Reasoning models bill their thinking as output tokens, so real output counts run higher than the visible answer; treat the generation-heavy row as a floor for them.

When to choose which

Choose DeepSeek V4 Pro if
  • You need more than 512K tokens of context (it takes 1M)
  • Time to first token matters: 0.64 s against 1.3 s in our measurement
  • You stream long answers: 121 tokens per second against 72
  • Hard reasoning and coding tasks where the Flash models fall short
  • You want DeepSeek's largest V4 model without sending data to DeepSeek's own API
Choose MiniMax M3 if
  • Cost is the deciding factor; it is cheaper in every workload above
  • You want a large-context agent model priced near the Flash tier
  • Cost-sensitive volume; V4 Flash is about a ninth of the price

Price, context and speed are measurable; answer quality on your task is not something a table can settle. Both take the same request, so the honest test is to run your own prompts through each in the playground.

Measured speed

Medians of three streamed runs on 2026-09-17, public endpoint, a prompt that asks for about 120 words. Time to first token is the first token of any kind, reasoning included; output speed counts every generated token from that point. Reasoning models then think before the visible answer starts: DeepSeek V4 Pro began answering after 1.25 s and MiniMax M3 after 2.74 s at default settings, which you can shorten with the reasoning controls on each model page. Expect ±30% with time of day. Method and raw numbers: speed measurements.

Trying both

Same endpoint, same key. Change one string:

cURL
for MODEL in "deepseek-ai/DeepSeek-V4-Pro" "MiniMaxAI/MiniMax-M3"; do
  curl -s https://api.inferenceapis.com/v1/chat/completions \
    -H "Authorization: Bearer $INFERENCE_API_KEY" -H "Content-Type: application/json" \
    -d "{\"model\": \"$MODEL\", \"max_tokens\": 500, \"messages\": [{\"role\": \"user\", \"content\": \"Summarise the plot of Hamlet in two sentences.\"}]}" \
    | jq -r '.model, .choices[0].message.content, .usage'
done

FAQ

Which is cheaper, DeepSeek V4 Pro or MiniMax M3?

MiniMax M3 is cheaper in all three workloads, by 70–76%. The table above uses list prices: DeepSeek V4 Pro $1.72 / 1M tokens input, $5.15 / 1M tokens output; MiniMax M3 $0.39 / 1M tokens input, $1.56 / 1M tokens output.

How do I switch between them?

They are on the same endpoint and key. Change the model field from deepseek-ai/DeepSeek-V4-Pro to MiniMaxAI/MiniMax-M3 and nothing else.

Why does DeepSeek V4 Pro use more output tokens than the visible answer?

It is a reasoning model: it thinks before it answers and the thinking is billed as output tokens. Budget for that in output-heavy workloads, and set max_tokens to a few hundred or more so the answer is not cut off.

Spotted a price or limit that has changed? Tell us and we will re-check the provider page.