For the complete documentation index, see llms.txt. This page is also available as Markdown.

[v2] Runes Historical Prices

This endpoint provides the historical floor price for a specific rune and a given time period.

Runes prices are sourced from multiple runes marketplaces.

get

Get historical floor prices for a rune (V2). Returns per-timestamp entries with marketplace breakdown (e.g. magiceden, dotswap). timestamp is the timestamp of the floor price. floorPrices fields explained:

  • marketplace is the marketplace where the floor price was observed.

  • valueInSats is the floor price in sats.

  • valueInUsd is the floor price in USD.

Authorizations
x-api-keystringRequired
Path parameters
identifierstringRequired

Rune identifier (rune id or rune name)

Query parameters
fromTimestampstringRequired

ISO timestamp - start of range (e.g. 2024-08-29T03:09:35.236Z)

toTimestampstringOptional

ISO timestamp - end of range (defaults to now)

Responses
200

Default Response

application/json
timestampstringRequired
get/v2/runes/{identifier}/historical-floor-prices
GET /v2/runes/{identifier}/historical-floor-prices?fromTimestamp=text HTTP/1.1
Host: api.secretkeylabs.io
x-api-key: YOUR_API_KEY
Accept: */*
[
  {
    "timestamp": "text",
    "floorPrices": [
      {
        "marketplace": "text",
        "valueInSats": "text",
        "valueInUsd": "text"
      }
    ]
  }
]

Last updated