Get BRC-20 tokens

Retrieves information for BRC-20 tokens.

GET

Parameters

Query Parameters

ticker
array
order_by
string Parameter to order results by
offset
integer Result offset
limit
integer Results per page
Status codeDescription
200Default Response
cURL
curl -L \
"https://api.hiro.so/ordinals/v1/brc-20/tokens?ticker={ticker}&order_by={order_by}&offset={offset}&limit={limit}" \
-H 'Accept: application/json'
Response
{
"limit": 20,
"offset": 0,
"total": 1,
"results": [
{
"id": "string",
"number": 0,
"block_height": 144000,
"tx_id": "0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef",
"address": "SP318Q55DEKHRXJK696033DQN5C54D9K2EE6DHRWP",
"ticker": "string",
"max_supply": "string",
"mint_limit": "string",
"decimals": 0,
"deploy_timestamp": 0,
"minted_supply": "string",
"tx_count": 0
}
]
}