POST
/
v1
/
audio
/
transcriptions
Create a new audio transcription
curl --request POST \
  --url https://api.sully.ai/v1/audio/transcriptions \
  --header 'Content-Type: multipart/form-data' \
  --header 'X-ACCOUNT-ID: <api-key>' \
  --header 'X-API-KEY: <api-key>' \
  --form language=en-US \
  --form audio=@example-file
{
  "status": "ok",
  "data": {
    "transcriptionId": "tr_EXAMPLE123456789",
    "message": "Your transcription request has been received and is currently processing.",
    "status": "pending"
  }
}

Authorizations

X-API-KEY
string
header
required
X-ACCOUNT-ID
string
header
required

Body

multipart/form-data

Audio transcription to add

audio
file
required

Audio file to transcribe (supported formats: wav, mp3, m4a, ogg)

language
string

Language code for transcription:

  • English (en-US, en-GB) - Spanish (es) - French (fr) - German (de) - Italian (it) - Portuguese (pt) - Dutch (nl) - Japanese (ja) - Korean (ko) - Chinese (zh) - Russian (ru)
Example:

"en-US"

Response

Audio transcription response

status
string
Example:

"ok"

data
object