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.

{
getMetric(metric: "transactions_count") {
timeseriesDataJson(
slug: "santiment"
from: "2020-04-01T00:00:00Z"
to: "2020-04-07T00:00:00Z"
interval: "1d"
)
}
}

Available under the payments_count name.

{
getMetric(metric: "payments_count") {
timeseriesDataJson(
slug: "santiment"
from: "2020-04-01T00:00:00Z"
to: "2020-04-07T00:00:00Z"
interval: "1d"
)
}
}