Get BRC-20 Holders
get
Get the holders of BRC20 by ticker.
Authorizations
Path parameters
tickerstringRequired
Token ticker
Query parameters
startintegerRequiredExample:
Start offset
0
limitintegerRequiredExample:
Number of returned
16
Responses
200
Successful operation
application/json
401
Invalid API Key
get
GET /v1/indexer/brc20/{ticker}/holders HTTP/1.1
Host: open-api.unisat.io
Authorization: Bearer JWT
Accept: */*
{
"code": 0,
"msg": "OK",
"data": {
"detail": [
{
"address": "text",
"availableBalance": "text",
"overallBalance": "text",
"transferableBalance": "text"
}
],
"start": 1,
"total": 1
}
}
Last updated