Burns
Track token burn statistics and burn history.
GET /burns/:mintAddress
/burns/:mintAddressGet burn statistics for a specific token including total amount burned and burn history.
Path parameters
mintAddress(string) — token mint address
Response (200 OK)
200 OK){
"totalBurned": "50000000000",
"burns": [
{
"id": "uuid",
"amount": "10000000000",
"signature": "transaction_signature",
"timestamp": "2024-01-01T12:00:00Z"
}
]
}Related
Last updated