This endpoint lists all assets.
Success
const response = await fetch('https://xlm.nownodes.io/assets', {
method: 'GET',
headers: {},
});
const data = await response.json();
{
"_links": {
"self": {
"href": "text",
"templated": false
},
"next": {
"href": "text",
"templated": false
},
"prev": {
"href": "text",
"templated": false
}
},
"_embedded": {
"records": [
{
"_links": {
"toml": {
"href": "text",
"templated": false
}
},
"asset_type": "text",
"asset_issuer": "text",
"paging_token": "text",
"accounts": {
"authorized": 0,
"authorized_to_maintain_liabilities": 0,
"unauthorized": 0
},
"num_claimable_balances": 0,
"num_contracts": 0,
"num_liquidity_pools": 0,
"balances": {
"authorized": "text",
"authorized_to_maintain_liabilities": "text",
"unauthorized": "text"
},
"claimable_balances_amount": "text",
"contracts_amount": "text",
"liquidity_pools_amount": "text",
"amount": "text",
"num_accounts": 0,
"flags": {
"auth_required": false,
"auth_revocable": false,
"auth_immutable": false
}
}
]
}
}