Last updated 11 months ago
Obtain BRC20 list status
Successful operation
"OK"
const response = await fetch('https://open-api.unisat.io/v1/indexer/brc20/status', { method: 'GET', headers: {}, }); const data = await response.json();
{ "code": 0, "msg": "OK", "data": { "detail": [ { "ticker": "text", "creator": "text", "totalMinted": "text", "confirmedMinted": "text", "confirmedMinted1h": "text", "confirmedMinted24h": "text", "minted": "text", "txid": "text", "inscriptionId": "text", "max": "text", "limit": "text" } ] } }