Transcribe an audio file to text. This endpoint supports various audio formats and handles mobile recordings.
curl --request POST \
--url https://api.gurubase.io/api/v1/{guru_slug}/transcribe/ \
--header 'x-api-key: YOUR_API_KEY' \
--header 'Content-Type: multipart/form-data' \
--form 'audio=@/path/to/your/audio.mp3'
Path Parameters
The guru type identifier for the transcription request
Body Parameters
The audio file to transcribe. Supported formats: webm, mp3, wav, m4a, ogg. Maximum size: 25MB.
Response
The response contains the transcribed text from the audio file.
The transcribed text from the audio file
{
"text": "Hello, this is a test transcription of the audio file."
}