Models
Voxtral Mini TTS 2603
Model id: mistral/voxtral-mini-tts-2603
- Audio
Mistral’s Voxtral text-to-speech. Nine languages. Clone a voice from a short clip.
Best for
French spoken replies on the Mistral path
- Provider
- Mistral AI
- Context window
- Not published
- Release date
- 2026-03-23
Pricing
Output
$0.00 / character
Amounts in Canadian dollars, converted at the Bank of Canada indicative rate (2026-09-21).
Performance
Reading
Last 7 days
Not enough data to display the chart.
Activity
Tokens
—
—
—
—
—
Top 5 tools · last 7 days
Not enough data to display tool activity.
Availability
Availability (%)
Last 7 days
- Operational probes
- 99.97% over 7 days
- Samples
- 9,206
Quick start
Turn text into speech with a tonia_ key and the exact model id below.
curl
curl https://pass.tonia.ca:8443/v1/audio/speech \
-H "Authorization: Bearer $TONIA_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "mistral/voxtral-mini-tts-2603",
"input": "Bonjour",
"voice": "alloy"
}'Python (tonia SDK)
import os
from tonia import Tonia
client = Tonia(api_key=os.environ["TONIA_API_KEY"])
audio = client.audio.speech.create(
model="mistral/voxtral-mini-tts-2603",
input="Bonjour",
voice="alloy",
)TypeScript (tonia SDK)
import { Tonia } from "@tonia-router/sdk";
const client = new Tonia({
apiKey: process.env.TONIA_API_KEY,
});
const audio = await client.audio.speech.create({
model: "mistral/voxtral-mini-tts-2603",
input: "Bonjour",
voice: "alloy",
});