Skip to content

Python SDK

import httpx
client = httpx.Client(
base_url="https://api.nuez.app/v1",
headers={"Authorization": "Bearer nz_sk_live_YOUR_KEY_HERE"},
)
# Balance
balance = client.get("/balance").json()
print(balance["balance"])
# Transfer
response = client.post(
"/transfers",
headers={"Idempotency-Key": "inv-2026-04-001"},
json={
"amount": 5000,
"destination": "proveedor.empresa",
"description": "Invoice #42",
},
)
print(response.json())

Join the waitlist to be notified when the Python SDK is available.