Soniox
Docs
API reference/REST API/Transcriptions

Get transcription transcript

Retrieves the full transcript text and detailed tokens for a completed transcription. Only available for successfully completed transcriptions.

GET
/v1/transcriptions/{transcription_id}/transcript

Headers

AuthorizationRequiredBearer <SONIOX_API_KEY>

Path parameters

transcription_idRequiredstring
Format: "uuid"

Response

200

Transcription transcript.

idRequiredstring

Unique identifier of the transcription this transcript belongs to.

Format: "uuid"
textRequiredstring

Complete transcribed text content.

tokensRequiredarray<object>

List of detailed token information with timestamps and metadata.

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
    }
  ]
}