v1
latestOpenAPI 3.0.12026-07-26101834.1 KBSpeech to Text
Transcribe or translate audio using Whisper Large V3
Process audio files for transcription or translation with enhanced language support. Supports multiple audio formats and provides detailed word-level timestamps and speaker diarization.
post/model/infer/whisper
Request body
Example request
{
"audio_data": "base64_encoded_audio_content",
"language": "en",
"task": "transcribe",
"initial_prompt": "Meeting transcript between John and Sarah:"
}Response
Successful transcription
Example response
{
"transcription": [
"Hello, this is a test.",
"The audio quality is good."
],
"segments": [
{
"end": 2.5,
"text": "Hello, this is a test.",
"words": [
{
"word": "Hello",
"end": 0.5
}
]
}
],
"request_time": 2.5,
"language": "en"
}