A common pattern in many REST APIs that return a large number of results is to do something like this:
- There's an endpoint
/item
that returns all items starting with the most recent and limited by an amount, e.g. 100 items per page. - You can get the total number …