Pagination
The Sponsors API returns paginated results.
Each response includes a data array with the sponsors for the current page, a meta object with pagination details, and a links object with URLs for moving between pages.
Example response
Fetching the next page
Use links.next to fetch the next page of results.
If links.next is a URL, send another request to that URL with the same API token. If links.next is null, you are already on the last page.
For example, the response above shows:
That URL returns page 2. Continue following links.next until it returns null.
Reading pagination metadata
meta.totalis the total number of matching sponsors.meta.per_pageis the number of sponsors returned per page.meta.current_pageis the page you are currently viewing.meta.last_pageis the final page number.