Retrieve a paginated list of calendar meetings tracked by the notetaker.
Filters: start_time_after / start_time_before (ISO 8601 date range), bot_status (e.g. completed, failed, recording), meeting_title (case-insensitive text search).
Sorting: sort_by (start_time, created_at) with sort_order (asc/desc, default desc).
Pagination: Use offset and limit query params (max 100 per page).
Authenticate with a Bearer token: API key, OAuth token, or session token.
Records to skip for pagination. Defaults to 0.
x >= 0Max records per page (1–100). Defaults to 100.
1 <= x <= 100Return meetings starting at or after this timestamp (ISO 8601). Example: 2026-04-01T00:00:00Z.
Return meetings starting at or before this timestamp (ISO 8601). Example: 2026-04-30T23:59:59Z.
Filter by notetaker bot status. Common values: completed (finished recording), failed (bot encountered an error), recording (currently in progress).
pending, scheduled, joining, waiting_room, in_call, recording, completed, failed, cancelled Case-insensitive text search on meeting title. Example: Weekly Sync matches "Weekly Engineering Sync".
Column to sort results by. Defaults to start_time.
start_time — when the meeting is scheduledcreated_at — when the meeting was created in the systemstart_time, created_at Sort direction. Defaults to desc (newest first).
asc, desc