limit parameter so you can control page size.
The pagination style depends on the endpoint.
Offset pagination
Catalog-style endpoints useskip and limit.
Increase
skip by limit until you have fetched the rows you need.
Page pagination
Link listing usespage and limit.
page to fetch the next set of links.
Cursor pagination
Reports use cursor pagination.next_cursor, pass it back as cursor:
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.