nuez.list_transactions
Returns a paginated list of transactions for the wallet associated with the API key.
Requires scope: transactions:read
Parameters
Section titled “Parameters”| Parameter | Type | Required | Description |
|---|---|---|---|
limit | number | Number of transactions to return. Default: 20. Max: 100. | |
cursor | string | Pagination cursor from a previous response. |
Return value
Section titled “Return value”{ "transactions": [ { "id": "txn_01HXYZ...", "type": "debit", "amount": 5000, "destination": "proveedor.empresa", "description": "Invoice #42", "status": "completed", "created_at": "2026-04-23T14:32:01Z" }, { "id": "txn_01HABC...", "type": "credit", "amount": 100000, "origin": "0000003100010000123456", "description": "Wallet top-up", "status": "completed", "created_at": "2026-04-22T10:00:00Z" } ], "next_cursor": "cur_01HDEF...", "has_more": true}Example
Section titled “Example”Ask Claude: "Show me the last 5 transactions on my nuez wallet"Claude calls:
{ "tool": "nuez.list_transactions", "arguments": { "limit": 5 }}