Skip to main content
POST
/
inference
/
transcribe
Transcribe audio using Whisper
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>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

Api-key
string | null

Body

multipart/form-data
audio
file
required

Audio file to transcribe

Response

Successful Response

text
string
required