Get BRC-20 token holders

Retrieves a list of holders and their balances for a particular BRC-20 token.

GET

Parameters

Path Parameters

ticker
REQUIRED
string

Query Parameters

offset
integer Result offset
limit
integer Results per page
Status codeDescription
200Default Response
404Default Response
cURL
curl -L \
"https://api.hiro.so/ordinals/v1/brc-20/tokens/{ticker}/holders?offset={offset}&limit={limit}" \
-H 'Accept: application/json'
Response
{
"limit": 20,
"offset": 0,
"total": 1,
"results": [
{
"address": "SP318Q55DEKHRXJK696033DQN5C54D9K2EE6DHRWP",
"overall_balance": "string"
}
]
}