Labelled Historical Balance
Definition
labelled_historical_balance shows the historical balance for a provided label FQN. It shows a total combined balance for all addresses labelled with a given label FQN — for instance, all centralized exchange addresses or all miner addresses.
labelled_historical_balance_changes shows the change in the historical balance.
You can find available labels along with label FQNs at labels academy section. Here are some label FQN examples:
santiment/centralized_exchange:v1santiment/fund:v1santiment/miner:v1santiment/owner->binance:v1santiment/whale_usd_balance(ethereum):v1
Access
Measuring Unit
Number of tokens
Data Type
Frequency
Available Assets
Available for these assets
API
Available under labelled_historical_balance. The query below fetches a total ethereum balance of all centralized_exchange addresses.
{ getMetric(metric: "labelled_historical_balance") { timeseriesDataJson( from: "2024-03-01T00:00:00Z" to: "2024-03-07T00:00:00Z" interval: "1d" selector: {labelFqn: "santiment/centralized_exchange:v1", slug: "ethereum"} ) }}labelled_historical_balance_changes
{ getMetric(metric: "labelled_historical_balance_changes") { timeseriesDataJson( from: "2024-03-01T00:00:00Z" to: "2024-03-07T00:00:00Z" interval: "1d" selector: {labelFqn: "santiment/centralized_exchange:v1", slug: "ethereum"} ) }}