Minting New Traits
Minting Traits is a highly privileged process that enables collection admin or authorized users to add new traits to NFTs.
POST /v1/account/get-token{ "trait_type": "trait type name", "value": "trait value" }{
"collection_id": "abc123",
"token_id": "12345",
"traits": [
{ "trait_type": "trait type name", "value": "trait value" },
{ "trait_type": "another trait type name", "value": "another trait value" }
]
}Last updated