Voxtral Mini 3B vs Voxtral Small 24B
Two open-weight speech-to-text 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.
- Cost: Voxtral Mini 3B is cheaper in all three workloads, by 68%.
Side by side
| Voxtral Mini 3B | Voxtral Small 24B | |
|---|---|---|
| Served by | Inference APIs | Inference APIs |
| Model author | Mistral AI | Mistral AI |
| Model id | mistralai/Voxtral-Mini-3B-2507 | mistralai/Voxtral-Small-24B-2507 |
| Price | $0.0013 / audio minute | $0.004 / audio minute |
| Capabilities | Speech to text, 8 languages, Auto language, Lowest price | Speech to text, 8 languages, Auto language, Text only |
| Weights | Open | Open |
| Status | Available | Available |
| Limits | No per-minute or per-day request or token caps; usage draws on a prepaid balance | No per-minute or per-day request or token caps; usage draws on a prepaid balance |
| Speed | 0.058× real time (23.1 s clip in 1.35 s) | 0.09× real time (23.1 s clip in 2.08 s) |
What three workloads cost
List prices applied to the same work. The cheaper side of each row is in bold.
| Workload | Voxtral Mini 3B | Voxtral Small 24B | Difference |
|---|---|---|---|
| 1 hour of audio | $0.08 | $0.24 | 68% |
| 100 hours of audio | $7.80 | $24.00 | 68% |
| 1,000 hours of audio | $78.00 | $240 | 68% |
Voxtral Mini 3B is cheaper in all three workloads, by 68%.
When to choose which
- Cost is the deciding factor; it is cheaper in every workload above
- Cheap, fast multilingual transcription in Voxtral's eight languages
- Batch jobs where cost per minute matters most
- You need timestamps or subtitles (use Whisper or Parakeet)
- Languages outside its eight; use Whisper
- Speaker diarization
- Accuracy on messy real-world audio in English, Spanish, French, Portuguese, Hindi, German, Dutch or Italian
- You want Mistral's Voxtral without running a 24B model yourself
- Difficult audio: Voxtral Small or Whisper are more accurate
- Timestamps, subtitles or diarization
Measured speed
Median of three runs on 2026-09-16: a 23.1-second mp3 clip, timed from upload to response. Expect ±30% with time of day. Method and raw numbers: speed measurements.
Trying both
Same endpoint, same key. Change one string:
for MODEL in "mistralai/Voxtral-Mini-3B-2507" "mistralai/Voxtral-Small-24B-2507"; do
curl -s https://api.inferenceapis.com/v1/audio/transcriptions \
-H "Authorization: Bearer $INFERENCE_API_KEY" \
-F "model=$MODEL" -F "file=@meeting.mp3" | jq -r .text
doneFAQ
Which is cheaper, Voxtral Mini 3B or Voxtral Small 24B?
Voxtral Mini 3B is cheaper in all three workloads, by 68%. The table above uses list prices: Voxtral Mini 3B $0.0013 / audio minute; Voxtral Small 24B $0.004 / audio minute.
How do I switch between them?
They are on the same endpoint and key. Change the model field from mistralai/Voxtral-Mini-3B-2507 to mistralai/Voxtral-Small-24B-2507 and nothing else.
Spotted a price or limit that has changed? Tell us and we will re-check the provider page.
