Add Interactivity to NFTs

Assure the audience by integrating valuable features into your NFTs which can be in the form of a full game, bonus levels, or choices that alter the NFT.

Endpoint: POST /api/nfts/{nftId}/add-interaction

Request Body:

json

Copy code

{

"interactionType": "game",

"interactionPayload": {

"gameUrl": "https://example.com/nft-game"

}

}

Description:

It enables you to associate, for example, an NFT with an external mini-game or a quiz, or any other form of engaging content. Based on the user’s engagement, the metadata or the images of the NFT can also vary in real time.


8. Custom NFT Mint Fees

Possibility to set different rates for custom minting – for your platform as a whole or particular contract. This allows you to manage how much it will cost to mint an NFT depending on the chain or even the complexity of metadata among other variables.

Endpoint: POST /api/contracts/{contractId}/set-fees

Request Body:

json

Copy code

{

"feeType": "Minting",

"amount": 0.01,

"currency": "ETH"

}

Description: This feature allows you to set the minting fee for a contract. You can specify the amount of ETH, SOL, etc. And even change fees depending on the demand or the cost of gas.

Last updated