Skip to main content
GET
/
balance
Obter saldo disponível
curl --request GET \
  --url https://api.conta.paybeehive.com.br/v1/balance \
  --header 'Authorization: Basic <encoded-value>'
{
  "available": 123456,
  "blocked": 0,
  "currency": "BRL",
  "updatedAt": "2026-01-04T12:00:00Z"
}

Authorizations

Authorization
string
header
required

Basic Authorization usando SECRET_KEY como usuário e "x" como senha.

Response

Saldo

available
integer
Example:

123456

blocked
integer
Example:

0

currency
string
Example:

"BRL"

updatedAt
string
Example:

"2026-01-04T12:00:00Z"