Pular para o conteúdo principal
GET
/
client
/
balance
Consultar balanço financeiro
curl --request GET \
  --url https://api.pixusglobal.com/client/balance \
  --header 'Authorization: Bearer <token>'
{
  "fiat": [
    {
      "currency": "BRL",
      "totalDelta": 123
    }
  ],
  "crypto": [
    {
      "currency": "USDT",
      "totalDelta": 123
    }
  ],
  "credit": {
    "limit": 123,
    "used": 123,
    "available": 123
  },
  "canWithdraw": true
}

Autorizações

Authorization
string
header
obrigatório

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Resposta

Resumo financeiro

fiat
object[]
crypto
object[]
credit
object
canWithdraw
boolean