provider Accounts GET /account/{accountId}/statements
@utdk/mercury /account/{accountId}/statements
Get account statements
Retrieve a paginated list of monthly statements for a specific account. Supports cursor-based pagination with limit, order, start_after, and end_before query parameters, as well as date range filtering with start and end parameters.
accountId path required
string
limit query
integer
order query
enum: asc, desc
start_after query
string
end_before query
string
start query
string
end query
string

Try it

Authentication
Configure credentials for Mercury API
getaccountstatements
GET/account/{accountId}/statements
Retrieve a paginated list of monthly statements for a specific account. Supports cursor-based pagination with limit, order, start_after, and end_before query parameters, as well as date range filtering with start and end parameters.

Parameters

required

Configure credentials above to enable sending.

Code snippet
Updates live as you fill in the form above.

TypeScript

import mercury from '@utdk/mercury';

await mercury.getaccountstatements({
  "limit": 1000,
  "order": "desc"
})