PayAlpha
  1. Wallets
PayAlpha
  • Intro
  • Pix In
    • Create Pix In Transaction
      POST
    • Get Pix In Transaction
      GET
  • Pix Out
    • Create Pix Out Transaction
      POST
    • Get Pix Out Transaction
      GET
  • Webhooks (Reference)
    • Pix In - Payment Confirmed (transaction.paid)
      POST
    • Pix In - Refunded (transaction.refunded)
      POST
    • Pix Out - Transfer Confirmed (transfer.paid)
      POST
    • Pix Out - Transfer Failed (transfer.failed)
      POST
  • Wallets
    • Get Wallet Balances
      GET
  1. Wallets

Get Wallet Balances

GET
{{baseUrl}}/api/v1/balance
Returns balances for PIX, PIX_BLOCKED, and RESERVE wallets for the authenticated company. Requires Basic Auth (secretKey:publicKey).

Requisição

Authorization
Envie suas requisições HTTP com um cabeçalho
Authorization
que contenha a palavra Basic seguida por um espaço e uma string codificada em base64 username:password
Exemplo:
Authorization: Basic *****************

Respostas

🟢200
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET '{{baseUrl}}/api/v1/balance' \
--header 'Authorization: Basic <encoded-value>'
Response Response Example
{
  "success": true,
  "data": {
    "pix": { "balance": "36.36" },
    "pixBlocked": { "balance": "0.00" },
    "reserve": { "balance": "0.00" }
  }
}
Modificado em 2025-12-29 21:29:45
Página anterior
Wallets
Built with