I'mBoardDocs
Guides

Guide: List Board Meetings

How to paginate through a board's meetings using cursor-based pagination.

How to paginate through a board's meetings using cursor-based pagination.

Prerequisites

Fetch the First Page

curl -s "https://app.imboard.ai/api/v1/boards/BOARD_ID/meetings?limit=10" \
  -H "Authorization: Bearer imb_pat_YOUR_TOKEN" | jq

Paginate Through Results

If meta.hasMore is true, use meta.nextCursor to fetch the next page:

curl -s "https://app.imboard.ai/api/v1/boards/BOARD_ID/meetings?limit=10&cursor=NEXT_CURSOR" \
  -H "Authorization: Bearer imb_pat_YOUR_TOKEN" | jq

Repeat until hasMore is false.

Sort by Start Time

curl -s "https://app.imboard.ai/api/v1/boards/BOARD_ID/meetings?sort=startTime&order=desc" \
  -H "Authorization: Bearer imb_pat_YOUR_TOKEN" | jq

See Also

On this page