Last updated 3 months ago
Get the tiker list of BRC20 token.
Block Height
818698
Successful operation
"OK"
const response = await fetch('https://open-api-fractal.unisat.io/v1/indexer/brc20/history-by-height/{height}?start=0&limit=0', { method: 'GET', headers: { "Authorization": "Bearer JWT" }, }); const data = await response.json();
{ "code": 0, "msg": "OK", "data": { "height": 0, "total": 0, "start": 0, "detail": [ { "valid": false, "type": "text", "from": "text", "to": "text", "amount": "text", "overallBalance": "text", "availableBalance": "text", "transferBalance": "text", "inscriptionId": "text", "inscriptionNumber": 0, "height": 0, "blockhash": "text", "blocktime": 0, "txIdx": 0, "txid": "text", "satoshi": 0, "offset": 0 } ] } }