Inference APIs
Compare/Speech-to-text

Voxtral Small 24B vs Whisper Large v3 Turbo on Groq

Voxtral Small 24B is an open-weight speech-to-text model you can call on this endpoint; Whisper Large v3 Turbo on Groq is offered from Groq. Below: what each costs for three realistic workloads, the limits that apply, and when to choose which.

Groq figures are public list prices and documented limits, checked 2026-09-16 against the provider page. Inference APIs prices are read live from the price list.

Short answer
  • Cost: Whisper Large v3 Turbo on Groq is cheaper in all three workloads, by 83%.
  • Limits: Groq: Free tier: 20 requests/min, 2,000 requests/day, 7,200 audio-seconds/hour, 28,800 audio-seconds/day (8 hours). Developer-tier upgrades were paused when we checked (Sep 2026). Here: no per-minute or per-day caps.

Side by side

Voxtral Small 24BWhisper Large v3 Turbo on Groq
Served byInference APIsGroq
Model authorMistral AIGroq
Model idmistralai/Voxtral-Small-24B-2507whisper-large-v3-turbo
Price$0.004 / audio minute$0.0007 / audio minute
CapabilitiesSpeech to text, 8 languages, Auto language, Text onlySpeech to text, 99 languages, Timestamps
WeightsOpenOpen
StatusAvailableAvailable
LimitsNo per-minute or per-day request or token caps; usage draws on a prepaid balanceFree tier: 20 requests/min, 2,000 requests/day, 7,200 audio-seconds/hour, 28,800 audio-seconds/day (8 hours). Developer-tier upgrades were paused when we checked (Sep 2026).
Speed0.09× real time (23.1 s clip in 2.08 s)not measured by us

What three workloads cost

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

WorkloadVoxtral Small 24BWhisper Large v3 Turbo on GroqDifference
1 hour of audio$0.24$0.0483%
100 hours of audio$24.00$4.2083%
1,000 hours of audio$240$42.0083%

Whisper Large v3 Turbo on Groq is cheaper in all three workloads, by 83%.

When to choose which

Choose Voxtral Small 24B if
  • 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
  • You transcribe more than 8 hours of audio a day on a free account
Choose Whisper Large v3 Turbo on Groq if
  • Cost is the deciding factor; it is cheaper in every workload above
  • Lowest price per minute, if your volume fits the free tier or you already have a Developer account

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. We did not measure Groq and do not quote other people's numbers; read "not measured" as unknown, not slow. Method and raw numbers: speed measurements.

Switching from Groq

Both speak the OpenAI wire format. The edit is the base URL, the key and the model id; then re-run your own prompts, because it is a different model.

Python · openai SDK
import os
from openai import OpenAI

# before: Groq
# client = OpenAI(base_url="https://api.groq.com/openai/v1", api_key=os.environ["GROQ_API_KEY"])
# MODEL = "whisper-large-v3-turbo"

# after: Inference APIs
client = OpenAI(base_url="https://api.inferenceapis.com/v1", api_key=os.environ["INFERENCE_API_KEY"])
MODEL = "mistralai/Voxtral-Small-24B-2507"

resp = client.audio.transcriptions.create(model=MODEL, file=open("meeting.mp3", "rb"))

More detail, including Node, LangChain and LiteLLM: switching OpenAI-compatible providers.

FAQ

Which is cheaper, Voxtral Small 24B or Whisper Large v3 Turbo on Groq?

Whisper Large v3 Turbo on Groq is cheaper in all three workloads, by 83%. The table above uses list prices: Voxtral Small 24B $0.004 / audio minute; Whisper Large v3 Turbo on Groq $0.0007 / audio minute.

Can I switch from Whisper Large v3 Turbo on Groq to Voxtral Small 24B without rewriting code?

Yes, if you call it through an OpenAI-compatible client. Change the base URL to https://api.inferenceapis.com/v1, swap the API key, and set the model to mistralai/Voxtral-Small-24B-2507. Because it is a different model, re-run your prompts and evaluations before moving production traffic.

What limits apply to Whisper Large v3 Turbo on Groq?

Free tier: 20 requests/min, 2,000 requests/day, 7,200 audio-seconds/hour, 28,800 audio-seconds/day (8 hours). Developer-tier upgrades were paused when we checked (Sep 2026). On Inference APIs there are no per-minute or per-day request or token caps; usage draws on a prepaid balance.

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