Skip to main content

Single file transcription only

Endpoint for single file request for API

Request Body

Audio data can be processed in 3 different ways:

  • audio_file: @<local_audio_file_path> → (note the ‘@’ for multipart upload of a binary file) allows to send a local audio file
  • audio_path: <remote_audio_path_url> → points to a URL path to an audio file available online. Make sure the audio file is accessible.
  • audio_data: <base64_data_string> → audio data sent as a string, encoded in base64
    api_plan string required

    Possible values: [standard, premium, asr]

    return_json boolean

    Possible values: [true, false]

    audio_file binary required

    Possible values: Value must match regular expression @<local_audio_file_path>;<remote_audio_path_url> ;<base64_data_string>

Responses

Records match query criteria.


Schema
    utterances object[]
  • Array [
  • index integer
    interval number[]
    speaker_id integer
    words object[]
  • Array [
  • word string
    start_time integernumber
    end_time number
    confidence number
    am_confidence number
    lm_confidence number
    start_index integer
    end_index integer
  • ]
  • confidence number
    transcript string
  • ]
Loading...