Skip to content

nuez.transfer

Initiates a transfer from your nuez wallet to a CVU, CBU, or alias.

Requires scope: transfer:write

ParameterTypeRequiredDescription
amountnumberAmount in ARS (Argentine pesos). Minimum: 1.
destinationstringCVU (22 digits), CBU (22 digits), or alias (e.g. proveedor.empresa)
descriptionstringText attached to the transfer. Visible to the recipient. Max 140 chars.
idempotency_keystringUnique string to prevent duplicate transfers. If omitted, nuez generates one. Recommended for automated agents.

On success (below threshold or after approval):

{
"id": "txn_01HXYZ...",
"status": "completed",
"amount": 5000,
"destination": "proveedor.empresa",
"description": "Invoice #42",
"completed_at": "2026-04-23T14:32:01Z"
}

On approval required (amount ≥ threshold):

{
"id": "txn_01HXYZ...",
"status": "approved",
"amount": 50000,
"destination": "proveedor.empresa",
"description": "Monthly retainer",
"approved_at": "2026-04-23T14:33:15Z",
"completed_at": "2026-04-23T14:33:16Z"
}
ErrorWhen
insufficient_balanceWallet balance is less than amount
rejectedOwner rejected the WhatsApp approval
expiredApproval window timed out (5 minutes)
invalid_destinationCVU/CBU/alias could not be resolved
scope_deniedKey does not have transfer:write
allowlist_violationDestination is not in the key’s allowlist
Ask Claude: "Transfer $2500 to alias pago.servicios with description 'Monthly invoice'"

Claude calls:

{
"tool": "nuez.transfer",
"arguments": {
"amount": 2500,
"destination": "pago.servicios",
"description": "Monthly invoice",
"idempotency_key": "invoice-2026-04"
}
}