Skip to main content
Skip table of contents

Download Recording Transcription

GET /v1/recordings/{recordingId}/transcription

Summary:
Returns the transcription of the specified recording.

Security:

  • Bearer Authentication required.

Path Parameter:

  • recordingId: The recording’s unique identifier.

Response:

  • 200 OK:
    Returns a JSON object with:

    • speakers: An array of Speaker objects.

    • sentences: An array of Sentence objects.

    Example:

    CODE
    {
      "speakers": [
        { "speakerId": "1", "speakerLabel": "Name Surname" },
        { "speakerId": "2", "speakerLabel": "Name2 Surname2" }
      ],
      "sentences": [
        { "speakerId": "2", "startTime": 0.5, "endTime": 0.9, "text": "Hello from Imagicle" },
        { "speakerId": "1", "startTime": 1, "endTime": 1.2, "text": "Hello I'm Andrea" }
      ]
    }
    
  • 204 No Content: Transcription job is still in progress.

  • 401, 403, 404, 500: Error responses.

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.