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
startintegerRequired

Start blockheight

Example: 0
endintegerRequired

End blockheight (0 represents the inclusion of mempool data.)

Example: 0
cursorintegerRequired

Start offset

Example: 0
sizeintegerRequired

Number of items returned

Example: 16
Responses
200
Successful operation
application/json
get
GET /v1/indexer/inscription/events HTTP/1.1
Host: open-api-fractal.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