Batch Mint Multiple NFTs
For example, if the desire is to mint many NFTs at one go, then one may do so by using this endpoint.
Endpoint: POST /api/mint/batch
Request Body:
json
Copy code
{
"contractId": "{contractId}",
"tokenTypeId": "{tokenTypeId}",
"recipients": [
"{walletAddress1}",
"{walletAddress2}"
],
"metadata": {
"name": "Batch NFT",
"description": "Minted in bulk"
}
}
Last updated