Get BRC-20 Ticker Info

get
/v1/indexer/brc20/{ticker}/info

Get the infomation of BRC20 by ticker.

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
tickerstringRequired

Token ticker

Responses
200

Successful operation

application/json
get
/v1/indexer/brc20/{ticker}/info

Due to the inability to transmit special characters on the router, for tickers containing special characters, please use the hexadecimal encoding format.

export function stringToHex(stringToEncode: string) {
    return Buffer.from(stringToEncode).toString('hex')
}

Last updated