Get balances

Authentication requires either the x-api-keyheader or, for enhanced security, both x-signature + x-timestamp headers

GET /api/v1/paypal-payment/balances

Response example:

{
  "cryptoBalances": [
    {
      "assetSymbol": "BTC",
      "quantity": "0"
    }
  ],
  "balances": [
    {
      "currency": "USD",
      "primary": "USD",
      "totalBalance": {
        "currencyCode": "USD",
        "value": "100.00"
      },
      "availableBalance": {
        "currencyCode": "USD",
        "value": "100.00"
      },
      "withheldBalance": {
        "currencyCode": "USD",
        "value": "100.00"
      }
    }
  ],
  "accountId": "RZQ5DGXEYEY84",
  "asOfTime": "2025-03-04T12:29:59Z",
  "lastRefreshTime": "2025-03-04T12:29:59Z"
}