v1

latestOpenAPI 3.0.42026-07-26159287356.1 KB
Onchain

Get wallet token balances

Fetch all token balances for a wallet address across multiple networks. Results are paginated.

get/v2/onchain/token/balances

Query parameters

networksstring required
Example:base

Comma-separated list of networks to query. Each value must be a valid network (ethereum, optimism, base, arbitrum, robinhood).

addressstring required
Example:0x5a927ac639636e534b678e81768ca19e2c6280b7

Wallet address

limitinteger
Example:50

Number of results to return (max 100)

cursorstring

Pagination cursor.

Response

Success

Example response

{
  "balances": [
    {
      "address": "0x5a927ac639636e534b678e81768ca19e2c6280b7",
      "balance": "1000000000",
      "balance_usd": "1000.50",
      "decimals": 6,
      "image_url": "https://example.com/token.png",
      "name": "USD Coin",
      "price_usd": "1.00",
      "symbol": "USDC"
    }
  ]
}