Understanding Paginated Responses
Endpoints returning lists are designed to provide responses in pages, each containing a maximum of 25 objects by default. However, Clasp allows customization of page size up to a maximum of 100 objects. A typical paginated response includes:next
: URL pointing to the next page of results (or null if no further pages are available).previous
: URL pointing to the previous page of results (or null if this is the first page).results
: The data objects for the current page.