Mint a Single NFT

Are you among the people who want to create an NFT? This kind of endpoint can be used to mint one NFT according to a certain template or a set of new parameters.

Endpoint: POST /api/mint

Request Body:

json

Copy code

{

"contractId": "{contractId}",

"tokenTypeId": "{tokenTypeId}",

"recipient": "{walletAddress}",

"metadata": {

"name": "Unique NFT",

"description": "This is a one-of-a-kind NFT",

"image": "https://example.com/nft-image.png"

}

}

Last updated