fetch_transaction_list
Retrieve account cash movements including deposits, withdrawals, fees, interest payments, and internal transfers. Use cursor-based pagination to audit cash flow or reconcile transactions.
Instructions
Retrieve account cash movements such as deposits, withdrawals, fees,
interest payments, and internal transfers. Supports cursor-based pagination.
Use this to audit account cash flow or to reconcile deposits/withdrawals.
For a combined view of orders and transactions together, use fetch_recent_activity.
Args:
cursor: Pagination cursor from a previous response. Omit for the first page.
time: Filter transactions from this ISO 8601 timestamp onward
(e.g., '2024-06-01T00:00:00Z'). Omit for all.
limit: Number of records per page, 1-50. Defaults to 20.
Returns:
PaginatedTransactions with items (type, dateTime, amount, reference) and nextPagePathInput Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cursor | No | ||
| time | No | ||
| limit | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| items | Yes | ||
| nextPagePath | No |