the address in bech32 format
successful operation
the token identifier to search for
const response = await fetch('https://egld.nownodes.io/address/{address}/esdt', { method: 'GET', headers: {}, }); const data = await response.json();
{ "data": [ { "tokens": [ "text" ] } ], "error": "text", "code": "text" }
const response = await fetch('https://egld.nownodes.io/address/{address}/esdt/{tokenIdentifier}', { method: 'GET', headers: {}, }); const data = await response.json();
{ "data": [ { "tokenIdentifier": "text", "balance": "text", "properties": "text" } ], "error": "text", "code": "text" }