Skip to main content
List endpoints return a pagination object alongside data. Control the page with page (1-based) and the page size with limit (default 25, max 100).
curl "https://api.referralful.com/v1/affiliates?page=2&limit=50" \
  -u rfl_live_your_secret:
{
  "pagination": {
    "previous_page": 1,
    "current_page": 2,
    "next_page": 3,
    "count": 50,
    "limit": 50,
    "total_pages": 4,
    "total_count": 180
  },
  "data": [ ]
}
When next_page is null, you’ve reached the last page.