POST
/
v1
/
rest
/
transcribe
curl --request POST \
  --url https://asr.snr.audio/v1/rest/transcribe \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: multipart/form-data'
{
  "text": "This is the transcribed text."
}

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 be transcribed.

Response

200
application/json
Transcription Successful
text
string

Transcribed text.