Models
Qwen3 TTS Instruct Flash
Model id: alibaba_qwen/qwen3-tts-instruct-flash
- Fast
- Audio
Qwen3 TTS Flash plus a style you describe in plain language.
Best for
Ideal when the spoken tone should follow a short instruction.
- Provider
- Alibaba Cloud Model Studio
- Context window
- Not published
- Release date
- 2026-02-10
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.9% over 7 days
- Samples
- 9,204
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": "alibaba_qwen/qwen3-tts-instruct-flash",
"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="alibaba_qwen/qwen3-tts-instruct-flash",
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: "alibaba_qwen/qwen3-tts-instruct-flash",
input: "Bonjour",
voice: "alloy",
});