class_id associated with the nft
A successful response.
Class defines the class of the nft type.
const response = await fetch('https://kava.nownodes.io/cosmos/nft/v1beta1/classes/{class_id}', { method: 'GET', headers: {}, }); const data = await response.json();
{ "class": { "id": "text", "name": "text", "symbol": "text", "description": "text", "uri": "text", "uri_hash": "text", "data": { "type_url": "text", "value": "Ynl0ZXM=" } } }
class defines the class of the nft type.
pagination defines the pagination in the response.
const response = await fetch('https://kava.nownodes.io/cosmos/nft/v1beta1/classes', { method: 'GET', headers: {}, }); const data = await response.json();
{ "classes": [ { "id": "text", "name": "text", "symbol": "text", "description": "text", "uri": "text", "uri_hash": "text", "data": { "type_url": "text", "value": "Ynl0ZXM=" } } ], "pagination": { "next_key": "Ynl0ZXM=", "total": "text" } }