PayZuPayZu Docs

Concepts

Overview

PayZu Processamento is a REST API with 29 endpoints split across 7 groups. All communication happens in JSON, over HTTPS, with Bearer token. Monetary values are always in reais (BRL), not in cents.

The 7 endpoint groups

GroupEndpointsWhat it does
Pix charges4Create and query Pix charges (deposits), QR Code, receipt.
Withdrawals6Send Pix by key or QR Code, DICT lookup, QR parsing.
Internal transfer2Move balance between PayZu accounts, instant.
Account2Profile, permissions, limits and balance.
Reports6List transactions, generate async CSV.
Callbacks4Inspect and resend webhooks.
Infractions (MED)5Pix disputes initiated by the payer and defense submission.

Transaction model

Every movement at PayZu is represented by a transaction. Whether it's a charge, withdrawal or internal transfer, the basic structure is the same.

Main fields

FieldTypePurpose
idstringUnique identifier of the transaction at PayZu.
typestringDEPOSIT, WITHDRAW or INTERNAL_TRANSFER.
statusstringCurrent state. The most common ones: PENDING, COMPLETED, REFUNDED, EXPIRED, ERROR.
amountnumberValue in reais (BRL), not in cents. E.g.: 10.90 is R$ 10.90.
clientReferencestringYour external identifier. Returns in every callback. Use it for idempotência and lookup.
virtualAccountstringVirtual subaccount (up to 50 chars). Use it for multi-tenant (stores, branches, marketplaces).
callbackUrlstringURL to receive status updates via webhook.
endToEndIdstringUnique identifier of the operation at Bacen. Useful for tracking in disputes.

All fields detailed in the Glossary.

Typical lifecycle

Full states by type in each endpoint reference. Quick table in the Glossary · Transaction status.

API conventions

ItemValue
Base URLhttps://api.payzu.processamento.com/v1
AuthenticationAuthorization: Bearer YOUR_TOKEN
Content-Typeapplication/json (required on every call)
ValuesIn reais (BRL), never in cents
DatesISO 8601 (2025-11-23T10:46:26.986Z)
EncodingUTF-8
Paginationpage + limit with hasNextPage flag
WebhooksPOST to callbackUrl, retry up to 72x

Next important concepts

On this page