Python SDK
Using the REST API from Python
Section titled “Using the REST API from Python”import httpx
client = httpx.Client( base_url="https://api.nuez.app/v1", headers={"Authorization": "Bearer nz_sk_live_YOUR_KEY_HERE"},)
# Balancebalance = client.get("/balance").json()print(balance["balance"])
# Transferresponse = 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.