Returns an account with the specified address.
Account address
Returns a list of accounts.
const response = await fetch('https://xtz-index.nownodes.io/v1/accounts/{address}', { method: 'GET', headers: {}, }); const data = await response.json();
{ "type": "text" }
const response = await fetch('https://xtz-index.nownodes.io/v1/accounts', { method: 'GET', headers: {}, }); const data = await response.json();
[ { "type": "text" } ]