Models
Qwen Audio 3.0 ASR Flash
Model id: alibaba_qwen/qwen-audio-3.0-asr-flash
- Fast
- Audio
Short-file Qwen speech-to-text. Up to five minutes.
Best for
short recordings when you need the words quickly.
- Provider
- Alibaba Cloud Model Studio
- Context window
- Not published
- Release date
- 2026-07-30
Pricing
Input
$0.0001 / s
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
Transcribe an audio file with a tonia_ key and the exact model id below.
curl
curl https://pass.tonia.ca:8443/v1/audio/transcriptions \ -H "Authorization: Bearer $TONIA_API_KEY" \ -F "model=alibaba_qwen/qwen-audio-3.0-asr-flash" \ -F "file=@clip.wav"
Python (tonia SDK)
import os
from tonia import Tonia
client = Tonia(api_key=os.environ["TONIA_API_KEY"])
with open("clip.wav", "rb") as audio:
transcript = client.audio.transcriptions.create(
model="alibaba_qwen/qwen-audio-3.0-asr-flash",
file=audio,
filename="clip.wav",
)TypeScript (tonia SDK)
import { Tonia } from "@tonia-router/sdk";
const client = new Tonia({
apiKey: process.env.TONIA_API_KEY,
});
const transcript = await client.audio.transcriptions.create({
model: "alibaba_qwen/qwen-audio-3.0-asr-flash",
file: new Blob(),
filename: "clip.wav",
});