🔐

GET /communities/:communityId/nftTypes

Returns a list of NFT type objects. Based on the API key attached to the call, it automatically determines which community the call is associated to. Note that there are also default options provided to you by our team if you don’t have any custom ones.

Caveat

Example Response

{
"data": [
{
"name": "Default (Green + Purple)",
"nftTypeId": "defaultGreenPurple",
"previewAssetUrl": "https://images.mintkudos.xyz/nft/default/greenPurplePreview.png",
"isUserAdded": false
},
{
"name": "Default (Orange + Red)",
"nftTypeId": "defaultOrangeRed",
"previewAssetUrl": "https://images.mintkudos.xyz/nft/default/orangeRedPreview.png",
"isUserAdded": false
},
{
"name": "Test NFT Type",
"nftTypeId": "testNFTType",
"previewAssetUrl": "https://images.mintkudos.xyz/nft/kudos/test.png",
"isUserAdded": true
}
]
}