Get BRC-100 Token History

get

Get BRC-100 token history. For the history, "type": 1 is inscribing inscription, 2 is transferring inscription. For successful UTXO history, "status" should be 2. For successful UTXO inscriptions inscribed history, "type" == 1 && "status" == 2. For successful UTXO inscriptions transfer history, "type" == 2 && "status" == 2.

Authorizations
Query parameters
tickerstringrequired
pagenumberrequired

page index, max: 500

pageSizenumberrequired

page size, max: 20

Responses
get
curl -L \
  --url 'https://open-api.inbrc.org/v1/indexer/brc100/token/history?ticker=text&page=1&pageSize=1' \
  --header 'Authorization: Bearer API Key'
{
  "code": 1,
  "msg": "text",
  "data": {
    "total": 1,
    "pageSize": 1,
    "page": 1,
    "records": 1,
    "rows": [
      {
        "protocol": "text",
        "operator": "text",
        "ticker": "text",
        "amount": "text",
        "location": "text",
        "txIndex": 1,
        "blockHeight": 1,
        "from": "text",
        "to": "text",
        "inscriptionSn": 1,
        "inscriptionId": "text",
        "time": 1,
        "status": [
          "1",
          "2",
          "9",
          "PENDING",
          "SUCCESS",
          "FAILED"
        ],
        "type": [
          "1",
          "2",
          "INSCRIBE",
          "TRANSFER"
        ],
        "computingOperator": "text",
        "computingFrom": "text",
        "computingTo": "text",
        "cstatus": [
          "1",
          "2",
          "8",
          "9",
          "PENDING",
          "SUCCESS",
          "FAILED_FORMAT",
          "FAILED_COMPUTING"
        ]
      }
    ]
  }
}
  • For the history, "type": 1 is inscribing inscription, 2 is transferring inscription.

  • For successful UTXO history, "status" should be 2.

  • For successful UTXO inscriptions inscribed history, "type" == 1 && "status" == 2.

  • For successful UTXO inscriptions transfer history, "type" == 2 && "status" == 2.

Last updated