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:
| Parameter | Default | Notes |
|---|---|---|
page | 1 | 1-indexed page number. |
items | 25 | Records per page, up to a maximum of 250. |
Example
Fetch the second hundred records from a collection:
curl "https://api.superfiliate.com/api/v1/<resource>?page=2&items=100" \
-H "Authorization: Bearer $SF_CLIENT_ID:$SF_CLIENT_SECRET"