Labelled Historical Balance

    Definition

    labelled_historical_balance shows a historical balance for a provided label FQN. I.e. 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 a 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.

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    {
      getMetric(metric: "labelled_historical_balance") {
        timeseriesData(
          from: "2024-03-01T00:00:00Z"
          to: "2024-03-07T00:00:00Z"
          interval: "1d"
          selector: {labelFqn: "santiment/centralized_exchange:v1", slug: "ethereum"}
        ) {
          datetime
          value
        }
      }
    }

    Run in explorer

    labelled_historical_balance_changes

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    {
      getMetric(metric: "labelled_historical_balance_changes") {
        timeseriesData(
          from: "2024-03-01T00:00:00Z"
          to: "2024-03-07T00:00:00Z"
          interval: "1d"
          selector: {labelFqn: "santiment/centralized_exchange:v1", slug: "ethereum"}
        ) {
          datetime
          value
        }
      }
    }

    Run in explorer