Type Alias SyncTranscriptResponse

SyncTranscriptResponse: {
    audio_duration_ms: number;
    confidence: number;
    request_time_ms?: number;
    session_id: string;
    text: string;
    words: SyncWord[];
}

The result of a synchronous transcription request.

Type declaration

  • audio_duration_ms: number

    The total audio duration in milliseconds.

  • confidence: number

    The overall transcript confidence, in the range 0-1.

  • Optionalrequest_time_ms?: number

    The end-to-end server-side request time in milliseconds. undefined when the server predates the field.

  • session_id: string

    The server-generated UUID for this request. Record it to correlate a request with support.

  • text: string

    The full transcript text.

  • words: SyncWord[]

    Per-word confidence, plus start/end timings when the request set timestamps: true.