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

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

Documentation Index

Fetch the complete documentation index at: https://gnosispay-feat-v2-auth-module.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Response

Account balances retrieved successfully

data
object[]
required