Get non-fungible token mints

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

GET
/extended/v1/tokens/nft/mints

Non-Fungible Token mints

Retrieves all mint events for a Non-Fungible Token asset class. 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
/extended/v1/tokens/nft/mints

curl -X GET "https://api.hiro.so/extended/v1/tokens/nft/mints?asset_identifier=SP2X0TZ59D5SZ8ACQ6YMCHHNR2ZN51Z32E2CJ173.the-explorer-guild%3A%3AThe-Explorer-Guild&limit=50&offset=42000&unanchored=true&tx_metadata=false"

List of Non-Fungible Token mint events for an asset identifier

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