Last updated 7 days ago
Get the full history of BRC20 by address.
Address
Successful operation
"OK"
const response = await fetch('https://open-api-fractal.unisat.io/v1/indexer/address/{address}/brc20/history', { method: 'GET', headers: {}, }); const data = await response.json();
{ "code": 0, "msg": "OK", "data": { "detail": [ { "valid": false, "type": "text", "from": "text", "to": "text", "amount": "text", "overallBalance": "text", "availableBalance": "text", "transferBalance": "text", "inscriptionId": "text", "blockhash": "text", "txid": "text" } ] } }
Get the full history of BRC20.
Token ticker
const response = await fetch('https://open-api-fractal.unisat.io/v1/indexer/brc20/{ticker}/history?type=inscribe-deploy', { method: 'GET', headers: {}, }); const data = await response.json();