Burn API v1

Getting Started

Base URL

https://api.unlocks.app

Authentication

Provide your api key in the x-api-key header.

GET https://api.unlocks.app/v1/burn/{tokenId}
HEADER: x-api-key: <YOUR_API_KEY>

Parameters

Note: tokenId needs to be specified.

  • tokenId (required): Get tokenId from Token List API

  • start (optional): The start date for time filtering in the format YYYY-MM-DD. Defaults to the earliest available date.

  • end (optional): The end date for time filtering in the format YYYY-MM-DD. Defaults is the furthest available date.

Example:

curl -X 'GET' \
  'https://api.unlocks.app/v1/burn/aptos?start=2024-12-01&end=2024-12-02' \
  -H 'x-api-key: $YOUR_API_KEY'

Response

The response includes time series data with the unix timestamp.

Return Fields Explanation

Fields
Data Type
Description

tokenId

string

Identifier to call for a Dataset

tokenName

string

Token Name

tokenSymbol

string

Token Symbol

totalBurnAmount

timestamp

Total burned token amount up to latest tracked data.

Return Fields Explanation: burns

Fields
Data Type
Description

burnEventLabel

string

Label of burn event

burnType

string

Type of burn event

burnDate

string

date of token burn

amount

number

Burn amount

Return Fields Explanation: metadata

Fields
Data Type
Description

burners

string

Type of burner

burnReasons

string

Type of purpose of the burn event

Last updated