mercury_list_transactions
Need to audit deposit-account activity? List transactions from a Mercury deposit account with filters for date range, status, and search to reconcile statements or build ledger views.
Instructions
List transactions for a Mercury deposit account, with optional filters (date range, status, search).
USE WHEN: auditing deposit-account activity, reconciling a statement, or building a per-account ledger view. Filters server-side: status, start, end, search, limit, offset.
DO NOT USE: for IO Credit transactions (use mercury_list_credit_transactions, which targets the IO Credit account surface). For Treasury, use mercury_list_treasury_transactions.
RETURNS: { transactions: [{ id, amount, status, postedAt, counterpartyName, ... }] }.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| accountId | Yes | The Mercury account ID | |
| limit | No | Max results to return (1-500). Default: 500 | |
| offset | No | Pagination offset | |
| status | No | Filter by transaction status | |
| start | No | Filter posted on/after this date (YYYY-MM-DD) | |
| end | No | Filter posted on/before this date (YYYY-MM-DD) | |
| search | No | Search query (counterparty name, memo, etc.) |