Burn Token (GET)

Burn Token: Credit Usage 10

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

URL

https://api-data-v1.dbotx.com/kline/burn_txs?chain={chain}&token={token}&account={account}&page={page}

Header: X-API-KEY

(Please do not disclose your API Key to anyone. If you are at risk of losing it, please refresh it.)

Parameters

{chain} solana Required
{token} Token address Required
{account} Address filter, only view trades of this address (maker)
{page} 0 / 1 / 2 …

Notes

X-API-KEY can be obtained in your "Dashboard", go to check: Dashboard

Results

{
	"err": false,
	"res": [
		{
			"id": "685e36d63309caac3e3f0d99",
			"slot": 349481843,
			"blockTime": 1751004882,
			"txHash": "3xQC7Qb2NNG69QPeJKEW2czzYwZJs8TcydgxpYYNjRjFRuP5QABC3Shv7Q6q9zzJHPZq9Fr9guMJyo68uRaSmM1h",
			"tradeType": "burn",
			"account": "B4D9q3Yit8r1LTMQMWbekjvG8myR2h1ctGJUmzjPrCbE",
			"mint": "3epCNLt7PxxPhfwyiPix5CW96NTouyqc9oUcmDGhpump",
			"quantity": 6968.912357
		}
	],
	"docs": "https://dbotx.com/docs"
}

Response Parameters

  • id: This transaction's ID

  • slot: Block number in which the trade occurred

  • txHash: Transaction hash

  • tradeType: Fixed: burn

  • account: Wallet address that made the trade (maker)

  • mint: Token address

  • quantity: apiParamKlineBurnQuantity

Last updated