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=TPyjyZfsYaXStgz2NmAraF1uZcMtkgNan5Try this endpoint in your browser ↗ 🔗
Request
| Parameter | Description |
|---|---|
address | Query address |
txNum | Number of transactions range, separated by commas. e.g. 1,10 represents 1 to 10 |
txAmount | Transaction amount range, separated by commas. e.g. 100,10000 represents 100 to 10000 |
direction | Transfer type. 0: all. 1: transfer-in. 2: transfer-out |
relatedAddress | Filter by related address |
relatedToken | Filter by related token |
startTime | Start time in seconds |
endTime | End time in seconds |
sortby | Sorted field: amountIn, amountOut, timesIn, timesOut |
limit | Max: 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/overviewTry this endpoint in your browser ↗ 🔗
Request
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-12Try this endpoint in your browser ↗ 🔗
Request
| Parameter | Description |
|---|---|
startDay | Start date. Format: yyyy-MM-dd |
endDay | End 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=TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6tTry this endpoint in your browser ↗ 🔗
Request
| Parameter | Description |
|---|---|
accountAddress | Account address to query |
tokenAddress | TRC20 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=1680503760000Try this endpoint in your browser ↗ 🔗
Request
| Parameter | Description |
|---|---|
sort | Sorting method: timestamp, value, or tokenValue. Prefix with - for descending order |
minValue | Minimum total USD value. Default: 1000 |
maxValue | Maximum total USD value. Default: no upper limit |
type | Liquidity operations: AddLiquidity, RemoveLiquidity, TokenExchange. Default: all. Multiple values separated by commas |
operator | Filter by operator address |
startTimestamp | Start timestamp in milliseconds. Default: 60 days before current time |
endTimestamp | End timestamp in milliseconds |
token | Filter by token address. Multiple tokens separated by commas |
pool | Filter by liquidity pool address |
project | sunswap or suncurve |
influence | Impact on a specific token. + for increase, - for decrease |
minTokenValue | Minimum value for a single token filter |
maxTokenValue | Maximum 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=TPyjyZfsYaXStgz2NmAraF1uZcMtkgNan5Try this endpoint in your browser ↗ 🔗
Request
| Parameter | Description |
|---|---|
address | Account 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/transferAmountTry this endpoint in your browser ↗ 🔗
Request
| Parameter | Description |
|---|---|
startTime | Start time in seconds |
endTime | End time in seconds |
type | Set 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/topTry this endpoint in your browser ↗ 🔗
Request
| Parameter | Description |
|---|---|
viewContract | Whether to include contract data. 1: include. 2: exclude |
sort | Sort field: USDT, USDC, USDJ, USDD, or TUSD |
direction | Sort 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=TKcEU8ekq2ZoFzLSGFYCUY6aocJBX9X31bTry this endpoint in your browser ↗ 🔗
Request
| Parameter | Description |
|---|---|
pool | Contract 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=0Try this endpoint in your browser ↗ 🔗
Request
| Parameter | Description |
|---|---|
address | Filter by address |
txUsd | Transaction value range in USD, separated by commas. e.g. 1,10 |
txAmount | Transaction amount range, separated by commas. e.g. 100,10000 |
relatedAddress | Filter by related address |
relatedToken | Filter by related token |
startTime | Start time in seconds |
endTime | End time in seconds |
limit | Max: 50 |
types | Transfer 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 |
sortBy | Sorted field: time, amount, usd (total value) |
asc | true 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/changeTry this endpoint in your browser ↗ 🔗
Request
| Parameter | Description |
|---|---|
startTime | Start time in seconds |
endTime | End 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=1Try this endpoint in your browser ↗ 🔗
Request
| Parameter | Description |
|---|---|
start | Start index |
limit | Number of results |
sort | Sorting: 1: by quantity. 2: by time |
operatorAddress | Filter by operator address |
direction | 1: ascending. 2: descending |
startTime | Start time |
endTime | End time |
startAmount | Minimum amount filter |
endAmount | Maximum amount filter |
USDT | Key events for USDT, multiple events separated by commas |
USDC | Key events for USDC, multiple events separated by commas |
USDD | Key events for USDD, multiple events separated by commas |
USDJ | Key events for USDJ, multiple events separated by commas |
TUSD | Key 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/totalSupplyTry this endpoint in your browser ↗ 🔗
Request
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/infoTry this endpoint in your browser ↗ 🔗
Request
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/blackListTry this endpoint in your browser ↗ 🔗
Request
| Parameter | Description |
|---|---|
tokenAddress | Filter by stablecoin contract address |
blackAddress | Filter by blacklisted address |
sort | 1: by quantity. 2: by time |
direction | 1: ascending. 2: descending |
start | Start index |
limit | Number 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=TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6tTry this endpoint in your browser ↗ 🔗
Request
| Parameter | Description |
|---|---|
token | Stablecoin 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=TPyjyZfsYaXStgz2NmAraF1uZcMtkgNan5Try this endpoint in your browser ↗ 🔗
Request
| Parameter | Description |
|---|---|
accountAddress | Account address to query |
tokenAddress | TRC20 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=TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6tTry this endpoint in your browser ↗ 🔗
Request
| Parameter | Description |
|---|---|
token | Stablecoin 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=0Try this endpoint in your browser ↗ 🔗
Request
| Parameter | Description |
|---|---|
accountAddress | Account address to query |
tokenAddress | TRC20 address or TRC10 token ID. Set to 0 for TRX |
startTime | Start time in milliseconds |
endTime | End 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=1680364800000Try this endpoint in your browser ↗ 🔗
Request
| Parameter | Description |
|---|---|
accountAddress | Account address to query |
tokenAddress | TRC20 address or TRC10 token ID. Set to 0 for TRX |
endTime | End 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=TMwFHYXLJaRUPeW6421aqXL4ZEzPRFGkGTTry this endpoint in your browser ↗ 🔗
Request
| Parameter | Description |
|---|---|
startTime | Start time in seconds |
endTime | End time in seconds |
tokenAddress | Stablecoin 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=TQx6CdLHqjwVmJ45ecRzodKfVumAsdoRXHTry this endpoint in your browser ↗ 🔗
Request
| Parameter | Description |
|---|---|
startTimstamp | Start timestamp in milliseconds. Must be later than 2022-11-21 08:00:00 |
endTimestamp | End timestamp in milliseconds. Must be earlier than current time |
pool | Liquidity 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=TKVsYedAY23WFchBniU7kcx1ybJnmRSbGtTry this endpoint in your browser ↗ 🔗
Request
| Parameter | Description |
|---|---|
pool | Liquidity 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=TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6tTry this endpoint in your browser ↗ 🔗
Request
| Parameter | Description |
|---|---|
tokenAddress | Stablecoin 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=TMwFHYXLJaRUPeW6421aqXL4ZEzPRFGkGTTry this endpoint in your browser ↗ 🔗
Request
| Parameter | Description |
|---|---|
token | Stablecoin 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=10Try this endpoint in your browser ↗ 🔗
Request
| Parameter | Description |
|---|---|
address | Account address to query |
startTime | Start time in seconds |
endTime | End time in seconds |
direction | Transfer type. 0: all. 1: transfer-in. 2: transfer-out |
relatedToken | Filter by related token |
sortBy | Sorted field: amountIn, amountOut, timesIn, timesOut |
limit | Number 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=4Try this endpoint in your browser ↗ 🔗
Request
| Parameter | Description |
|---|---|
address | Account address to query |
txUsd | Transaction value range in USD, separated by commas. e.g. 1,10 |
txAmount | Transaction amount range, separated by commas. e.g. 100,10000 |
relatedAddress | Filter by related address |
relatedToken | Filter by related token address |
startTime | Start time in seconds |
endTime | End time in seconds |
limit | Number of results |
types | Transfer 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 |
sortBy | Sorted field: time, amount, usd (total value) |
asc | true 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/overviewTry this endpoint in your browser ↗ 🔗
Request
No parameters required.