Pagination
Many API endpoints that return lists of items use cursor-based pagination.How It Works
Paginated responses include:data- Array of items for the current pagenext_cursor- Cursor for the next page (null if no more pages)
How to work with paginated API responses
data - Array of items for the current pagenext_cursor - Cursor for the next page (null if no more pages)