Collection Historical Floor Prices

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

get

Get historical floor prices for an Ordinals collection.

Authorizations
Path parameters
collectionIdstringRequiredExample: {"value":"wzrds"}
Query parameters
fromTimestampstringRequired

ISO timestamp - no older than 1 year ago (e.g. 2024-08-29T03:09:35.236Z)

toTimestampstringOptional

ISO timestamp - up until now / not in the future

Responses
200

Default Response

application/json
get
GET /v1/ordinals/collections/{collectionId}/historical-floor-prices HTTP/1.1
Host: api.secretkeylabs.io
x-api-key: YOUR_API_KEY
Accept: */*
[
  {
    "timestamp": "text",
    "floorPrice": {
      "valueInSats": 1,
      "valueInUsd": "text"
    }
  }
]

Last updated