Rarible · Schema

OlapAggregatedCollectionStatisticsResponse

NFTNon-Fungible TokensMarketplaceAggregatorMultichainEthereumPolygonArbitrumFlowWeb3BlockchainCollectionsOrder BookTradingIndexer

Properties

Name Type Description
highestSaleUsd number Highest worth transaction in all collections
volumeUsd number Total worth of all transactions were made with nfts in collections
owners integer Current amount of unique owners who hold nfts in collections
View JSON Schema on GitHub

JSON Schema

OlapAggregatedCollectionStatisticsResponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "OlapAggregatedCollectionStatisticsResponse",
  "required": [
    "highestSaleUsd",
    "owners",
    "volumeUsd"
  ],
  "type": "object",
  "properties": {
    "highestSaleUsd": {
      "description": "Highest worth transaction in all collections",
      "type": "number",
      "format": "bigdecimal"
    },
    "volumeUsd": {
      "description": "Total worth of all transactions were made with nfts in collections",
      "type": "number",
      "format": "bigdecimal"
    },
    "owners": {
      "type": "integer",
      "description": "Current amount of unique owners who hold nfts in collections",
      "format": "int32"
    }
  }
}