Get Address BRC-20 Ticker Info

get

Obtain BRC20 token infomation by address, including available balance, transferable balance, number of transferable inscriptions, the first few Inscriptions, etc.

Authorizations
Path parameters
addressstringRequired

Address

tickerstringRequired

Token ticker

Responses
200
Successful operation
application/json
get
GET /v1/indexer/address/{address}/brc20/{ticker}/info HTTP/1.1
Host: open-api.unisat.io
Authorization: Bearer JWT
Accept: */*
{
  "code": 0,
  "msg": "OK",
  "data": {
    "ticker": "text",
    "overallBalance": "text",
    "availableBalance": "text",
    "availableBalanceSafe": "text",
    "availableBalanceUnSafe": "text",
    "transferableBalance": "text",
    "historyCount": 1,
    "historyInscriptions": [
      {
        "confirmations": 1,
        "data": {
          "amt": "text",
          "decimal": "text",
          "lim": "text",
          "max": "text",
          "minted": "text",
          "op": "text",
          "tick": "text",
          "to": "text"
        },
        "inscriptionId": "text",
        "inscriptionNumber": 1
      }
    ],
    "transferableCount": 1,
    "transferableInscriptions": [
      {
        "confirmations": 1,
        "data": {
          "amt": "text",
          "decimal": "text",
          "lim": "text",
          "max": "text",
          "minted": "text",
          "op": "text",
          "tick": "text",
          "to": "text"
        },
        "inscriptionId": "text",
        "inscriptionNumber": 1
      }
    ]
  }
}

Last updated