curl --request POST \
--url https://api.example.com/inference/transcribe \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: multipart/form-data' \
--form audio='@example-file'{
"text": "<string>"
}Transcribe audio file using OpenAI’s Whisper model. Accepts audio files in various formats (mp3, wav, m4a, webm, etc.)
curl --request POST \
--url https://api.example.com/inference/transcribe \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: multipart/form-data' \
--form audio='@example-file'{
"text": "<string>"
}