> ## Documentation Index
> Fetch the complete documentation index at: https://docs.bitski.com/llms.txt
> Use this file to discover all available pages before exploring further.

# GET Balances

> Get the NFT and currency balances for a set of addresses across chains.

### Parameters

<ParamField query="address" type="string" placeholder="0x1e1834a97f7bbab0175ef59788c1b9da30efd97b" required>
  The wallet address to retrieve balances for.
</ParamField>

<ParamField query="chainIds" type="string" placeholder="1" optional default="1,137">
  Comma-separated list of chain IDs to query activities for.
</ParamField>

<ParamField query="nfts" type="boolean" optional default="false">
  Filter for NFT balances only. By default, balances only returns currencies.
</ParamField>

<ParamField query="contractAddresses" type="string" optional>
  Filter to a specific set of contracts. Useful if you only want to show
  balances for contracts you own.
</ParamField>

### Examples

<img src="https://mintcdn.com/bitski/M9S3MklVi0sxl9A9/assets/images/nfts-f0bbf1634267294f7b419c070b721572.png?fit=max&auto=format&n=M9S3MklVi0sxl9A9&q=85&s=e789772a7882f4fa85dbae3bb73f2463" alt="NFT Balances" width="5400" height="3600" data-path="assets/images/nfts-f0bbf1634267294f7b419c070b721572.png" />

<img src="https://mintcdn.com/bitski/Et9Vn7Lnb6TuZTLD/assets/images/tokens-b99bc36b64067951f3a5dd1c4c27d799.png?fit=max&auto=format&n=Et9Vn7Lnb6TuZTLD&q=85&s=f0c5eeedd58629ab88a20bb8e9a95f29" alt="Currency Balances" width="5400" height="3600" data-path="assets/images/tokens-b99bc36b64067951f3a5dd1c4c27d799.png" />

<ResponseExample>
  ```json Sample Response theme={null}
  {
    "balances": [
      {
        "address": "0xa63a667a8cd2b28ec93b8c36d77b26ee06fe3a5c",
        "balance": "0.077375617021211054",
        "balanceRawInteger": "77375617021211054",
        "balanceUsd": "162.359383579218453798",
        "chainId": 1,
        "coinType": 60,
        "contractAddress": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee",
        "imageUrl": "https://www.ankr.com/rpc/static/media/eth.3ee8ddd4.svg",
        "tokenDecimals": 18,
        "tokenName": "Ethereum",
        "tokenPrice": "2098.327481313793158924",
        "tokenStandard": "NATIVE",
        "tokenSymbol": "ETH"
      }
      ...
    ]
  }
  ```
</ResponseExample>
