OpenAPI 3.1.0raw.githubusercontent.com2026-08-191,3412,1385.0 MB

ec31f78cf002

Meeting Session Data

List meeting session transcript

Returns transcript segments ordered by ascending seq. Default limit is 100 and maximum is 1,000. Continue with after=meta.next_after. A long-poll timeout returns 200 with empty data and meta.next_after: null; retain the cursor supplied to that request because null is not a replacement cursor.

get/meeting_sessions/{id}/transcript

Path parameters

idstring required
Example:mtgsess_a1b2c3d4-e5f6-7890-abcd-ef1234567890

Unique identifier for the meeting session.

Query parameters

afterinteger

Return results with a cursor position after this value.

limitinteger

Maximum number of results to return per page.

wait_secondsinteger

Long-poll duration in seconds. The server holds the connection open for up to this many seconds, waiting for new or updated results before returning an empty response. Set to 0 for an immediate response.

Response

Successful response with transcript segments (may be empty on wait timeout).

Example response

{
  "data": [
    {
      "confidence": 0.94,
      "occurred_at": "2026-06-16T09:00:42Z",
      "relative_ts": 1240.5,
      "seq": 41,
      "speaker_label": "Ada L.",
      "text": "let's ship it"
    }
  ],
  "meta": {
    "next_after": 41
  }
}