v1
latestOpenAPI 3.1.02026-07-132363652.9 MBMerchant Bank Accounts
List transactions for a bank account (money in / money out). Currently supported only for refund accounts; other roles return 404. Supports JSON (paginated) and xlsx/csv exports via Accept header.
List transactions for a bank account (money in / money out). Currently supported only for refund accounts; other roles return 404. Supports JSON (paginated) and xlsx/csv exports via Accept header.
get/api/v1/bank-accounts/{bankAccountId}/transactions
Path parameters
bankAccountIdstring uuid required
Bank account ID
Bank account ID
Query parameters
date_fromstring date
Filter from date (ISO 8601 YYYY-MM-DD)
Example:2026-04-01
Filter from date (ISO 8601 YYYY-MM-DD)
date_tostring date
Filter to date (ISO 8601 YYYY-MM-DD)
Example:2026-04-30
Filter to date (ISO 8601 YYYY-MM-DD)
pageinteger
Page number (1-based)
Page number (1-based)
Rows per page (provider-limited)
Filter to money in or money out only. Omit for both.
Response
Success
Example response
{
"success": true,
"data": [
{
"amount": "2.00"
}
],
"pagination": {
"total": 150,
"page": 1,
"limit": 25,
"totalPages": 6,
"hasNextPage": true
}
}