Daily Active Addresses

    Definition

    The number of distinct addresses that participated in a transfer for the given asset in any given day. Each address is counted only once for the day, regardless of the amount of transfers it participates in. Both the senders and the receivers of the asset are counted.

    Daily Active Addresses for Bitcoin

    Access

    Free Access


    Measuring Unit

    Non-negative number of addresses


    Data Type

    Timeseries Data


    Frequency

    Daily Intervals


    Latency

    On-Chain Latency


    Available Assets

    Available for these assets


    API

    Available under the daily_active_addresses name.

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    {
      getMetric(metric: "daily_active_addresses") {
        timeseriesData(
          slug: "santiment"
          from: "2020-01-01T00:00:00Z"
          to: "2020-01-07T00:00:00Z"
          interval: "1d"
        ) {
          datetime
          value
        }
      }
    }

    Run in explorer