Get BRC-20 balances

Retrieves BRC-20 token balances for a Bitcoin address.


GET

Parameters

Path Parameters

address
REQUIRED
string Bitcoin address

Query Parameters

ticker
array
block_height
string Bitcoin block height
offset
integer Result offset
limit
integer Results per page
Status codeDescription
200Default Response
cURL
curl -L \
"https://api.hiro.so/ordinals/v1/brc-20/balances/{address}?ticker={ticker}&block_height=777678&offset={offset}&limit={limit}" \
-H 'Accept: application/json'
Response
{
"limit": 20,
"offset": 0,
"total": 1,
"results": [
{
"ticker": "string",
"available_balance": "string",
"transferrable_balance": "string",
"overall_balance": "string"
}
]
}