📃Get Transcript

Gets a transcript from the provided audio

POST

https://api.autocontentapi.com/content/GetTranscript

{
  "audioUrl": "string"
}

Field
Possible Values

audioUrl

Link to an .mp3 or .wav file with the audio file that you would like to transcribe. Required.

Sample request

curl -X 'POST'
  'https://api.autocontentapi.com/Content/GetTranscript'
  -H 'accept: text/plain'
  -H 'Authorization: Bearer YOUR_TOKEN_HERE'
  -H 'Content-Type: application/json'
  -d '{
  "audioUrl": "https://LinkToYourRecording.mp3"
}'

Response

{
    "request_id": "string",
    "error_message": "string"
}
Field
Possible Values

request_id

Id of the request.

resource.type

Error message when the request is not successful.

Last updated