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:v1
  • santiment/fund:v1
  • santiment/miner:v1
  • santiment/owner->binance:v1
  • santiment/whale_usd_balance(ethereum):v1

Access

Restricted Access


Measuring Unit

Number of tokens


Data Type

Timeseries Data


Frequency

Five-Minute Intervals


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"}
)
}
}