Skip to main content
POST
/
audio
/
transcribe
Transcribe Audio
curl --request POST \
  --url https://platform.qubrid.com/api/v1/qubridai/audio/transcribe \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: multipart/form-data' \
  --form file='@example-file' \
  --form model=openai/whisper-large-v3
{
  "text": "Today is a wonderful day to build something people love!"
}

Authorizations

Authorization
string
header
required

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

Body

multipart/form-data
file
file
required

Audio file to transcribe (wav, mp3, etc.)

model
string
required

STT model to use.

Example:

"openai/whisper-large-v3"

Response

Transcription successful

Successful transcription response.

text
string
Example:

"Today is a wonderful day to build something people love!"