Nonce

returns the NFT token data for a given address, token identifier and nonce.

GEThttps://egld.nownodes.io/address/{address}/nft/{tokenIdentifier}/nonce/{nonce}
Path parameters
address*string

the address in bech32 format

tokenIdentifier*string

the token identifier to search for

nonce*integer

the nonce to look after

Response

successful operation

Body
tokenIdentifierstring
balancestring
propertiesstring
Request
const response = await fetch('https://egld.nownodes.io/address/{address}/nft/{tokenIdentifier}/nonce/{nonce}', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "tokenIdentifier": "text",
  "balance": "text",
  "properties": "text"
}