v1

latestOpenAPI 3.1.12026-07-2692827.1 KB
Recordings

Get transcript

This endpoint has two behaviors depending on your request payload:

  • If you send destination_url, the endpoint will behave in an asynchronous manner.
  • If you do not send destination_url, the endpoint will return the data directly.
get/recordings/{recording_id}/transcript

Path parameters

recording_idinteger required
Example:123456789

The ID of the meeting recording to fetch the transcript for.

Query parameters

destination_urlstring uri
Example:https://example.com/destination

Destination URL for where we'll POST the transcript. If not sent, this endpoint will return the data directly.

Response

Either the destination URL for where we'll POST the transcript, or the transcript for the recording as an array.

OR

Example response

{
  "transcript": [
    {
      "speaker": {
        "display_name": "Alice Johnson",
        "matched_calendar_invitee_email": "alice.johnson@acme.com"
      },
      "text": "Let's revisit the budget allocations.",
      "timestamp": "00:05:32"
    }
  ]
}