Get Inscription Events
Can be used to query the creation and transfer events of text-type inscriptions to resolve various inscription protocols.
get
Get inscription events
Authorizations
Query parameters
startintegerRequiredExample:
Start blockheight
0
endintegerRequiredExample:
End blockheight (0 represents the inclusion of mempool data.)
0
cursorintegerRequiredExample:
Start offset
0
sizeintegerRequiredExample:
Number of items returned
16
Responses
200
Successful operation
application/json
401
Invalid API Key
get
GET /v1/indexer/inscription/events HTTP/1.1
Host: open-api.unisat.io
Authorization: Bearer JWT
Accept: */*
{
"code": 0,
"msg": "OK",
"data": {
"cursor": 1,
"total": 1,
"detail": [
{
"isTransfer": true,
"inscriptionId": "text",
"inscriptionNumber": 1,
"address": "text",
"contentBody": "text",
"contentType": "text",
"inSatoshi": 1,
"outSatoshi": 1,
"pkScript": "text",
"satoshi": 1,
"timestamp": 1,
"txid": "text",
"i": 1,
"vout": 1,
"sequence": 1,
"height": 1,
"txidx": 1
}
]
}
}

Last updated