list_transactions
Retrieve cash transaction history including deposits, withdrawals, fees, and transfers. Supports pagination with cursor for large result sets.
Instructions
List cash transactions (deposits, withdrawals, fees, transfers).
Returns {"items": [...], "next_cursor": str | None}. Each item:
type (WITHDRAW | DEPOSIT | FEE | TRANSFER), amount (in the
transaction currency), currency, dateTime (ISO 8601), reference
(transaction ID). Unlike the other history endpoints the cursor here
is a string, not a number. Pass next_cursor back as cursor for the
next page; it is null on the last page.
Rate limit: 6 requests per 1 minute.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| time | No | Start listing from this time, ISO 8601 date-time, e.g. "2026-01-01T00:00:00Z". | |
| limit | No | Items per page. | |
| cursor | No | Pagination cursor from a previous call's next_cursor. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||