Transactions and Transfers
Get a list of transactions
Get a list of transactions.
GET https://apilist.tronscanapi.com/api/transaction?sort=-timestamp&count=true&limit=20&start=0&start_timestamp=1529856000000&end_timestamp=1680503191391Try this endpoint in your browser ↗ 🔗
Request
| Parameter | Description |
|---|---|
start | Start number. Default: 0 |
limit | Number of items per page. Default: 10 |
start_timestamp | Start time |
end_timestamp | End time |
fromAddress | Sender’s address |
toAddress | Recipient’s address |
tokens | Tokens involved |
block | Block |
type | Transaction type |
method | Method called in a smart contract signature. Only one value can be specified each time |
Get transaction detail information by transaction hash
Get transaction information.
GET https://apilist.tronscanapi.com/api/transaction-info?hash=3194a00c5cf427a931b908453588b2ca3f661dafa3860b76a6362d08b3b08583Try this endpoint in your browser ↗ 🔗
Request
| Parameter | Description |
|---|---|
hash | Transaction hash |
Get TRC20 & TRC721 transfers list
Get the transfer list of TRC20 and TRC721 tokens.
GET https://apilist.tronscanapi.com/api/token_trc20/transfers?limit=20&start=0&contract_address=TMwFHYXLJaRUPeW6421aqXL4ZEzPRFGkGT&start_timestamp=&end_timestamp=&confirm=&filterTokenValue=1Try this endpoint in your browser ↗ 🔗
Request
| Parameter | Description |
|---|---|
start | Start number. Default: 0 |
limit | Number of items per page. Default: 10 |
contract_address | Contract address |
start_timestamp | Start time |
end_timestamp | End time |
confirm | Whether to return confirmed transfers only. Default: true |
relatedAddress | Account address |
fromAddress | Sender’s address |
toAddress | Recipient’s address |
Get TRC1155 transfer list
Get the transfer list of TRC1155 tokens.
GET https://apilist.tronscanapi.com/api/token_trc1155/transfers?limit=20&start=0&contract_address=TXWLT4N9vDcmNHDnSuKv2odhBtizYuEMKJ&start_timestamp=&end_timestamp=&confirm=&filterTokenValue=0Try this endpoint in your browser ↗ 🔗
Request
| Parameter | Description |
|---|---|
relatedAddress | Account address. When specified, TRC1155 transfers of that address are returned |
start | Start index. Default: 0 |
limit | Number of transfers per page |
start_timestamp | Start time, accurate to milliseconds |
end_timestamp | End time, accurate to milliseconds |
format | Download format. Use csv to download transfer data |
block | Block number |
confirm | Filter by status. 0: confirmed only, 1: unconfirmed only, 0,1: all |
direction | in: transfer-in, out: transfer-out, all: both |
contract_address | Contract address |
Get TRX & TRC10 transfer list
Get account’s transfer list.
GET https://apilist.tronscanapi.com/api/transfer?sort=-timestamp&count=true&limit=20&start=0&address=TLa2f6VPqDgRE67v1736s7bJ8Ray5wYjU7&filterTokenValue=1Try this endpoint in your browser ↗ 🔗
Request
| Parameter | Description |
|---|---|
sort | Sort type |
start | Start index. Default: 0 |
limit | Number of transfers per page |
count | Whether to return total transfer number |
address | Address, like contract address |
fromAddress | Sender’s address |
toAddress | Recipient’s address |
tokens | Specific tokens |
block | Block number |
Get internal transaction list for special address or block
Get internal transaction list.
GET https://apilist.tronscanapi.com/api/internal-transaction?limit=20&start=0&address=TLa2f6VPqDgRE67v1736s7bJ8Ray5wYjU7Try this endpoint in your browser ↗ 🔗
Request
| Parameter | Description |
|---|---|
start | Start index. Default: 0 |
limit | Number of transfers per page |
address | Specific address. At least one of address, block, or contract must be specified |
contract | Sender’s address |
block | Block number |
Get account’s transaction data
Get account’s transaction data.
GET https://apilist.tronscanapi.com/api/token_trc20/transfers-with-status?limit=1&start=0&trc20Id=TUpMhErZL2fhh4sVNULAbNKLokS4GjC1F4&address=TV6MuMXfmLbBqPZvBHdwFsDnQeVfnmiuSiTry this endpoint in your browser ↗ 🔗
Request
| Parameter | Description |
|---|---|
start | Start index. Default: 0 |
limit | Number of transfers per page |
trc20Id | TRC20 token address |
address | Account address |
direction | 0: all, 1: transfer-out, 2: transfer-in |
db_version | Whether to include approval transfers. 1: include, 0: exclude |
reverse | Sort by creation time. Valid values: true / false |
Get transaction’s statistic data
Query statistic data of transactions.
GET https://apilist.tronscanapi.com/api/transaction/statisticsTry this endpoint in your browser ↗ 🔗
Request
No parameters required.
Get statistic distribution data of transfer
Query statistic data of transfers.
GET https://apilist.tronscanapi.com/api/transfer/statisticsTry this endpoint in your browser ↗ 🔗
Request
No parameters required.
Get the eligible exchange type transactions
Query the eligible transactions of the exchange type, sorted by time in descending order.
GET https://apilist.tronscanapi.com/api/exchange/transaction?start=0&limit=5Try this endpoint in your browser ↗ 🔗
Request
| Parameter | Description |
|---|---|
start | Start index. Default: 0 |
limit | Number of transfers per page |
exchangeID | Exchange ID |
address | Account address |
start_timestamp | Start time, accurate to seconds |
end_timestamp | End time, accurate to seconds |