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=1680503191391

Try this endpoint in your browser 🔗

Query Parameters

ParameterDescription

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.

https://apilist.tronscanapi.com/api/transaction-info?hash=3194a00c5cf427a931b908453588b2ca3f661dafa3860b76a6362d08b3b08583

Try this endpoint in your browser 🔗

startQuery Parameters

ParameterDescription

hash

Transaction hash

Get trc20&721 transfers list

Get the transfer list of TRC20 and TRC721 tokens.

https://apilist.tronscanapi.com/api/token_trc20/transfers?limit=20&start=0&contract_address=TMwFHYXLJaRUPeW6421aqXL4ZEzPRFGkGT&start_timestamp=&end_timestamp=&confirm=&filterTokenValue=1

Try this endpoint in your browser 🔗

Query Parameters

ParameterDescription

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.

https://apilist.tronscanapi.com/api/token_trc1155/transfers?limit=20&start=0&contract_address=TXWLT4N9vDcmNHDnSuKv2odhBtizYuEMKJ&start_timestamp=&end_timestamp=&confirm=&filterTokenValue=0

Try this endpoint in your browser 🔗

Query Parameters

ParameterDescription

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

Get trx&trc10 transfer list

Get account's transfer list.

https://apilist.tronscanapi.com/api/transfer?sort=-timestamp&count=true&limit=20&start=0&address=TLa2f6VPqDgRE67v1736s7bJ8Ray5wYjU7&filterTokenValue=1

Try this endpoint in your browser 🔗

Query Parameters

ParameterDescription

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

Get internal transaction list for special address or block

Get internal transaction list.

https://apilist.tronscanapi.com/api/internal-transaction?limit=20&start=0&address=TLa2f6VPqDgRE67v1736s7bJ8Ray5wYjU7

Try this endpoint in your browser 🔗

Query Parameters

ParameterDescription

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

Get account's transaction datas

Get account's transaction data.

https://apilist.tronscanapi.com/api/token_trc20/transfers-with-status?limit=1&start=0&trc20Id=TUpMhErZL2fhh4sVNULAbNKLokS4GjC1F4&address=TV6MuMXfmLbBqPZvBHdwFsDnQeVfnmiuSi

Try this endpoint in your browser 🔗

Query Parameters

ParameterDescription

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

Get transaction's statistic data

Query statistic data of transactions.

https://apilist.tronscanapi.com/api/transaction/statistics

Try this endpoint in your browser 🔗

No parameters required.

Get statistic distribution data of transfer

Query statistic data of transfers.

https://apilist.tronscanapi.com/api/transfer/statistics

Try this endpoint in your browser 🔗

No parameters required.

Get the eligible exchange type transactions

Query the eligible transactions of the exchange type, sorted by time in a descending order.

https://apilist.tronscanapi.com/api/exchange/transaction?start=0&limit=5

Try this endpoint in your browser 🔗

Query Parameters

ParameterDescription

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

Last updated