cURL
curl --request GET \ --url https://developer-api.squads.so/api/v1/smart-accounts/{smart_account_address}/balances \ --header 'Authorization: Bearer <token>' \ --header 'x-squads-network: <x-squads-network>'
{ "balances": [ { "token_address": "<string>", "amount": "<string>", "amount_decimal": "<string>", "decimals": 123, "symbol": "<string>", "name": "<string>", "logo_url": "<string>" } ] }
Retrieve token balances for a Smart Account
UUID-based API key provided by Squads
Specifies the network for the API request
mainnet
devnet
The address of the smart account
Token balances retrieved successfully
Show child attributes
Address of the token
Token amount in base units
Human-readable decimal amount
Number of decimal places for the token
Token symbol (e.g., "SOL", "USDC")
Token name (e.g., "Solana", "USD Coin")
URL to token logo image
Was this page helpful?