Skip to main content
All list endpoints in the TRXN API return paginated results. The default page size is 25 items per page.

Request parameters

integer
default:"1"
The page number to retrieve. Pages are 1-indexed.

Making a paginated request

Response format

Every paginated response includes a pagination object alongside the resource array:
integer
The current page number.
integer
The total number of pages available.
integer
The total number of items across all pages.

Page size

All endpoints return 25 items per page. This is not configurable.

Iterating through all pages

To retrieve all records, increment the page parameter until page equals pages:

Paginated endpoints

All list endpoints support pagination:
An empty page (no results) still returns a valid pagination object with count: 0 and pages: 0.