jetton/burns - Ton
jetton/burns. Provides information on Jetton burn events.
jetton/burns - ton [Value: 100CU]
Provides information on Jetton burn events.
Use cases
- Retrieve data on Jetton burns
- Analyze burn transaction details
- Audit Jetton burn history
Constraints
- Requires valid burn ID
- Supports Jetton Burns V3 only
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/burns?limit=128&offset=0' \
--header 'accept: application/json'
Response
200
{
"ok": true,
"result": [
{
"burn_id": "0:abcdefabcdefabcdefabcdefabcdefabcdefabcdefabcdefabcdefabcdefabcdef",
"address": "EQCvxJy4eG8hyHBFsZ7eePxrRsUQSFE_jpptRAYBmcG_DOGS",
"amount": "1000000",
"timestamp": 1693527600,
"message": "Burn of excess tokens",
"transaction_id": "0:a9d39a7f1e5f849835496b052885ed2ac07d54d5e0e11f2b17c3b00e3295a2b0"
},
{
"burn_id": "0:1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef",
"address": "EQCvxJy4eG8hyHBFsZ7eePxrRsUQSFE_jpptRAYBmcG_DOGS",
"amount": "500000",
"timestamp": 1693527500,
"message": "Burn for contract upgrade",
"transaction_id": "0:b2c43e5f2f4a849835496b052885ed2ac07d54d5e0e11f2b17c3b00e3295a2a1"
}
// Additional burn events up to the limit...
]
}
Request params
object
limitinteger
Optional. The maximum number of NFT collections to return. Default is 128.
offsetinteger
Optional. The number of NFT collections to skip before starting to return results. Default is 0.
Response
200
Response params
object
okboolean
Indicates if the request was successful.
resultarray
List of burn details.
object
burn_idstring
Unique identifier of the burn operation.
addressstring
Address associated with the burn operation.
amountstring
Amount of tokens burned.
timestampinteger
Unix timestamp when the burn operation occurred.
messagestring
Message associated with the burn operation.
transaction_idstring
Identifier of the transaction that recorded the burn.