Models
Muse Voice Transcribe 1.0
Model id: meta/muse-voice-transcribe-1.0
- Audio
Meta’s speech-to-text model. Turn a recording into text, with optional speaker labels.
Best for
file transcription when you need the words, and who spoke if you ask.
- Provider
- Meta
- Context window
- Not published
- Release date
- 2026-09-01
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.95% over 7 days
- Samples
- 9,206
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=meta/muse-voice-transcribe-1.0" \ -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="meta/muse-voice-transcribe-1.0",
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: "meta/muse-voice-transcribe-1.0",
file: new Blob(),
filename: "clip.wav",
});