Get non-fungible token mints

Retrieves a list of non-fungible token mints for a given asset identifier.

GET

/extended/v1/tokens/nft/mints

Retrieves all mint events for a non-fungible token asset class. This is useful to determine which NFTs of a particular collection have been claimed.

More information on non-fungible tokens on the Stacks blockchain can be found here.

Query parameters

asset_identifier
Required
string

Token asset class identifier

Example: "SP2X0TZ59D5SZ8ACQ6YMCHHNR2ZN51Z32E2CJ173.the-explorer-guild::The-Explorer-Guild"

limitinteger

Max number of events to fetch

Default: 50

offsetinteger

Index of first event to fetch

Example: 42000Default: 0

unanchoredboolean

Whether or not to include events from unconfirmed transactions

Example: trueDefault: false

tx_metadataboolean

Whether or not to include the complete transaction metadata instead of just tx_id. Enabling this option can affect performance and response times.

Default: false
Status codeDescription
200Non-Fungible Token mints
Terminal
curl -X GET "https://api.mainnet.hiro.so/extended/v1/tokens/nft/mints"

List of non-fungible token mint events for an asset identifier

Example response
{
  "limit": 200,
  "offset": 0,
  "total": 0,
  "results": [
    {
      "recipient": "string",
      "event_index": 0,
      "value": {
        "hex": "string",
        "repr": "string"
      },
      "tx_id": "string"
    }
  ]
}