Superfiliate

Partners API

Pagination

Walk large collections with the page and items query parameters.

The parameters

Collections that can grow unbounded are paginated with two query parameters:

ParameterDefaultNotes
page11-indexed page number.
items25Records per page, up to a maximum of 250.

Example

Fetch the second hundred records from a collection:

Page 2, 100 per pagebash
curl "https://api.superfiliate.com/api/v1/<resource>?page=2&items=100" \
  -H "Authorization: Bearer $SF_CLIENT_ID:$SF_CLIENT_SECRET"