This endpoint enables you to retrieve all transaction data processed by Zotlo using filters such as date range, package, and country. The endpoint supports cursor-based pagination, allowing you to fetch large datasets efficiently and maintain stable integration workflows.
The service operates with the GET method.
Method
GET
URL
Request Parameters
Field
Type
Description
limit
Optional
Number of records to return in a single page. Default: 25. Maximum: 100.
country
Optional
Filters transactions by country where the payment was processed (2-letter ISO code, e.g. UK, US).
package_id
Optional
Filters transactions by the associated packageId.
start_date
Optional
Lists transactions created on or after this date. Format: YYYY-MM-DD
end_date
Optional
Lists transactions created on or before this date. Format: YYYY-MM-DD.
before
Optional
Cursor token to fetch the previous page. Use the value returned under paging.cursors.previous from the last response.
after
Optional
Cursor token to fetch the next page. Use the value returned under paging.cursors.next from the last response.