Most top level API endpoints allow bulk fetches and include pagination support.
By default, you will see the last 20 records, but you can supply the page and per_page parameters in your request to adjust what records are returned.
For example, this request will show the last 10 prizes created…
/prizes?per_page=10
To see the next 10 prizes, you can use the below...
/prizes?per_page=10&page=2
For most resources, there is an upper limit of 100 records you can query in a single request.
When this document indicates that a certain request supports pagination, you can also supply these URL parameters.