List Bank Transactions
GET/api/xero/v2/bank-transactions
Paginated, filterable, sortable list of locally-cached Xero bank transactions (synced from Xero's BankTransactions API).
Any valid API token can call this endpoint — no specific scope required. Manage tokens.
Authentication: Requires Bearer token.
Filtering goes through XeroEntityListing + AdvancedFilterBuilder, so every column accepts the full operator set both as filter[column.operator]=value AND inside the base64 filter_groups tree (the advanced-filter modal and the ever-present Type/Status/Reconciled/Date dropdowns).
Each column also supports the is_not operator (e.g. filter[status.is_not]=DELETED to exclude voided transactions), plus the full operator set inside filter_groups.
Allowed sorts: id, date, total, type, status, is_reconciled, contact_name, bank_account_name, reference, updated_at, created_at (default -date).
Request
Responses
- 200
- 401
- 403
- 429
OK
Response Headers
Unauthenticated — the bearer token is missing, revoked, expired, or malformed. Never retry automatically; fix the credential. See the Errors guide.
Forbidden — the token lacks a required scope, the endpoint is not available to API tokens, or the user behind the token lacks the permission. A human must adjust the token scopes or user permissions; do not retry.
Rate limited — platform limit is 1,000 requests/min; individual tokens may carry lower limits. Honor the Retry-After header before retrying. See the Rate Limits guide.