Skip to main content

Pagination

Paginated endpoints use 1-based pages.

ParameterDescription
pagePage number. Defaults to 1.
pageSizeRows per page. Endpoint-specific max, usually 100 or 200.
limitAlias accepted by some endpoints.

Response pagination usually includes:

{
"pagination": {
"page": 1,
"page_size": 25,
"total": 120,
"total_pages": 5,
"has_more": true
}
}

Box history uses cursor pagination with cursor, since_id, and next_cursor.