GET
/
wallet
/
balances
cURL
curl --request GET \
  --url https://openapiv1.coinstats.app/wallet/balances \
  --header 'X-API-KEY: <api-key>'
[
  {
    "chain": "<string>",
    "coinId": "<string>",
    "amount": 123,
    "name": "<string>",
    "symbol": "<string>",
    "price": 123,
    "priceBtc": 123,
    "imgUrl": "<string>",
    "pCh24h": 123,
    "rank": 123,
    "volume": 123,
    "decimals": 123,
    "contractAddress": "<string>"
  }
]
40 credits per request
Returns the balance data for a provided wallet address across all CoinStats-EVM compatible supported networks. You can choose to query individual networks or all available networks at a fixed cost of 400 credits. Each network query costs 40 credits.

Authorizations

X-API-KEY
string
header
required

API key needed to access the endpoints. Example: 'demo-api-key'

Query Parameters

address
string
required

The wallet address for which the balance is being queried. Must be a valid string representing an EVM-compatible wallet address.

Example:

"0x1234567890abcdef1234567890abcdef12345678"

networks
string
default:all

Specifies the blockchain networks to query for the wallet balance. Can be a single network (e.g., "ethereum") or a comma-separated list of networks (e.g., "ethereum,polygon,binance"). If not provided, the default is "all" supported networks.

Example:

"ethereum,polygon,binance"

Response

200
application/json

Get wallet balances

The response is of type object[].