APIv3
Exit Documentation

Pagination

API v3 list endpoints use page-based pagination.


Pagination parameters

List endpoints support these pagination parameters:

ParameterTypeDefaultLimitsDescription
pageinteger1Minimum 1Page number to retrieve.
limitinteger20Between 1 and 100Maximum records returned per page.

Values below the allowed minimum are normalized to the minimum. A limit greater than 100 is capped at 100.

bash
curl "https://yourbusiness.salesbinder.com/api/v3/customers?page=2&limit=50" \
  --header "Authorization: Bearer YOUR_API_KEY"

Pagination response

json
{
  "object": "list",
  "url": "/api/v3/customers",
  "has_more": true,
  "data": [],
  "pagination": {
    "page": 2,
    "per_page": 50,
    "total_pages": 4,
    "total_records": 184
  }
}
FieldDescription
has_moretrue when another page follows the current page.
pageCurrent requested page.
per_pageEffective page size after limits are applied.
total_pagesTotal pages available at the current page size.
total_recordsTotal records matching the request and the user's visibility boundary.

To retrieve all records, increment page until has_more is false.