Skip to main content
Most list endpoints accept a limit parameter so you can control page size. The pagination style depends on the endpoint.

Offset pagination

Catalog-style endpoints use skip and limit.
Responses include: Increase skip by limit until you have fetched the rows you need.

Page pagination

Link listing uses page and limit.
Increase page to fetch the next set of links.

Cursor pagination

Reports use cursor pagination.
If the response includes next_cursor, pass it back as cursor:
When next_cursor is null, there are no more rows. Seller report responses also include total_count_exact. It’s true when total_count is an exact count of matching rows. If the underlying count hit the database’s bounded time limit, total_count_exact comes back false — treat total_count as a lower bound and keep paging via next_cursor.