Get BRC-20 token details

Retrieves information for a BRC-20 token, including supply and holders.

GET
/ordinals/v1/brc-20/tokens/{ticker}

BRC-20 Token Details

Retrieves information for a BRC-20 token including supply and holders

Path Parameters

ticker
Required
string

Status codeDescription
200Default Response
404Default Response
/ordinals/v1/brc-20/tokens/{ticker}

curl -X GET "https://api.hiro.so/ordinals/v1/brc-20/tokens/string"

{
  "token": {
    "id": "1463d48e9248159084929294f64bda04487503d30ce7ab58365df1dc6fd58218i0",
    "number": 248751,
    "block_height": 752860,
    "tx_id": "1463d48e9248159084929294f64bda04487503d30ce7ab58365df1dc6fd58218",
    "address": "bc1pvwh2dl6h388x65rqq47qjzdmsqgkatpt4hye6daf7yxvl0z3xjgq247aq8",
    "ticker": "PEPE",
    "max_supply": "21000000",
    "mint_limit": "100000",
    "decimals": 18,
    "deploy_timestamp": 1677733170000,
    "minted_supply": "1000000",
    "tx_count": 300000
  },
  "supply": {
    "max_supply": "21000000",
    "minted_supply": "1000000",
    "holders": 240
  }
}