Skip to main content
GET
Token - Mint/Burn

Mint and burn event history for one token.

  • This endpoint is Solana-only.
  • Pass the token address in address.
  • limit supports up to 100 items per request and offset supports up to 10,000.
  • Filter by type to focus on mint events, burn events, or both.
  • Use after_time and before_time for bounded event windows.
  • This endpoint consumes 15 CU per request.
  • Track supply expansion and contraction through raw mint and burn events.
  • Investigate treasury activity, token emissions, or deflation events.
  • Build tokenomics dashboards that need event-level supply changes instead of just totals.
  • Explain abrupt supply, liquidity, or price changes with the underlying mint or burn history.
  • Set x-chain=solana.
  • Pass the token address in address.
  • Filter by type and bound the window with after_time and before_time.
  • Page with offset and limit, keeping limit at 100 or below.
  • Review mint and burn events alongside holder and transfer activity so supply moves are interpreted in context.
  • Use bounded time windows around suspected emissions or treasury operations instead of scanning very broad ranges.
  • Keep separate views for mint and burn when analyzing inflationary versus deflationary behavior.
  • Solana only.

Authorizations

X-API-KEY
string
header
required

API key for authentication

Headers

x-chain
enum<string>
default:solana

Solana network only.

Available options:
solana

Query Parameters

address
string
required

The address of the token contract.

sort_by
enum<string>
default:block_time
required

Specify the sort order for mint/burn transactions. Filter for records with sort order equal to the specified sort order.

Available options:
block_time
sort_type
enum<string>
default:desc
required

Specify the sort order.

Available options:
desc,
asc
type
enum<string>
default:all
required

Specify the type of mint/burn transactions. Filter for records with type equal to the specified type.

Available options:
all,
mint,
burn
after_time
integer

Specify the lower bound of time. Filter for records with time greater than the specified after time value, excluding those with time equal to the specified after time.

before_time
integer

Specify the upper bound of time. Filter for records with time less than the specified before time value, excluding those with time equal to the specified before time.

offset
integer
default:0

Pagination start position. offset + limit <= 10000

Required range: 0 <= x <= 10000
limit
integer
default:100

Number of items per page.

Required range: 1 <= x <= 100

Response

JSON object containing a list of mint/burn transactions

success
boolean
required
data
object
required