Skip to main content
List endpoints accept page and limit query parameters and return a pagination object alongside the data array.

Request

Transaction history (GET /v1/payment/history and GET /v1/merchant/transactions) accepts a limit between 1 and 100. A larger value is capped at 100, and an unusable one falls back to 10, so a malformed request still returns a sensible page rather than an error or an empty result.

Response

Paginated payloads nest the records under data.data, with a sibling pagination object:
To iterate the full set, keep requesting nextPage until isLastPage is true.