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

Authorizations

Authorization
string
headerrequired

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

Body

multipart/form-data
file
string
required

Audio file to be transcribed.

Response

200 - application/json
text
string

Transcribed text.