Skip to content

nuez.list_transactions

Returns a paginated list of transactions for the wallet associated with the API key.

Requires scope: transactions:read

ParameterTypeRequiredDescription
limitnumberNumber of transactions to return. Default: 20. Max: 100.
cursorstringPagination cursor from a previous response.
{
"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
}
Ask Claude: "Show me the last 5 transactions on my nuez wallet"

Claude calls:

{
"tool": "nuez.list_transactions",
"arguments": { "limit": 5 }
}