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
curl -L \
  --url 'https://open-api.unisat.io/v1/indexer/address/{address}/brc20/{ticker}/info' \
  --header 'Authorization: Bearer JWT'
{
  "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