POST
/
v1
/
rest
/
transcribelive
curl --request POST \
  --url https://asr.snr.audio/v1/rest/transcribelive \
  --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

Live audio file to be transcribed.

Response

200 - application/json
text
string

Transcribed text.