> ## Documentation Index
> Fetch the complete documentation index at: https://docs.range.org/llms.txt
> Use this file to discover all available pages before exploring further.

# Get mint and burn events for a token

> Returns mint and burn Transfer events for a token. For EVM networks these are Transfer events from/to the zero address. For Solana these are mintTo/burn SPL-token instructions.



## OpenAPI

````yaml /api-reference/data-api.json get /v2/tokens/mints-burns
openapi: 3.0.0
info:
  title: Range Data API
  description: >-
    The Range Data API for crypto addresses, networks, transactions, and
    entities.
  version: 1.7.9
  contact: {}
servers:
  - url: https://api.range.org
    description: Range API Server
security:
  - Authorization: []
tags:
  - name: Address Information
    description: Get information about a crypto address.
  - name: Entity Information
    description: Get information about entities.
  - name: Network Information
    description: Get information about networks.
  - name: Protocols
    description: Get information about cross-chain protocols.
  - name: Token transfers
    description: Get information about token transfers.
paths:
  /v2/tokens/mints-burns:
    get:
      tags:
        - Token Information
      summary: Get mint and burn events for a token
      description: >-
        Returns mint and burn Transfer events for a token. For EVM networks
        these are Transfer events from/to the zero address. For Solana these are
        mintTo/burn SPL-token instructions.
      operationId: getMintsBurns
      parameters:
        - name: network
          required: true
          in: query
          description: Network name (e.g. eth, solana)
          schema:
            type: string
        - name: token
          required: true
          in: query
          description: Token name, e.g. USDtb
          schema:
            type: string
        - name: limit
          required: false
          in: query
          description: Max number of events to return (default 50, max 1000)
          schema:
            minimum: 1
            maximum: 1000
            default: 50
            type: number
        - name: cursor
          required: false
          in: query
          description: Pagination cursor (next_cursor value from previous page)
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TokenMintBurnResponse'
components:
  schemas:
    TokenMintBurnResponse:
      type: object
      properties:
        token:
          type: string
          description: Token contract or mint address
        network:
          type: string
          description: Network name
        events:
          type: array
          items:
            $ref: '#/components/schemas/TokenMintBurnEvent'
        next_cursor:
          type: string
          description: Cursor to pass as cursor for the next page
      required:
        - token
        - network
        - events
    TokenMintBurnEvent:
      type: object
      properties:
        type:
          type: string
          enum:
            - mint
            - burn
        amount_raw:
          type: string
          description: Raw integer amount (no decimals applied)
        amount:
          type: number
          description: Human-readable amount (decimals applied where known)
        tx_hash:
          type: string
          description: Transaction hash (EVM) or signature (Solana)
        block_number:
          type: number
          description: EVM block number
        slot:
          type: number
          description: Solana slot
        timestamp:
          type: number
          description: Unix timestamp (seconds)
        account:
          type: string
          description: Token account involved (recipient for mints, sender for burns)
      required:
        - type
        - amount_raw
        - amount
        - tx_hash
  securitySchemes:
    Authorization:
      scheme: bearer
      bearerFormat: API Key
      description: 'Use Authorization: Bearer <api-key>'
      type: http

````