SyncWord: {
    confidence: number;
    end?: number;
    start?: number;
    text: string;
}

A single word in a sync transcript.

start/end are in milliseconds and present only when the request set timestamps: true; otherwise they are omitted.

Type declaration

  • confidence: number

    The confidence score of the word, in the range 0-1.

  • Optionalend?: number

    The end time of the word in milliseconds. Absent unless timestamps was requested.

  • Optionalstart?: number

    The start time of the word in milliseconds. Absent unless timestamps was requested.

  • text: string

    The text of the word.