[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:
marketplaceis the marketplace where the floor price was observed.valueInSatsis the floor price in sats.valueInUsdis 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
400
Invalid input
application/json
401
Unauthorized
application/json
404
Not found
application/json
429
Rate limit exceeded
application/json
500
Internal server error
application/json
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