provider Accounts GET /account/{accountId}/transactions
@utdk/mercury /account/{accountId}/transactions
List account transactions
Retrieve a paginated list of transactions for a specific account. Supports filtering by date range, status, and search terms.
accountId path required
string
limit query
integer
start query
string
end query
string
search query
string
status query
enum: pending, sent, cancelled, failed…
offset query
integer
order query
enum: asc, desc
requestId query
string
mercuryCategory query
string
categoryId query
string

Try it

Authentication
Configure credentials for Mercury API
Gateway
The gateway proxies requests and injects credentials server-side. Configure credentials above, then enter your gateway URL.

Saved automatically to browser storage.

listaccounttransactions
GET/account/{accountId}/transactions
Retrieve a paginated list of transactions for a specific account. Supports filtering by date range, status, and search terms.

Parameters

required

Enter a gateway URL above to enable sending.

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

TypeScript

import mercury from '@utdk/mercury';

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