Last updated 7 days ago
Get balance by address.
Address
Successful operation
"OK"
const response = await fetch('https://open-api-fractal.unisat.io/v1/indexer/address/{address}/balance', { method: 'GET', headers: {}, }); const data = await response.json();
{ "code": 0, "msg": "OK", "data": { "address": "text" } }
const response = await fetch('https://open-api.unisat.io/v1/indexer/address/{address}/balance', { method: 'GET', headers: {}, }); const data = await response.json();