Get Runes Events

get

Get the full history events of Runes.

Authorizations
Query parameters
runestringOptional

Filter by rune

typestring · enumOptional

Filter by history type

Possible values:
addressstringOptional

Filter by address

heightintegerOptional

Filter by block height

txidstringOptional

Filter by tx

startintegerOptional

Start offset

Example: 0
limitintegerOptional

Number of inscriptions returned

Example: 16
Responses
200
Successful operation
application/json
get
GET /v1/indexer/runes/event HTTP/1.1
Host: open-api-fractal.unisat.io
Authorization: Bearer JWT
Accept: */*
{
  "code": 0,
  "msg": "OK",
  "data": {
    "detail": [
      {
        "type": "etch",
        "address": "text",
        "amount": "text",
        "height": 1,
        "txidx": 1,
        "txid": "text",
        "timestamp": 1,
        "rune": "text",
        "runeid": "text"
      }
    ],
    "start": 1,
    "total": 1
  }
}

Last updated