Runes Top Gainers & Losers

Returns Runes with the highest and lowest percentage price change over a specified timeframe.

get

Get top gainers & losers by percentage price change for a specific time frame.

Authorizations
Query parameters
timePeriodstring Β· enumOptional
  • 24h - trailing 24 hours' volume, ending at the start of the prior hour (default)
  • trailing7d - trailing 7 days' volume, ending at the start of the prior hour
  • trailing30d - trailing 30 days' volume, ending at the start of the prior hour
  • 1d - prior day's volume, ending at midnight GMT
  • 7d - prior seven days' volume, ending at midnight GMT
  • 30d - prior 30 days' volume, ending at midnight GMT
Default: 24hPossible values:
Responses
200

Default Response

application/json
get
GET /v1/runes/stats/top-gainers-losers HTTP/1.1
Host: api.secretkeylabs.io
x-api-key: YOUR_API_KEY
Accept: */*
{
  "topGainers": [
    {
      "runeId": "text",
      "absPriceIncrease": 1,
      "pctPriceIncrease": 1,
      "currentPrice": {
        "valueInSats": "text"
      },
      "previousPrice": {
        "valueInSats": "text"
      }
    }
  ],
  "topLosers": [
    {
      "runeId": "text",
      "absPriceIncrease": 1,
      "pctPriceIncrease": 1,
      "currentPrice": {
        "valueInSats": "text"
      },
      "previousPrice": {
        "valueInSats": "text"
      }
    }
  ]
}

Last updated