Transactions and Transfers
Get a list of transactions
Get a list of transactions.
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 🔗
Query Parameters
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.
Sample response
{
"total": 10000,
"rangeTotal": 10000,
"data": [
{
"block": 49963474,
"hash": "a211f0728aa129c17195322a38c3ca0917ab04af75c5f0934215e6447f4ef6d4",
"timestamp": 1680503190000,
"ownerAddress": "TWbdVwjHTNn2PXDPbtSNvvESDd8PpApFmX",
"toAddressList": [
"TAWE8B9DXDgTmfr3bhFsjZ4U8Jx4nFTTTT"
],
"toAddress": "TAWE8B9DXDgTmfr3bhFsjZ4U8Jx4nFTTTT",
"contractType": 1,
"confirmed": true,
"revert": false,
"contractData": {
"amount": 93000000,
"owner_address": "TWbdVwjHTNn2PXDPbtSNvvESDd8PpApFmX",
"to_address": "TAWE8B9DXDgTmfr3bhFsjZ4U8Jx4nFTTTT"
},
"SmartCalls": "",
"Events": "",
"id": "",
"data": "",
"fee": "",
"contractRet": "SUCCESS",
"result": "SUCCESS",
"amount": "93000000",
"cost": {
"net_fee": 268000,
"energy_penalty_total": 0,
"energy_usage": 0,
"fee": 268000,
"energy_fee": 0,
"energy_usage_total": 0,
"origin_energy_usage": 0,
"net_usage": 0
},
"tokenInfo": {
"tokenId": "_",
"tokenAbbr": "trx",
"tokenName": "trx",
"tokenDecimal": 6,
"tokenCanShow": 1,
"tokenType": "trc10",
"tokenLogo": "https://static.tronscan.org/production/logo/trx.png",
"tokenLevel": "2",
"vip": true
},
"tokenType": "trc10"
}
],
"wholeChainTxCount": 5242347520,
"contractMap": {
"TAWE8B9DXDgTmfr3bhFsjZ4U8Jx4nFTTTT": false,
"TWbdVwjHTNn2PXDPbtSNvvESDd8PpApFmX": false
},
"contractInfo": {}
}Get transaction detail information by transaction hash
Get transaction information.
Try this endpoint in your browser 🔗
startQuery Parameters
hash
Transaction hash
Sample response
Get trc20&721 transfers list
Get the transfer list of TRC20 and TRC721 tokens.
Try this endpoint in your browser 🔗
Query Parameters
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
Sample response
Get trc1155 transfer list
Get the transfer list of TRC1155 tokens.
Try this endpoint in your browser 🔗
Query Parameters
relatedAddress
Account address. When the parameter is specified, TRC1155 transfers of the specified address are returned.
start
Start index,default is 0
limit
Number of transfers per page
start_timestamp
Start time, accurate to milliseconds
end_timestamp
End time, accurate to milliseconds
format
Download format. If format = csv, the transfer data can be downloaded.
block
Block number
confirm
Filter transfers by status. 0 - return confirmed transfers only. 1 - return unconfirmed transfers only. 0,1 - return all transfers.
direction
in: transfer-in. out: transfer-out. all: transfer-in + transfer-out transactions
contract_address
Contract address
Sample response
Get trx&trc10 transfer list
Get account's transfer list.
Try this endpoint in your browser 🔗
Query Parameters
sort
Sort type
start
Start index,default is 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
Sample response
Get internal transaction list for special address or block
Get internal transaction list.
Try this endpoint in your browser 🔗
Query Parameters
start
Start index,default is 0
limit
Number of transfers per page
address
Specific address. At least one of the address, block, and contract parameters must be specified
contract
Sender's address
block
Block number
Sample response
Get account's transaction datas
Get account's transaction data.
Try this endpoint in your browser 🔗
Query Parameters
start
Start index,default is 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
Sample response
Get transaction's statistic data
Query statistic data of transactions.
Try this endpoint in your browser 🔗
No parameters required.
Sample response
Get statistic distribution data of transfer
Query statistic data of transfers.
Try this endpoint in your browser 🔗
No parameters required.
Sample response
Get the eligible exchange type transactions
Query the eligible transactions of the exchange type, sorted by time in a descending order.
Try this endpoint in your browser 🔗
Query Parameters
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
Sample response
Last updated