Initiate a Pix payment from a customer’s BRL balance to any Pix key or bank account.
We will only process payouts to counterparties that have the same document as the customer.
If you want to send a payout to a counterparty with a different document, talk to your account manager.
Always provide a unique idempotency_key to prevent duplicate payments:
Copy
Ask AI
# Generate a unique key based on your internal referenceidempotency_key = f"order_{order_id}_payment"# Or use UUIDidempotency_key = f"pay_{uuid.uuid4()}"
If you retry a request with the same idempotency key:
If the original succeeded, you’ll get the original response
If the original failed, the payment won’t be retried automatically
Idempotency keys are valid for 24 hours after the first request.