v1

latestOpenAPI 3.1.02026-07-2681217214.1 KB
BALANCES
DEVELOPER
WALLET

Latest Fungible Token Balances

Get the latest balances for a list of wallets.

post/api/v1/developer/wallet/balances

Query parameters

with_liquidity_infoboolean

If true, returns total_liquidity_usd as well. See this page for more details.

If true, returns total_liquidity_usd as well. See this page for more details.

Request body

chainstring required

Lowercase chain name

addressstring required

Wallet address

Example request

[
  {
    "address": "0xab16781a13fe343a275f4bb5c883a64ceda52917",
    "chain": "ethereum"
  }
]

Response

Successful Response

cursorstring nullable

Pagination cursor for next page

Example response

{
  "items": [
    {
      "address": "0xab16781a13fe343a275f4bb5c883a64ceda52917",
      "block_hash": "0x1d8a87d3da939280fe80fff6b90d19ca629726a1e53849766cb82f57d3fdb836",
      "block_number": 23145508,
      "block_timestamp": "2025-08-15T09:22:23Z",
      "chain": "ethereum",
      "raw_balance": 1300000000000000000,
      "raw_balance_str": "1300000000000000000",
      "token": {
        "address": "0x0e7667a943b871835f7399e7a5adb14f70717c7e",
        "chain": "ethereum",
        "decimals": 18,
        "info": {
          "name": "ETH",
          "symbol": "ETH"
        },
        "object": "token",
        "type": "evm_erc20"
      }
    }
  ]
}