Skip to main content
List endpoints use a pagination object in the request body.
{
  "pagination": {
    "page": 1,
    "per_page": 25,
    "sort_by": "created_at",
    "sort_direction": "desc"
  }
}
FieldTypeDescription
pagenumberPage number, starting at 1.
per_pagenumberNumber of records to return.
sort_bystringOptional sort field supported by the endpoint.
sort_directionstringasc or desc.
Paginated responses include page metadata when the endpoint supports total counts.
{
  "result": {
    "current_page": 1,
    "total_records": 125,
    "total_pages": 5,
    "data": []
  }
}
For transaction tables, use the same filters for /transactions, /transactions/count, and /transactions/summary.