v1

latestOpenAPI 3.0.12026-07-268028223.9 KB
Meetings

Get a meeting transcript

Retrieve the transcript for a meeting. The transcript field is null when the meeting has no transcript. When present, transcript is a structured array of text segments with timestamps and participant names.

get/v1/meetings/{meeting_id}/transcript

Response

successful

meeting_idstring required

Example response

{
  "transcript": [
    {
      "text": "hello",
      "participant": {
        "name": "Speaker A"
      }
    }
  ]
}