OpenSea · Schema

NftAnalyticsResponse

Analytics data for an NFT including sales and floor price history

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Properties

Name Type Description
sales array List of sale data points
floor_prices array List of floor price data points
View JSON Schema on GitHub

JSON Schema

NftAnalyticsResponse.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://opensea.io/schemas/NftAnalyticsResponse",
  "title": "NftAnalyticsResponse",
  "type": "object",
  "description": "Analytics data for an NFT including sales and floor price history",
  "properties": {
    "sales": {
      "type": "array",
      "description": "List of sale data points",
      "items": {
        "$ref": "#/components/schemas/NftSalePointResponse"
      }
    },
    "floor_prices": {
      "type": "array",
      "description": "List of floor price data points",
      "items": {
        "$ref": "#/components/schemas/FloorPricePointResponse"
      }
    }
  },
  "required": [
    "floor_prices",
    "sales"
  ]
}