Mint NFT from collection
- application/json
Request Body required
Mint NFT from collection
- collectionId string required
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 required
URL that points to the image for this NFT
- mintToAddress string required
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 string requiredTrait name
value object requiredString 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)
- 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.
{
"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"
}