Get NFT status
Returns the minted NFT object
Path Parameters
- id string required
Unique mint operation identifier
- 200
Successful operation
- application/json
- Schema
- Example (from schema)
Schema
- id string
Unique mint operation identifier. You can use this to retrieve the status of a given NFT
- collectionId string
Unique collection identifier
- name string
Name of the NFT token. It defaults to the Collection Name
- description string
Text description of the NFT which will be seen on NFT marketplaces. It defaults to the Collection description
- imageUrl string
URL that points to the image for this NFT
- mintToAddress string
Account address where the NFT will be sent. For example, your Metamask wallet address if you wish to send it to yourself
attributes object[]
Optional list of NFT attributes
traitType stringTrait name
value objectString or numeric value of the attribute
maxValue integerMaximum value for a numeric value
displayType stringPossible values: [
boost_number
,boost_percentage
,number
,date
]Display type of the attribute (None for string values)
- createdOn date-time
The date and time when the object was created.
- transactionHash string
Mint transaction hash which is a unique string of characters that is given to every transaction that is added to the blockchain
- tokenId string
Unique on chain NFT identifier
- contractAddress string
NFT contract address which has been successfully deployed to the blockchain
- explorerUrl string
Transaction URL in an external blockchain explorer
{
"id": "string",
"collectionId": "string",
"name": "Toket unique NFT",
"description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.",
"imageUrl": "https://uploads-ssl.webflow.com/6298d274fbbdfd8453c05a51/6298d40abbabad708c22e33b_toket-g2%20(2)-p-500.png",
"mintToAddress": "0x0000000000000000000000000000000000000000",
"attributes": [
{
"traitType": "Level",
"value": 45,
"maxValue": 0,
"displayType": "boost_number"
}
],
"createdOn": "2023-03-02T16:02:09.821Z",
"transactionHash": "string",
"tokenId": "string",
"contractAddress": "0x0000000000000000000000000000000000000000",
"explorerUrl": "string"
}