Get Address BRC-20 Ticker Info
get
/v1/indexer/address/{address}/brc20/{ticker}/info
Obtain BRC20 token infomation by address, including available balance, transferable balance, number of transferable inscriptions, the first few Inscriptions, etc.
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
addressstringRequired
Address
tickerstringRequired
Token ticker
Responses
200
Successful operation
application/json
401
Invalid API Key
get
/v1/indexer/address/{address}/brc20/{ticker}/infoGET /v1/indexer/address/{address}/brc20/{ticker}/info HTTP/1.1
Host: open-api.unisat.io
Authorization: Bearer YOUR_SECRET_TOKEN
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