Runes by IDs

This endpoint is used to retrieve the metadata & market data associated with a batch of up to 10 runes, based on the runes' IDs.

get

Get price info for a list of runes. The runeIds query parameter should be a comma-separated list of Rune IDs.

Authorizations
Query parameters
runeIdsstring Β· min: 1RequiredExample: UNCOMMONGOODS,840000:3
Responses
200

Default Response

application/json
get
GET /v1/runes/batch HTTP/1.1
Host: api.secretkeylabs.io
x-api-key: YOUR_API_KEY
Accept: */*
[
  {
    "chain": "text",
    "runeName": "text",
    "symbol": "text",
    "runeId": "text",
    "spacedRuneName": "text",
    "amount": "text",
    "cap": "text",
    "divisibility": "text",
    "premine": "text",
    "turbo": true,
    "genesisBlock": 1,
    "mint": {
      "offset": {
        "low": "text",
        "high": "text"
      },
      "height": {
        "low": "text",
        "high": "text"
      }
    },
    "holders": "text",
    "supply": "text",
    "marketCap": {
      "valueInSats": "text",
      "valueInUsd": "text"
    },
    "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