Rarible · Schema

OlapCollectionStatisticsResponse

NFTNon-Fungible TokensMarketplaceAggregatorMultichainEthereumPolygonArbitrumFlowWeb3BlockchainCollectionsOrder BookTradingIndexer

Properties

Name Type Description
highestSale array Highest worth transaction in collection
floorPrice array Minimal price of nft in this collection available on rarible
marketCap array Market cap of collection (floor price * total item supply)
volume array Total worth of all transactions were made with nfts in this collection
listed integer Amount of currently listed items
items integer Total item supply of all nfts in the collection
owners integer Current amount of unique owners who hold nfts of this collection
View JSON Schema on GitHub

JSON Schema

OlapCollectionStatisticsResponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "OlapCollectionStatisticsResponse",
  "required": [
    "highestSale",
    "items",
    "listed",
    "owners",
    "volume",
    "marketCap",
    "floorPrice"
  ],
  "type": "object",
  "properties": {
    "highestSale": {
      "description": "Highest worth transaction in collection",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/OlapCurrencyAmount"
      }
    },
    "floorPrice": {
      "description": "Minimal price of nft in this collection available on rarible",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/OlapCurrencyAmount"
      }
    },
    "marketCap": {
      "description": "Market cap of collection (floor price * total item supply)",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/OlapCurrencyAmount"
      }
    },
    "volume": {
      "description": "Total worth of all transactions were made with nfts in this collection",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/OlapCurrencyAmount"
      }
    },
    "listed": {
      "type": "integer",
      "description": "Amount of currently listed items",
      "format": "int32"
    },
    "items": {
      "type": "integer",
      "description": "Total item supply of all nfts in the collection",
      "format": "int32"
    },
    "owners": {
      "type": "integer",
      "description": "Current amount of unique owners who hold nfts of this collection",
      "format": "int32"
    }
  }
}