Skip to Content
APIStatisticsGet TRON Statistics Overview

Get TRON Statistics Overview

1. Overview & Typical Use

Returns daily comprehensive statistics for TRON, covering transactions, accounts, resources, blocks, tokens, and their day-over-day change rates.

  • Typical use: build a comprehensive data dashboard, retrieve all core metrics in a single request, analyze overall on-chain health.
  • When not to use: when only a single dimension is needed, use the corresponding dedicated endpoint (e.g., transaction trend, active accounts) to reduce data transfer.

2. Endpoint & Authentication

GET /api/stats/overview

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

3. Request

ParameterTypeRequiredDefaultDescription
daysintegerNo15Number of days to query
typestringNoControls additional return data; pass trxHolder to also return the count of accounts holding TRX

4. Response

Top-level

FieldTypeRequiredDescriptionUnit/Precision
successbooleanRequiredWhether the request succeeded
avg_increase_accountsintegerRequiredAverage daily new account count
dataarrayRequiredDaily statistics array; see below

data[] element

FieldTypeRequiredDescriptionUnit/Precision
dateintegerRequiredStatistics dateMillisecond timestamp
dateDayStrstringRequiredDate stringyyyy-MM-dd
totalTransactionintegerRequiredCumulative total transactions
newTransactionSeenintegerRequiredNew transactions on this day
totalAddressintegerRequiredCumulative total addresses
totalAddressRatenumberRequiredTotal address day-over-day change ratedecimal
totalAddressMomnumberRequiredTotal address month-over-month change ratedecimal
newAddressSeenintegerRequiredNew addresses on this day
active_account_numberintegerRequiredActive accounts on this day
accountWithTrxintegerRequiredNumber of accounts holding TRX
avgBlockTimeintegerRequiredAverage block timeseconds
avgBlockSizeintegerRequiredAverage block sizebytes
totalBlockCountintegerRequiredCumulative total blocks
newBlockSeenintegerRequiredNew blocks on this day
blockchainSizeintegerRequiredCumulative blockchain data sizebytes
triggersintegerRequiredCumulative contract triggers
newTriggerintegerRequiredContract triggers on this day
trx_transferintegerRequiredTRX transfers on this day
trc10_transferintegerRequiredTRC10 transfers on this day
usdt_transactionintegerRequiredUSDT transactions on this day
freeze_transactionintegerRequiredStaking-type transactions on this day
unfreeze_transactionintegerRequiredUnstaking-type transactions on this day
vote_transactionintegerRequiredVote-type transactions on this day
shielded_transactionintegerRequiredShielded transactions on this day
other_transactionintegerRequiredOther-type transactions on this day
energy_usageintegerRequiredEnergy consumed on this day
net_usageintegerRequiredBandwidth consumed on this day
energy_usage_change_24hnumberRequired24h energy consumption change ratedecimal
net_usage_change_24hnumberRequired24h bandwidth consumption change ratedecimal
active_account_number_ratenumberRequiredActive account count day-over-day change ratedecimal
newAddressSeenRatenumberRequiredNew address count day-over-day change ratedecimal
totalTrc20integerRequiredTotal TRC20 token count
newTrc20integerRequiredNew TRC20 tokens on this day
totalTrc10integerRequiredTotal TRC10 token count
newTrc10integerRequiredNew TRC10 tokens on this day

5. Errors

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

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