Soniox
Docs
API reference/Transcriptions

Get transcription transcript

Get the transcript text for a transcription. This endpoint is only available for completed transcriptions. If the file transcription has failed, you will receive a 409 Conflict error.

GET
/v1/transcriptions/{transcription_id}/transcript

Authorization

AuthorizationRequiredBearer <token>

In: header

Path parameters

transcription_idRequiredstring
Format: "uuid"

Response body

200

Transcription transcript.

idRequiredstring

The unique identifier of the transcription.

Format: "uuid"
textRequiredstring

The transcript text.

tokensRequiredarray<object>

The transcript tokens.

Errors

Transcription transcript.

{
  "id": "19b6d61d-02db-4c25-bc71-b4094dc310c8",
  "text": "Hello",
  "tokens": [
    {
      "text": "Hel",
      "start_ms": 10,
      "end_ms": 90,
      "confidence": 0.95
    },
    {
      "text": "lo",
      "start_ms": 110,
      "end_ms": 160,
      "confidence": 0.98
    }
  ]
}