provider Transactions GET
/transactions @utdk/mercury
/transactions List all transactions
Retrieve a paginated list of all transactions across all accounts. Supports advanced filtering by date ranges, status, categories, and cursor-based pagination.
- status query
- array
- search query
- string
- start query
- string
- end query
- string
- postedStart query
- string
- postedEnd query
- string
- accountId query
- array
- mercuryCategory query
- string
- categoryId query
- string
- start_at query
- string
- start_after query
- string
- end_before query
- string
- limit query
- integer
- order query
- enum: asc, desc
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.
Code snippet
Updates live as you fill in the form above.
TypeScript
import mercury from '@utdk/mercury';
await mercury.listtransactions({
"limit": 1000,
"order": "asc"
})