Last updated 9 months ago
Can be used to query the creation and transfer events of text-type inscriptions to resolve various inscription protocols.
Get inscription events
Successful operation
"OK"
const response = await fetch('https://open-api.unisat.io/v1/indexer/inscription/events', { method: 'GET', headers: {}, }); const data = await response.json();
{ "code": 0, "msg": "OK", "data": { "detail": [ { "isTransfer": false, "inscriptionId": "text", "address": "text", "contentBody": "text", "contentType": "text", "pkScript": "text", "txid": "text" } ] } }