OpenSea · Schema

PriceHistoryResponse

List of price history data points

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Properties

Name Type Description
prices array List of price history points
View JSON Schema on GitHub

JSON Schema

PriceHistoryResponse.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://opensea.io/schemas/PriceHistoryResponse",
  "title": "PriceHistoryResponse",
  "type": "object",
  "description": "List of price history data points",
  "properties": {
    "prices": {
      "type": "array",
      "description": "List of price history points",
      "items": {
        "$ref": "#/components/schemas/PriceHistoryPointResponse"
      }
    }
  },
  "required": [
    "prices"
  ]
}