Pagination
List endpoints use cursor pagination.
By default, the API returns up to 25 items at a time. You can request up to 100 using limit.
GET /v1/invites?limit=50
Paginated responses use this shape:
{
"data": [],
"pagination": {
"next_cursor": "eyJpZCI6Imludl8xMjMifQ",
"has_more": true
}
}
Pass next_cursor back as the cursor parameter to fetch the next page.