inBRC | BRC-100 Indexer
inBRCTestnet100SwapBRC-100
  • inBRC Introduction
  • inBRC Developer Service
    • BRC-100 Indexer
      • Get Latest Block
      • Get BRC-100 Address Balances
      • Get BRC-100 Address Balance
      • Get BRC-100 User State
      • Get BRC-100 Tokens
      • Get BRC-100 Token
      • Get BRC-100 Token History
      • Get BRC-100 Address History
    • inBRC Marketplace
      • Get BRC-100 Marketplace Tokens
      • Get BRC-100 Marketplace Token
    • BRC-100 Extension Protocols Indexer
      • BRC-101
      • BRC-102
    • inBRC Inscribe
  • inBRC $ins Tokenomics
  • inBRC Links
  • BRC-100 Protocol Stack
    • Introduction
      • Design Principles
      • Concepts
    • BRC-100 Protocol
Powered by GitBook
On this page
  1. inBRC Developer Service
  2. BRC-100 Indexer

Get BRC-100 Address History

PreviousGet BRC-100 Token HistoryNextinBRC Marketplace

Last updated 1 year ago

  • 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.

get

Get address history by ticker. 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
addressstringRequired
tickerstringRequired
pagenumberRequired

page index, max: 500

pageSizenumberRequired

page size, max: 20

Responses
200
Successful Operation.
application/json
401
Invalid Api Key!
get
GET /v1/indexer/brc100/address/history HTTP/1.1
Host: open-api.inbrc.org
Authorization: Bearer API Key
Accept: */*
{
  "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"
        ]
      }
    ]
  }
}