Account
Get account list
Returns the list of accounts.
The value sum of start and limit must be less than or equal to 10000, and limit is capped at 50.
GET https://apilist.tronscanapi.com/api/account/list?sort=-balance&limit=20&start=0Try this endpoint in your browser ↗ 🔗
Request
| Parameter | Description |
|---|---|
start | Start number. Default: 0 |
limit | Number of items per page. Default: 10 |
sort | Sort field. Default: -balance. Supported fields: balance, power, totaltransactioncount. Prefix - for descending order |
address | Optional account address. When provided, only the specified address is returned |
Get account detail information
Returns the detail information of an account.
GET https://apilist.tronscanapi.com/api/accountv2?address=TSTVYwFDp7SBfZk7Hrz3tucwQVASyJdwC7Try this endpoint in your browser ↗ 🔗
Request
| Parameter | Description |
|---|---|
address | Account address |
Get account’s token list
Returns a list of tokens held by the account with a balance greater than 0.
The maximum value for limit is 200.
GET https://apilist.tronscanapi.com/api/account/tokens?address=TSTVYwFDp7SBfZk7Hrz3tucwQVASyJdwC7&start=0&limit=20&hidden=0&show=0&sortType=0&sortBy=0&token=Try this endpoint in your browser ↗ 🔗
Request
| Parameter | Description |
|---|---|
address | Account address |
start | Start number. Default: 0 |
limit | Number of items per page. Default: 20 |
hidden | Whether to hide tokens with small balance. 0: hide (default), 1: show |
show | Token type. Default: 0. 1: TRC20, 2: TRC721, 3: ALL, 4: TRC1155 |
sortBy | Sort field. Default: 0. 1: price, 2: amount, 3: quantity |
sortType | Sort order. 0: descending (default), 1: ascending |
token | Specify token ID or token address |
assetType | Asset type. Default: 0. 0 or 1: token (ticker) results, 2: receipt-token (certificate) results |
Get the voted list
Returns the voter list of a certain SR or the voted list of a certain account involving all SRs.
GET https://apilist.tronscanapi.com/api/vote?sort=&limit=20&start=0&voter=TRzQrtxrEJbSbQNwAsgAHkBMxTX47yNmjoTry this endpoint in your browser ↗ 🔗
Request
| Parameter | Description |
|---|---|
candidate | Account address — use when querying the voter list of a SR |
voter | Account address — use when querying the voted list of a voter |
start | Start number. Default: 0 |
limit | Number of items per page. Default: 10 |
sort | Sorting method. Default: descending by number of votes |
count | When set, total count is returned with the result |
Get a list of account resources
Returns the resource list of an account that has resources in Stake 1.0.
GET https://apilist.tronscanapi.com/api/account/resource?limit=500&start=0&address=TWSRE85rP7FydZKjHmmZgCYF5Dbw8AB91J&type=1&resourceType=0Try this endpoint in your browser ↗ 🔗
Request
| Parameter | Description |
|---|---|
address | Account address |
start | Start number. Default: 0 |
limit | Number of items per page. Default: 200. Maximum: 5000 |
type | Stake type. Default: 0 (all). 1: Freeze for yourself, 2: Freeze for others, 3: Freeze for yourself by others |
resourceType | Resource type. 0: Bandwidth & Energy, 1: Bandwidth only, 2: Energy only |
toAddress | Receiver address — used together with type=2 to filter delegations to a specific receiver |
Get a list of stake 2.0 account resources
Returns the resource list of an account that has resources in Stake 2.0.
The value sum of start and limit must be less than or equal to 10000.
GET https://apilist.tronscanapi.com/api/account/resourcev2?limit=1&start=0&address=TWSRE85rP7FydZKjHmmZgCYF5Dbw8AB91J&type=1&resourceType=0Try this endpoint in your browser ↗ 🔗
Request
| Parameter | Description |
|---|---|
address | Account address |
start | Start number. Default: 0 |
limit | Number of items per page. Default: 10 |
type | Stake type. Default: 0. 0: Freeze for yourself, 1: Freeze for yourself by others, 2: Freeze for others, 3: Unfreezing, 4: Pending withdrawal |
resourceType | Resource type. 0: Bandwidth & Energy, 1: Bandwidth only, 2: Energy only |
toAddress | Receiver address — used together with type=2 to filter delegations to a specific receiver |
sort | Sort field. Default: time. When type=2, also accepts usage / burnTrx / balance |
order | Sort order. Default: desc. asc for ascending |
Get approval list
Returns the approval list of the specified account.
The maximum value for limit is 50.
GET https://apilist.tronscanapi.com/api/account/approve/list?address=TRX6Q82wMqWNbCCiLqejbZe43wk1h1zJHm&limit=20&start=1&type=projectTry this endpoint in your browser ↗ 🔗
Request
| Parameter | Description |
|---|---|
address | Account address |
limit | Number of items per page. Default: 10 |
start | Start number. Default: 0 |
type | Aggregation type: project (default) or token |
transfer | Use mobile when requesting mobile data |
relatedId | Used with mobile data. When type=project → project_id; when type=token → token_id |
Get account authorization change records
Returns account authorization change records.
The maximum value for limit is 50.
GET https://apilist.tronscanapi.com/api/account/approve/change?limit=20&start=0&contract_address=TUpMhErZL2fhh4sVNULAbNKLokS4GjC1F4&type=approve&from_address=TRX6Q82wMqWNbCCiLqejbZe43wk1h1zJHm&to_address=TKcEU8ekq2ZoFzLSGFYCUY6aocJBX9X31bTry this endpoint in your browser ↗ 🔗
Request
| Parameter | Description |
|---|---|
contract_address | Contract address (required) |
from_address | Originator address (required) |
to_address | Recipient address (required) |
start | Start number. Default: 0 |
limit | Number of items per page. Default: 10 |
type | Record type. approve (default) — approval records; transfer — transfer records |
Get list of daily analytics data for an account over time
Returns a list of daily analytics data for an account within the specified period.
type value | Description |
|---|---|
0 | Balance — TRX balance, price of TRX on that day (calculated using USDT) |
1 | Token transfers — number of transfers (TRX/TRC10/TRC20) and unique tokens transferred |
2 | Energy consumption — from frozen TRX, TRX burning, contract deployers, and total |
3 | Bandwidth consumption — from frozen TRX or free Bandwidth, from TRX burning |
4 | Transactions — number initiated and received by the current account |
GET https://apilist.tronscanapi.com/api/account/analysis?address=TUD4YXYdj2t1gP5th3A7t97mx1AUmrrQRt&type=0&start_timestamp=1514764800000&end_timestamp=1680508422169Try this endpoint in your browser ↗ 🔗
Request
| Parameter | Description |
|---|---|
address | Account address |
start_timestamp | Start time, accurate to milliseconds |
end_timestamp | End time, accurate to milliseconds |
type | Analytics type. Default: 0. See table above for values 0–4 |
Get an account to participate in the project
Returns the project that an account has participated in.
GET https://apilist.tronscanapi.com/api/participate_project?address=TWSRE85rP7FydZKjHmmZgCYF5Dbw8AB91JTry this endpoint in your browser ↗ 🔗
Request
| Parameter | Description |
|---|---|
address | Account address |
Get account wallet token overview
Returns overview of tokens in the account wallet.
GET https://apilist.tronscanapi.com/api/account/token_asset_overview?address=TWSRE85rP7FydZKjHmmZgCYF5Dbw8AB91JTry this endpoint in your browser ↗ 🔗
Request
| Parameter | Description |
|---|---|
address | Account address |
sort | Whether to sort by USD value descending. true: sort, false: keep insertion order |
Find the address if exist on other chain
Checks whether an address exists on other blockchain networks.
GET https://apilist.tronscanapi.com/api/multiple/chain/query?address=TJAsZtFdFdkME5dAF12UMZzK9Vpqp4ri4QTry this endpoint in your browser ↗ 🔗
Request
| Parameter | Description |
|---|---|
address | Account address |