Token
Get token balances for a wallet address
Returns all token balances (SOL and SPL tokens) for the specified wallet address
get/token/balance
Query parameters
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
}
]
}