Since: nft v0.1.1
A successful response.
owner is the owner address of the nft
class_id associated with the nft
const response = await fetch('https://thor.nownodes.io/cosmos/nft/v1beta1/balance', { method: 'GET', headers: {}, }); const data = await response.json();
{ "amount": "text" }
const response = await fetch('https://thor.nownodes.io/cosmos/nft/v1beta1/balance/{owner}/{class_id}', { method: 'GET', headers: {}, }); const data = await response.json();