v1
latestOpenAPI 3.1.0MIT2026-07-262861121.0 KBTranscribe audio (and supported video formats) into text using speech recognition models. Supports multiple languages, diarization (model-dependent), and various formats. Most models return synchronous results; some models (for example Elevenlabs-STT and voice cloning workflows) return asynchronous job IDs.
post/transcribe
Request body
Example request
{
"audioUrl": "https://example.com/audio.mp3",
"language": "en"
}Response
Synchronous transcription response (Whisper/Wizper models)
Example response
{
"transcription": "Hello, this is a test transcription."
}