Skip to Content
APITokensGet TRC10 Token Holders

Get TRC10 Token Holders

1. Overview & Typical Use

Returns the holder list for a TRC10 token, sorted by holding amount in descending order by default.

  • Typical use: TRC10 token holder rankings, whale analysis.
  • When not to use: for TRC20/TRC721/TRC1155 token holders use “Get TRC20/TRC721/TRC1155 Token Holders”.

2. Endpoint & Authentication

GET /api/tokenholders

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

3. Request

ParameterTypeRequiredDefaultDescription
addressstringYesTRC10 issuer address or token ID
holder_addressstringNoTRC10 holder address
startintegerNo0Start index; start + limit ≤ 10000
limitintegerNo10Items per page, max 50
sortstringNo-balanceSort order: -balance descending, balance ascending

4. Response

Top-level

FieldTypeRequiredDescriptionUnit/Precision
totalintegerRequiredNumber of hits (cap 10000)
rangeTotalintegerRequiredTrue total number of holders
contractMapobjectRequiredAddress → whether the address is a contract
contractInfoobjectOptionalContract address → label info (present when contract addresses are involved)
account_numberintegerOptionalTotal account count (only when address=_, i.e. TRX)
last_24h_account_changeintegerOptionalAccount count change in the last 24 hours (only for TRX)
dataarrayRequiredHolder list; see below

data[] elements (TRX, i.e. address=_)

FieldTypeRequiredDescriptionUnit/Precision
addressstringRequiredHolder address
balanceintegerRequiredStaking vote balancesun
totalBalanceintegerRequiredTotal balance (including unstaking)sun
unstakingBalanceintegerRequiredBalance currently unstakingsun
powerintegerRequiredVoting power
trxRatiostringRequiredProportion of total TRX supply (high-precision string)decimal
indexintegerRequiredRank index
updateTimeintegerRequiredLast update timeMillisecond timestamp
latestOperationTimeintegerRequiredMost recent operation timeMillisecond timestamp
srTagbooleanRequiredWhether this is a Super Representative
srNamestringRequiredSR name (empty string when not an SR)
foundationTagbooleanRequiredWhether this is a Foundation address
addressTagLogostringRequiredAddress tag logo URL (may be empty string)
analysisShowbooleanRequiredWhether to show in analytics

5. Errors

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

  • address is a required parameter: omitting it returns empty data.
  • start + limit cap is 10000.
  • Empty result is not an error: no matches returns 200 + data: [].
Last updated on: