BRC-20 by Ticker

This endpoint returns the metadata, latest price, and 24h volume for a given BRC-20 ticker

get

Get data and price info for a specific BRC20 by ticker.

Authorizations
Path parameters
tickerstring Β· min: 1Required

Ticker of the BRC20 token (e.g. ordi, sats, etc.)

Responses
200

Default Response

application/json
get
GET /v1/brc20/ticker/{ticker} HTTP/1.1
Host: api.secretkeylabs.io
x-api-key: YOUR_API_KEY
Accept: */*
{
  "ticker": "text",
  "maxSupply": "text",
  "mintLimit": "text",
  "decimals": 1,
  "txid": "text",
  "inscriptionId": "text",
  "blockHeight": "text",
  "isSelfMint": true,
  "prices": {
    "floorPrice": {
      "marketplace": "text",
      "valueInSats": "text",
      "valueInUsd": "text",
      "percentageChange24h": {
        "valueInSats": "text",
        "valueInUsd": "text"
      }
    },
    "lastSalePrice": {
      "marketplace": "text",
      "valueInSats": "text",
      "valueInUsd": "text"
    }
  },
  "volume24h": {
    "valueInSats": "text",
    "valueInUsd": "text",
    "percentageChange": {
      "valueInSats": "text",
      "valueInUsd": "text"
    }
  }
}

Last updated