Rarible · Schema
OlapGeneralStatsResponse
NFTNon-Fungible TokensMarketplaceAggregatorMultichainEthereumPolygonArbitrumFlowWeb3BlockchainCollectionsOrder BookTradingIndexer
Properties
| Name | Type | Description |
|---|---|---|
| highestSale | number | Highest worth transaction in collection |
| floorPrice | number | Minimal price of nft in this collection available on rarible |
| marketCap | number | Market cap of collection (floor price * total item supply) |
| 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 |
| volume | number | Total worth of all transactions were made with nfts in this collection |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "OlapGeneralStatsResponse",
"required": [
"highestSale",
"items",
"listed",
"owners",
"volume"
],
"type": "object",
"properties": {
"highestSale": {
"type": "number",
"description": "Highest worth transaction in collection",
"format": "bigdecimal"
},
"floorPrice": {
"type": "number",
"description": "Minimal price of nft in this collection available on rarible",
"format": "bigdecimal"
},
"marketCap": {
"type": "number",
"description": "Market cap of collection (floor price * total item supply)",
"format": "bigdecimal"
},
"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"
},
"volume": {
"type": "number",
"description": "Total worth of all transactions were made with nfts in this collection",
"format": "bigdecimal"
}
}
}