Transaction Volume

    Description

    The transaction_volume metric shows total on-chain amount of coins/tokens transacted for a given asset in a given time interval.

    The transaction_volume_usd metric shows the total on-chain amount of coins/tokens in USD transacted for a given asset in a given time interval. To compute it, the amount of coins/tokens in each transaction is multiplied by the price in USD of the asset at that moment.


    Access

    Restricted Access.


    Measuring Unit

    Amount of coins/tokens


    Data Type

    Timeseries Data


    Change Metrics

    Change Metrics


    Frequency

    Five-Minute Intervals


    Latency

    On-Chain Latency


    Available Assets

    Available for these assets


    SanAPI

    Available under the transaction_volume name.

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

    Run in Explorer