Get BRC-20 Ticker History

get

Get the full history of BRC20.

Authorizations
Path parameters
tickerstringRequired

Token ticker

Query parameters
typestring · enumRequired

Filter by history type

Possible values:
heightintegerRequired

Block height

startintegerRequired

Start offset

Example: 0
limitintegerRequired

Number of inscriptions returned

Example: 16
Responses
200
Successful operation
application/json
get
GET /v1/indexer/brc20/{ticker}/history HTTP/1.1
Host: open-api-fractal.unisat.io
Authorization: Bearer JWT
Accept: */*
{
  "code": 0,
  "msg": "OK",
  "data": {
    "detail": [
      {
        "valid": true,
        "type": "text",
        "from": "text",
        "to": "text",
        "amount": "text",
        "overallBalance": "text",
        "availableBalance": "text",
        "transferBalance": "text",
        "inscriptionId": "text",
        "inscriptionNumber": 1,
        "height": 1,
        "blockhash": "text",
        "blocktime": 1,
        "txIdx": 1,
        "txid": "text",
        "satoshi": 1,
        "offset": 1
      }
    ],
    "start": 1,
    "total": 1
  }
}

Last updated