Create Token-Type
Token templates let you define the parameters that are used to create NFTs and they are limited in number. This endpoint assists you in setting up templates for creating NFTs in a way that can be used repeatedly to save time.
Endpoint: POST /api/token-types
Request Body:
json
Copy code
{
"name": "Artwork Template",
"description": "Template for minting artwork NFTs",
"attributes": [
{
"trait_type": "Art Style",
"value": "Abstract"
}
]
}
Last updated