Conversation Transcript

Retrieves the transcript of a processed conversation

URL

/single-feature-api/meeting/transcription

Method

GET

Description

This endpoint allows you to retrieve the transcription of a processed meeting. The transcription provides a textual representation of the spoken content during the meeting.

Parameters

  • Authorization (header parameter, required): Bearer token for authentication.

  • file-hash (query parameter, required): Hash of the meeting recording file.

Responses

  • 200: Meeting transcription successfully retrieved. Returns a JSON object containing the meeting transcription (Transcription_model).

  • 400: Bad request error.

  • 401: Unauthorized error.

  • 404: Meeting not found error.

  • Other possible responses are not specified.

Transcription_model

This is the JSON response schema for the successful 200 response:

  • Transcription: An array of objects representing each segment of the transcription.

    • speaker: The ID of the speaker who spoke the segment.

    • transcription: The text transcription of the spoken segment.

    • start_timestamp: The start timestamp of the segment.

Example

Request

Response

This example response shows a portion of the meeting transcription where Speaker 1 and Speaker 2 exchange greetings and have a short conversation. Each segment of the transcription includes the speaker ID, the corresponding transcription text, and the start timestamp of the segment.

Last updated