Skip to main content
A diarization object represents the results of a diarization job.
diarization
object[]
required

List of diarization segments

confidence
object

Confidence scores details. Only returned if confidence is set to true when job is created

exclusiveDiarization
object[]

Exclusive diarization segments where only one speaker is active at a time. Only returned if exclusive is set to true when job is created.

wordLevelTranscription
object[]

Word-level transcription segments with text. Only returned if transcription is set to true when job is created.

Example:
[
{
"start": 0.5,
"end": 0.8,
"text": "Hello",
"speaker": "SPEAKER_00"
}
]
turnLevelTranscription
object[]

Turn-level (speaker turn) transcription segments with text. Only returned if transcription is set to true when job is created.

Example:
[
{
"start": 0.5,
"end": 2.3,
"text": "Hello, how are you?",
"speaker": "SPEAKER_00"
}
]
error
string

Error message if any

warning
string

Warning message if any