Since: nft v0.1.1
A successful response.
class_id associated with the nft
id is a unique identifier of the NFT
const response = await fetch('https://tia-rest.nownodes.io/cosmos/nft/v1beta1/owner', { method: 'GET', headers: {}, }); const data = await response.json();
{ "owner": "text" }
const response = await fetch('https://tia-rest.nownodes.io/cosmos/nft/v1beta1/owner/{class_id}/{id}', { method: 'GET', headers: {}, }); const data = await response.json();