Get non-fungible token mints

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

GET

Parameters

Query Parameters

asset_identifier
REQUIRED
string asset class identifier
limit
integer max number of events to fetch
offset
integer index of first event to fetch
unanchored
boolean Include data from unanchored (i.e. unconfirmed) microblocks
tx_metadata
REQUIRED
boolean whether or not to include the complete transaction metadata instead of just `tx_id`. Enabling this option can affect performance and response times.
Status codeDescription
200List of Non-Fungible Token mint events for an asset identifier
4XXDefault Response
cURL
curl -L \
"https://api.hiro.so/extended/v1/tokens/nft/mints?asset_identifier=SP2X0TZ59D5SZ8ACQ6YMCHHNR2ZN51Z32E2CJ173.the-explorer-guild::The-Explorer-Guild&limit={limit}&offset={offset}&unanchored=true&tx_metadata={tx_metadata}" \
-H 'Accept: application/json'
Response
{
"limit": 20,
"offset": 0,
"total": 1,
"results": [
{
"recipient": "SP318Q55DEKHRXJK696033DQN5C54D9K2EE6DHRWP",
"event_index": 0,
"value": {
"hex": "0x1234",
"repr": "value representation"
},
"tx_id": "0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef"
}
]
}

How is this guide?