Skip to Content
APIStatisticsGet Cumulative Transaction Data

Get Cumulative Transaction Data

1. Overview & Typical Use

Returns daily cumulative transaction data sorted by time, including cumulative values for each transaction type.

  • Typical use: display transaction volume milestones, analyze cumulative growth curves by transaction type.
  • When not to use: to view daily new transaction counts use “Get Daily Transaction Trends”.

2. Endpoint & Authentication

GET /api/overview/transactionnum

For Base URL and authentication, see Common Network & Authentication.

3. Request

ParameterTypeRequiredDefaultDescription
daysintegerNo15Number of days to query, max 2000

4. Response

Top-level

FieldTypeRequiredDescriptionUnit/Precision
successbooleanRequiredWhether the request succeeded
increaseTypestringRequiredGrowth type
increaseRatiostringRequiredGrowth rate
dataarrayRequiredDaily cumulative transaction data list; see below

data[] elements

FieldTypeRequiredDescriptionUnit/Precision
dateintegerRequiredStatistics dateMillisecond timestamp
dateDayStrstringRequiredStatistics date stringyyyy-MM-dd
totalTransactionintegerRequiredCumulative total transaction count
totalTriggerintegerRequiredCumulative contract trigger count
totalTrxTransferintegerRequiredCumulative TRX transfer count
totalTrc10TransferintegerRequiredCumulative TRC10 transfer count
totalFreezeTransactionintegerRequiredCumulative stake transaction count
totalUnfreezeTransactionintegerRequiredCumulative unstake transaction count
totalVoteTransactionintegerRequiredCumulative vote transaction count
totalFreezeAndUnfreezeTransactionintegerRequiredCumulative stake + unstake transaction count
totalOtherTransactionintegerRequiredCumulative other transaction count
totalUsdtTransactionintegerRequiredCumulative USDT transaction count

5. Errors

For HTTP status codes, see Common Errors. Notes for this endpoint:

  • Empty result is not an error: no matches returns 200 + data: [], which is a normal response.
Last updated on: