Skip to Content
APITokensGet Token List

Get Token List

1. Overview & Typical Use

Returns the full network token list, covering TRC10, TRC20, TRC721, TRC1155, and other types, with multi-dimensional sorting and filtering by market cap, price change, trading volume, and more.

  • Typical use: token leaderboard display, market cap filtering, new token discovery.
  • When not to use: for a single TRC20 token’s details use “Get TRC20/TRC721/TRC1155 Token Details”; for TRC10 details use “Get TRC10 Token Details”.

2. Endpoint & Authentication

GET /api/tokens/overview

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

3. Request

ParameterTypeRequiredDefaultDescription
startintegerNo0Start index (offset)
limitintegerNo20Items per page, max 500
orderstringNodescSort direction: desc (descending), asc (ascending)
filterstringNoallToken type filter: trc10, trc20, trc721, trc1155, all, top
sortstringNomarketcapSort field: priceInTrx, gain, volume24hInTrx, holderCount, marketcap, createTime, hot, init, top
fieldstringNoComma-separated field names to return; returns all fields when empty
verifierstringNoSet to all to include tokens with type=auto; not returned by default
showAllintegerNo0Data type to return. 0: whitelist only, 1: all, 2: exclude blacklist

4. Response

Top-level

FieldTypeRequiredDescriptionUnit/Precision
totalintegerRequiredTotal token count under current filter
totalAllintegerRequiredTotal token count including all types (same as totalAllCount)
totalAllCountintegerRequiredTotal tokens on the full network (all types)
allintegerRequiredTotal tokens on the full network (same as totalAllCount, kept for backward compatibility)
total10integerRequiredTotal TRC10 token count
total20integerRequiredTotal TRC20 token count
total721integerRequiredTotal TRC721 token count
total1155integerRequiredTotal TRC1155 token count
currentWeekAllintegerRequiredNew tokens this week (all types combined)
currentWeekTotalAllintegerRequiredNew tokens this week (another statistical measure)
valueAtLeastintegerRequiredMinimum threshold for valued tokens (USD)USD
tokensarrayRequiredToken list
updateTimeintegerRequiredData update timeMillisecond timestamp

tokens[] elements

FieldTypeRequiredDescriptionUnit/Precision
namestringRequiredToken name
abbrstringRequiredToken abbreviation
contractAddressstringRequiredContract address (_ for TRC10)
tokenIdintegerOptionalTRC10 token ID (present for TRC10, absent for TRC20)
ownerAddressstringOptionalIssuer address (- for TRC10, actual address for TRC20)
tokenTypestringRequiredToken type (trc10 / trc20 / trc721 / trc1155)
decimalintegerRequiredDecimal places
priceInTrxnumberOptionalPrice in TRX (only for priced tokens)
priceInUsdnumberOptionalPrice in USD (only for priced tokens)
marketcapnumberOptionalMarket cap (TRX, only for priced tokens)TRX
marketCapUSDnumberOptionalMarket cap (USD, only for priced tokens)USD
gainnumberOptional24-hour price change (only for tokens with market data)decimal
volume24hInTrxnumberOptional24-hour trading volume (TRX, only for tokens with market data)TRX
volume24hInUsdnumberOptional24-hour trading volume (USD, only for tokens with market data)USD
supplynumberOptionalCirculating supply
nrOfTokenHoldersintegerRequiredNumber of holders
transferCountintegerRequiredCumulative transfer count
vipbooleanRequiredWhether this is a VIP token
isTopbooleanOptionalWhether this is a pinned token
verifierstringOptionalVerification source (e.g. "robot")
levelstringOptionalToken level
canShowintegerOptionalWhether to display (1 yes, 0 no)
imgUrlstringOptionalToken logo URL
descriptionstringOptionalToken description
githubstringOptionalGitHub link
projectSitestringOptionalProject website
whitePaperstringOptionalWhitepaper link
socialMediastringOptionalSocial media (JSON string)
pairUrlstringOptionalDEX trading pair URL
dateCreatedintegerOptionalCreation timestampseconds timestamp

5. Errors

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

  • limit cap is 500: excess is silently truncated to 500, no error is returned.
  • Empty result is not an error: no matches returns 200 + tokens: [] — this is a normal response.
Last updated on: