Skip to main content
GET
/
user
/
balances
Get Account Balances
const options = {method: 'GET'};

fetch('https://gp-auth-module.prod.gnosispay.com/user/balances', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "data": [
    {
      "currency": "<string>",
      "decimals": 123,
      "total": "<string>",
      "spendable": "<string>",
      "deductions": {
        "authorizedHolds": "<string>",
        "nonSpendable": "<string>",
        "processingDeposits": "<string>"
      },
      "tokens": [
        {
          "token": "<string>",
          "decimals": 123,
          "spendable": "<string>",
          "nonSpendable": "<string>",
          "processingDeposits": "<string>"
        }
      ]
    }
  ]
}

Response

Account balances retrieved successfully

data
object[]
required