Rarible · Schema

OlapGlobalCollectionStatisticsResponse

NFTNon-Fungible TokensMarketplaceAggregatorMultichainEthereumPolygonArbitrumFlowWeb3BlockchainCollectionsOrder BookTradingIndexer

Properties

Name Type Description
id object
listed integer
items integer
owners integer
floor object
volume object Total worth of all transactions with items in this collection
View JSON Schema on GitHub

JSON Schema

OlapGlobalCollectionStatisticsResponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "OlapGlobalCollectionStatisticsResponse",
  "type": "object",
  "properties": {
    "id": {
      "$ref": "#/components/schemas/CollectionId"
    },
    "listed": {
      "type": "integer",
      "format": "int64"
    },
    "items": {
      "type": "integer",
      "format": "int64"
    },
    "owners": {
      "type": "integer",
      "format": "int64"
    },
    "floor": {
      "$ref": "#/components/schemas/OlapPriceWithUsd"
    },
    "volume": {
      "description": "Total worth of all transactions with items in this collection",
      "$ref": "#/components/schemas/OlapPriceWithUsd"
    }
  },
  "required": [
    "listed",
    "items",
    "owners",
    "volume"
  ]
}