API Reference
DBot OfficialDBot DashboardPricing

Burn Token

This API is used to get all burn records of a specific token

PlusFreeProEnterpriseCredit Usage
10

Response data

{
  "err": false, // Error or not
  "res": [
    {
      "id": "685e36d63309caac3e3f0d99", // This transaction's ID
      "slot": 349481843, // Block number in which the trade occurred
      "blockTime": 1751004882, // Block time
      "txHash": "transaction hash", // Transaction hash
      "tradeType": "burn", // Fixed: burn
      "account": "B4D9q3Yit8r1LTMQMWbekjvG8myR2h1ctGJUmzjPrCbE", // Wallet address that made the trade (maker)
      "mint": "3epCNLt7PxxPhfwyiPix5CW96NTouyqc9oUcmDGhpump", // Token address
      "quantity": 6968.912357 // Token amount burned
    }
  ]
}
Language