jetton/transfers - Ton
jetton/transfers. Retrieves a list of Jetton transfer events.
jetton/transfers - ton [Value: 100CU]
Retrieves a list of Jetton transfer events.
Use cases
- Get data on Jetton transfers
- Track Jetton transfer history
- Audit Jetton transfer details
Constraints
- Requires valid transfer ID
- Supports Jetton Transfers V3 only
- Depends on sync
Unlock Access to 50+ chains
Boost your app's speed and reliability with dRPC - get your access API key
Language
Request
Examples
curl --request GET \
--url ' https://ton.drpc.org/rest/api/v3/jetton/transfers?direction=both&limit=128&offset=0&sort=desc' \
--header 'accept: application/json'
Response
200
{
"ok": true,
"result": [
{
"jetton": {
"address": "0:abcdefabcdefabcdefabcdefabcdefabcdefabcdefabcdefabcdefabcdefabcdef",
"name": "TON Stablecoin",
"symbol": "TONUSD"
},
"from": {
"address": "EQD1Lp1KcmGHFpE8eIvL1mnHT83b4HdB8HJxuSfq6Rq4zGyN"
},
"to": {
"address": "EQDzSp9Qc6KcJXGJc7NkSVxj2pzLsmM4NdFpc8i2dZqjU9i9"
},
"transaction": {
"hash": "a9d39a7f1e5f849835496b052885ed2ac07d54d5e0e11f2b17c3b00e3295a2b0",
"time": 1693527600,
"amount": "1000000",
"comment": "Transfer of TON Stablecoin"
}
},
{
"jetton": {
"address": "0:1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef",
"name": "TON Energy Token",
"symbol": "TONE"
},
"from": {
"address": "EQDtFpEwcFAEcRe5mLVh2N6C0x-_hJEM7W61_JLnSF74p4q2"
},
"to": {
"address": "EQC7VpEHw2DA9hxkdx_WXv9NSkb_v_KVQMY2Le4a4Fk9DUqQ"
},
"transaction": {
"hash": "b2c43e5f2f4a849835496b052885ed2ac07d54d5e0e11f2b17c3b00e3295a2a1",
"time": 1693527500,
"amount": "500000",
"comment": "Energy token transfer"
}
}
]
}
Request params
object
directionstring
Required. The direction of transfers to retrieve. Possible values are 'in', 'out', or 'both'. Default is 'both'.
limitinteger
Optional. The maximum number of transfers to return. Default is 128.
offsetinteger
Optional. The number of transfers to skip before starting to return results. Default is 0.
sortstring
Optional. The sorting order of the transfers. Possible values are 'asc' for ascending or 'desc' for descending. Default is 'desc'.
Response
200
Response params
object
okboolean
Indicates if the request was successful.
resultarray
List of jetton transfer details.
object
jettonobject
Details of the jetton involved in the transfer.
object
addressstring
Unique identifier of the jetton.
namestring
Name of the jetton.
symbolstring
Symbol representing the jetton.
fromobject
Details of the sender.
object
addressstring
Address of the sender.
toobject
Details of the recipient.
object
addressstring
Address of the recipient.
transactionobject
Details of the transaction.
object
hashstring
Hash of the transaction.
timeinteger
Unix timestamp when the transaction occurred.
amountstring
Amount of the jetton transferred.
commentstring
Additional comment associated with the transaction.