mercury_list_credit_transactions
List Mercury IO Credit card transactions, including pending authorizations, for auditing, reconciliation, or building a card-level transaction view.
Instructions
List transactions on a Mercury IO Credit card account, including pending (not-yet-settled) card authorisations.
USE WHEN: auditing IO Credit card spend, reconciling a statement, or building a card-level transaction view. Wraps GET /account/{id}/transactions — same path Mercury exposes for deposit-account transactions; both this tool and mercury_list_transactions hit it. Supports the same filters.
DO NOT USE: for deposit-account transactions (use mercury_list_transactions). For posted transactions only, filter by status: "sent".
RETURNS: { transactions: [{ id, amount, status, postedAt, counterpartyName, ... }] }. pending items are card authorisations that may still be reversed.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| accountId | Yes | The Mercury IO Credit account ID (from mercury_list_credit_accounts) | |
| limit | No | Max results to return (1-500). Default: 500 | |
| offset | No | Pagination offset | |
| status | No | Filter by transaction status. `pending` = card auth not yet settled. | |
| 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.) |