Token
Get token balances for a wallet address
Returns all token balances for the specified wallet address. On SOL this is the native SOL balance plus SPL and Token-2022 balances, filtered to holdings worth more than $0.02. On ROBINHOOD it is the ERC-20 balances, with the native ETH balance reported under the wrapped native address rather than the zero address.
get/token/balance
Query parameters
chain'SOL' | 'ROBINHOOD'
Blockchain network to query. SOL returns Meteora (DLMM / DAMM v2) data; ROBINHOOD returns Uniswap V3 data on Robinhood Chain (EVM, chain id 4663). Unrecognised values fall back to SOL.
ownerstring required
The wallet address to get balances for
castring
Comma-separated list of token contract addresses to filter by
Response
Token balances retrieved successfully
Example response
{
"status": "success",
"data": [
{
"tokenAddress": "So11111111111111111111111111111111111111112",
"balance": 1.5,
"rawBalance": "1500000000",
"symbol": "SOL",
"decimals": 9,
"logo": "https://example.com/logo.png",
"balanceInUsd": 150.75,
"price": 100.5
}
]
}