Batch NFT Minting with Custom Metadata
For marketplaces or large-scale projects where it becomes possible to mint hundreds or thousands of NFT at a time with different metadata. This helps you to assign different properties to each token in one go.
Endpoint: POST /api/mint/batch/advanced
Request Body:
json
Copy code
{
"contractId": "{contractId}",
"tokenTypeId": "{tokenTypeId}",
"recipients": [
{
"wallet": "{walletAddress1}",
"metadata": {
"name": "NFT #1",
"description": "Unique description for NFT #1",
"traits": {
"Rarity": "Common",
"Color": "Red"
}
}
},
{
"wallet": "{walletAddress2}",
"metadata": {
"name": "NFT #2",
"description": "Unique description for NFT #2",
"traits": {
"Rarity": "Rare",
"Color": "Blue"
}
}
}
]
}
Description: Batched minting with customized metadata makes it possible for an individual to mint as many NFTs for every single one with varying traits. This is perfect for things such as games or other collectibles where every single NFT has its own attributes.
Last updated