Skip to Content
APIDeep Analysis

Deep Analysis

Get account data with transaction records with the current account

Returns accounts that have transaction records with a specific address, along with transfer-in/out amounts and counts.

GET https://apilist.tronscanapi.com/api/deep/account/relatedAccount?address=TPyjyZfsYaXStgz2NmAraF1uZcMtkgNan5

Try this endpoint in your browser ↗ 🔗

ParameterDescription
addressQuery address
txNumNumber of transactions range, separated by commas. e.g. 1,10 represents 1 to 10
txAmountTransaction amount range, separated by commas. e.g. 100,10000 represents 100 to 10000
directionTransfer type. 0: all. 1: transfer-in. 2: transfer-out
relatedAddressFilter by related address
relatedTokenFilter by related token
startTimeStart time in seconds
endTimeEnd time in seconds
sortbySorted field: amountIn, amountOut, timesIn, timesOut
limitMax: 100

Get distribution of total market capitalization

Returns the balance distribution of all major stablecoins (USDT, USDC, TUSD, USDD, USDJ) across categories: Wallet, JustLend, SunSwap, SunCurve, and Other.

GET https://apilist.tronscanapi.com/api/stableCoin/holder/balance/overview

Try this endpoint in your browser ↗ 🔗

No parameters required.


Get chart of the number of accounts held (stablecoin holder change)

Returns daily stablecoin holder counts per token and the aggregate total over time.

GET https://apilist.tronscanapi.com/api/stableCoin/holder/change?startDay=2023-02-12

Try this endpoint in your browser ↗ 🔗

ParameterDescription
startDayStart date. Format: yyyy-MM-dd
endDayEnd date. Format: yyyy-MM-dd

Get the transfer quantity of a TRC20 token held by an account

Returns the transfer-in and transfer-out quantity of a specific TRC20 token for a given account.

GET https://apilist.tronscanapi.com/api/deep/account/holderToken/basicInfo/trc20/transfer?accountAddress=TRxvWuBAkQgV2XCfVfkykYBzKe4vS4Kqsh&tokenAddress=TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t

Try this endpoint in your browser ↗ 🔗

ParameterDescription
accountAddressAccount address to query
tokenAddressTRC20 token contract address

Get list of transactions involving liquidity

Returns a list of liquidity transactions (add/remove/exchange) filtered by various criteria.

The maximum interval between startTimestamp and endTimestamp is 60 days. If endTimestamp exceeds the current time, startTimestamp is automatically set to 60 days before endTimestamp.

GET https://apilist.tronscanapi.com/api/deep/stableCoin/liquidity/transaction?token=TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t&project=sunswap&type=AddLiquidity&operator=TLnW8ZBqqTPweLyKHpg1LGNj2v9kx8N3rh&startTimestamp=1680503760000

Try this endpoint in your browser ↗ 🔗

ParameterDescription
sortSorting method: timestamp, value, or tokenValue. Prefix with - for descending order
minValueMinimum total USD value. Default: 1000
maxValueMaximum total USD value. Default: no upper limit
typeLiquidity operations: AddLiquidity, RemoveLiquidity, TokenExchange. Default: all. Multiple values separated by commas
operatorFilter by operator address
startTimestampStart timestamp in milliseconds. Default: 60 days before current time
endTimestampEnd timestamp in milliseconds
tokenFilter by token address. Multiple tokens separated by commas
poolFilter by liquidity pool address
projectsunswap or suncurve
influenceImpact on a specific token. + for increase, - for decrease
minTokenValueMinimum value for a single token filter
maxTokenValueMaximum value for a single token filter

Get all tags of an account

Returns all on-chain behavioral tags associated with an account, including asset, activity, DeFi, NFT, and governance categories.

GET https://apilist.tronscanapi.com/api/account/tag?address=TPyjyZfsYaXStgz2NmAraF1uZcMtkgNan5

Try this endpoint in your browser ↗ 🔗

ParameterDescription
addressAccount address to query

Get transfer amount change chart with a statistical period of 24 hours

Returns stablecoin transfer amounts over time, with optional line chart data per token.

GET https://apilist.tronscanapi.com/api/stableCoin/transferAmount

Try this endpoint in your browser ↗ 🔗

ParameterDescription
startTimeStart time in seconds
endTimeEnd time in seconds
typeSet to addLine to include line chart data in response. Default: line chart excluded

Get the chart of the top holders of stablecoins

Returns the top 50 stablecoin holders with their USDT, USDC, USDD, TUSD, and USDJ balances.

GET https://apilist.tronscanapi.com/api/stableCoin/holder/top

Try this endpoint in your browser ↗ 🔗

ParameterDescription
viewContractWhether to include contract data. 1: include. 2: exclude
sortSort field: USDT, USDC, USDJ, USDD, or TUSD
directionSort direction. 1: ascending. 2: descending

Get basic information of the stable currency pool

Returns pool composition, TVL, 24h volume, and per-token liquidity percentages for a specific pool.

GET https://apilist.tronscanapi.com/api/stableCoin/pool/overview?pool=TKcEU8ekq2ZoFzLSGFYCUY6aocJBX9X31b

Try this endpoint in your browser ↗ 🔗

ParameterDescription
poolContract address of the pool to query

Get large transactions of stablecoins

Returns large stablecoin transactions filtered by type, amount, address, and time.

GET https://apilist.tronscanapi.com/api/deep/stableCoin/bigAmount?limit=2&types=0

Try this endpoint in your browser ↗ 🔗

ParameterDescription
addressFilter by address
txUsdTransaction value range in USD, separated by commas. e.g. 1,10
txAmountTransaction amount range, separated by commas. e.g. 100,10000
relatedAddressFilter by related address
relatedTokenFilter by related token
startTimeStart time in seconds
endTimeEnd time in seconds
limitMax: 50
typesTransfer type, separated by commas. 0: all. 1: transfer-in. 2: transfer-out. 3: exchange. 4: add liquidity. 5: remove liquidity. 6: deposit. 7: loan. 8: repayment. 9: withdraw money
sortBySorted field: time, amount, usd (total value)
asctrue or false

Get a graph of all stablecoin issuance changes

Returns the total supply change trend for all stablecoins over a specified time range.

GET https://apilist.tronscanapi.com/api/stableCoin/totalSupply/change

Try this endpoint in your browser ↗ 🔗

ParameterDescription
startTimeStart time in seconds
endTimeEnd time in seconds

Get key events of TRON stablecoin

Returns key smart contract events (e.g. mint, burn, blacklist additions) for TRON stablecoins.

GET https://apilist.tronscanapi.com/api/deep/stableCoin/totalSupply/keyEvents?limit=10&direction=1&sort=1&start=1

Try this endpoint in your browser ↗ 🔗

ParameterDescription
startStart index
limitNumber of results
sortSorting: 1: by quantity. 2: by time
operatorAddressFilter by operator address
direction1: ascending. 2: descending
startTimeStart time
endTimeEnd time
startAmountMinimum amount filter
endAmountMaximum amount filter
USDTKey events for USDT, multiple events separated by commas
USDCKey events for USDC, multiple events separated by commas
USDDKey events for USDD, multiple events separated by commas
USDJKey events for USDJ, multiple events separated by commas
TUSDKey events for TUSD, multiple events separated by commas

Get the total circulation of all stablecoins

Returns the current total supply for USDT, USDD, TUSD, USDC, and USDJ.

GET https://apilist.tronscanapi.com/api/stableCoin/totalSupply

Try this endpoint in your browser ↗ 🔗

No parameters required.


Get all stablecoin liquidity pool information

Returns a list of all stablecoin liquidity pools with their TVL, constituent tokens, and pool names.

GET https://apilist.tronscanapi.com/api/stableCoin/pool/info

Try this endpoint in your browser ↗ 🔗

No parameters required.


Get a list of all blacklist transactions

Returns transactions where addresses were added to or removed from the stablecoin blacklist.

GET https://apilist.tronscanapi.com/api/stableCoin/blackList

Try this endpoint in your browser ↗ 🔗

ParameterDescription
tokenAddressFilter by stablecoin contract address
blackAddressFilter by blacklisted address
sort1: by quantity. 2: by time
direction1: ascending. 2: descending
startStart index
limitNumber of results

Obtain a graph of changes in holdings of a stablecoin

Returns a chart showing how the holder distribution of a stablecoin has changed over time across categories (exchange, wallet, contract).

GET https://apilist.tronscanapi.com/api/stableCoin/distribution/change?token=TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t

Try this endpoint in your browser ↗ 🔗

ParameterDescription
tokenStablecoin contract address

Obtain the basic information of a token held by an account

Returns the holding amount, first hold time, wallet/project breakdown, and latest transfer time for a token held by an account.

GET https://apilist.tronscanapi.com/api/account/holderToken/basicInfo?tokenAddress=TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t&accountAddress=TPyjyZfsYaXStgz2NmAraF1uZcMtkgNan5

Try this endpoint in your browser ↗ 🔗

ParameterDescription
accountAddressAccount address to query
tokenAddressTRC20 address or TRC10 token ID. Set to 0 for TRX

Get the distribution of holders of a stablecoin

Returns detailed holder distribution across exchanges, wallets, and DeFi protocols (JustLend, SunSwap, SunCurve, etc.).

GET https://apilist.tronscanapi.com/api/stableCoin/distribution?token=TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t

Try this endpoint in your browser ↗ 🔗

ParameterDescription
tokenStablecoin contract address

Get the asset value chart of a token in an account

Returns daily price, balance, and USD value for a token held by an account over time.

GET https://apilist.tronscanapi.com/api/account/holderToken/asset/valueInfo?startTime=1680364800000&accountAddress=TRxvWuBAkQgV2XCfVfkykYBzKe4vS4Kqsh&tokenAddress=0

Try this endpoint in your browser ↗ 🔗

ParameterDescription
accountAddressAccount address to query
tokenAddressTRC20 address or TRC10 token ID. Set to 0 for TRX
startTimeStart time in milliseconds
endTimeEnd time in milliseconds

Obtain the balance flow of the asset value of a token in an account

Returns the balance change flow (inflows and outflows) for a token in an account up to a specified end time.

GET https://apilist.tronscanapi.com/api/account/holderToken/asset/changeBalance?accountAddress=TRxvWuBAkQgV2XCfVfkykYBzKe4vS4Kqsh&tokenAddress=0&endTime=1680364800000

Try this endpoint in your browser ↗ 🔗

ParameterDescription
accountAddressAccount address to query
tokenAddressTRC20 address or TRC10 token ID. Set to 0 for TRX
endTimeEnd time in milliseconds

Obtain a trend chart of the circulation of a certain stablecoin

Returns the total supply, mint amount, and burn amount per day for a specific stablecoin.

Supported stablecoins: USDD, USDC, USDJ, TUSD

GET https://apilist.tronscanapi.com/api/stableCoin/tokenSupply/turnover?startTime=1680278400&tokenAddress=TMwFHYXLJaRUPeW6421aqXL4ZEzPRFGkGT

Try this endpoint in your browser ↗ 🔗

ParameterDescription
startTimeStart time in seconds
endTimeEnd time in seconds
tokenAddressStablecoin contract address

Obtain information on the trend of liquidity pool changes

Returns a Sankey-diagram-style data structure showing how liquidity has flowed in and out of a pool between two time points.

startTimstamp must be later than 2022-11-21 08:00:00 and endTimestamp must be earlier than the current time.

GET https://apilist.tronscanapi.com/api/stableCoin/pool/trend?pool=TQx6CdLHqjwVmJ45ecRzodKfVumAsdoRXH

Try this endpoint in your browser ↗ 🔗

ParameterDescription
startTimstampStart timestamp in milliseconds. Must be later than 2022-11-21 08:00:00
endTimestampEnd timestamp in milliseconds. Must be earlier than current time
poolLiquidity pool contract address

Obtain the liquidity change graph of the liquidity pool

Returns the liquidity change history for a specific pool address.

GET https://apilist.tronscanapi.com/api/stableCoin/pool/change?pool=TKVsYedAY23WFchBniU7kcx1ybJnmRSbGt

Try this endpoint in your browser ↗ 🔗

ParameterDescription
poolLiquidity pool contract address

Obtain basic information on stablecoins

Returns market cap, holder count, total supply, 24h transfer count, and 24h liquidity data for a specific stablecoin.

GET https://apilist.tronscanapi.com/api/stableCoin/overview?tokenAddress=TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t

Try this endpoint in your browser ↗ 🔗

ParameterDescription
tokenAddressStablecoin contract address

Obtain the distribution of the stablecoin liquidity pool

Returns all liquidity pools (SunSwap v1/v2, SunCurve) containing a specific stablecoin, with TVL and token compositions.

GET https://apilist.tronscanapi.com/api/stableCoin/tvl?token=TMwFHYXLJaRUPeW6421aqXL4ZEzPRFGkGT

Try this endpoint in your browser ↗ 🔗

ParameterDescription
tokenStablecoin contract address

Obtain account transfer-in and transfer-out fund distribution

Returns an aggregated breakdown of inbound and outbound fund flows for a specific account.

GET https://apilist.tronscanapi.com/api/deep/account/transferAmount?address=TPyjyZfsYaXStgz2NmAraF1uZcMtkgNan5&limit=10

Try this endpoint in your browser ↗ 🔗

ParameterDescription
addressAccount address to query
startTimeStart time in seconds
endTimeEnd time in seconds
directionTransfer type. 0: all. 1: transfer-in. 2: transfer-out
relatedTokenFilter by related token
sortBySorted field: amountIn, amountOut, timesIn, timesOut
limitNumber of results

Get large transactions

Returns large transactions for a specific account, filtered by token, type, and amount.

GET https://apilist.tronscanapi.com/api/deep/account/token/bigAmount?address=TPyjyZfsYaXStgz2NmAraF1uZcMtkgNan5&relatedToken=TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t&types=4

Try this endpoint in your browser ↗ 🔗

ParameterDescription
addressAccount address to query
txUsdTransaction value range in USD, separated by commas. e.g. 1,10
txAmountTransaction amount range, separated by commas. e.g. 100,10000
relatedAddressFilter by related address
relatedTokenFilter by related token address
startTimeStart time in seconds
endTimeEnd time in seconds
limitNumber of results
typesTransfer type, separated by commas. 0: all. 1: transfer-in. 2: transfer-out. 3: exchange. 4: add liquidity. 5: remove liquidity. 6: deposit. 7: loan. 8: repayment. 9: withdraw money
sortBySorted field: time, amount, usd (total value)
asctrue or false

Chart of the number of accounts held and balance overview

Returns stablecoin balance distribution across holder categories (Wallet, JustLend, SunSwap, SunCurve, Other) for all major stablecoins.

GET https://apilist.tronscanapi.com/api/stableCoin/holder/balance/overview

Try this endpoint in your browser ↗ 🔗

No parameters required.

Last updated on: