List reports
Returns a paginated list of the account’s previously generated reports for a given report type and date range, each with a pre-signed downloadUrl.
Listable report types: managed_payout_transactions, managed_payment_wallet_balances, managed_payin_transactions, and camt053_managed. The non-managed camt053 daily statement is not available through this endpoint; retrieve it with POST /v1/reports instead.
Note: the id of each listed report is a storage object key, not the deterministic report UUID. It cannot be passed to GET /v1/reports/{id} or GET /v1/reports/{id}/content; download a listed report using its downloadUrl.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
Report type to list. The non-managed camt053 type is not supported here.
managed_payout_transactions, managed_payment_wallet_balances, managed_payin_transactions, camt053_managed "managed_payout_transactions"
Start of the date range to list (inclusive), formatted as YYYY-MM-DD. Must be in the past and on or before endDate.
"2025-01-01"
End of the date range to list (inclusive), formatted as YYYY-MM-DD. Must be in the past or present and on or after startDate.
"2025-01-31"
Filters results to a single aggregation window. When omitted, reports of all timeframes are returned.
daily, monthly "daily"
A collection ID value used for pagination.
It marks the exclusive end of a page. When provided, the collection resource will return the next n items before
the id, with n being specified by pageSize.
The items will be returned in the natural order of the collection.
The resource will return the first page if neither pageAfter nor pageBefore are specified.
SHOULD NOT be used in conjuction with pageAfter.
A collection ID value used for pagination.
It marks the exclusive begin of a page. When provided, the collection resource will return the next n items after
the id, with n being specified by pageSize.
The items will be returned in the natural order of the collection.
The resource will return the first page if neither pageAfter nor pageBefore are specified.
SHOULD NOT be used in conjuction with pageBefore.
Limits the number of items to be returned.
Some collections have a strict upper bound that will disregard this value. In case the specified value is higher than the allowed limit, the collection limit will be used.
If avoided, the collection will determine the page size itself.
x >= 15
Response
Successfully retrieved a list of reports.