Transaction count

Description

The Transaction Count metric indicates the number of unique transactions occurring on the network within a specific day.

As an alternative to the transaction count metric, there's the Payments Count metric, which reflects the number of individual payments made on the network within a specific day.

The difference between Transaction Count and Payments Count lies in the scenario where a single transaction includes multiple transfers. In such cases, the Transaction Count registers this as a single transaction, while the Payments Count registers each individual transfer within that transaction.


Access

Free Access


Measuring Unit

Amount of transactions


Data Type

Timeseries Data


Frequency

Daily Interval


Latency

On-Chain Latency


Available Assets

Available for these assets

Note: All metrics are available for the same set of assets


SanAPI

Available under the transactions_count name.

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

Run in Explorer

Available under the payments_count name.

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

Run in Explorer

Help & Feedback

We are using cookies to improve your experience!

By clicking “Allow all”, you agree to use of all cookies. Visit our Cookies Policy to learn more.