Skip to main content
GET
/
wallets
/
{walletId}
/
balances
Get wallet balances
curl --request GET \
  --url https://api.zet.money/v1/wallets/{walletId}/balances \
  --header 'x-api-key: <api-key>'
{
  "success": true,
  "data": [
    {
      "chain": "base",
      "token": "USDC",
      "symbol": "USDC",
      "contractAddress": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "balance": "150.50",
      "decimals": 6
    }
  ]
}

Authorizations

x-api-key
string
header
required

Your Zet API key. Contact zetdotmoney@gmail.com to obtain your keys.

Path Parameters

walletId
string
required

Query Parameters

chain
enum<string>

Filter balances by chain. Primary chains where Zet-managed wallets operate

Available options:
base,
bsc

Response

Token balances.

success
boolean
Example:

true

data
object[]