OpenSea · Schema

CollectionOfferAggregateResponse

An aggregated offer bucket

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Properties

Name Type Description
offer_price object Offer price level
total_value object Total value of offers at this level
total_offers integer Total number of offers at this level
bidders array Bidders at this price level
View JSON Schema on GitHub

JSON Schema

CollectionOfferAggregateResponse.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://opensea.io/schemas/CollectionOfferAggregateResponse",
  "title": "CollectionOfferAggregateResponse",
  "type": "object",
  "description": "An aggregated offer bucket",
  "properties": {
    "offer_price": {
      "$ref": "#/components/schemas/OfferAggregatePriceResponse",
      "description": "Offer price level"
    },
    "total_value": {
      "$ref": "#/components/schemas/OfferAggregatePriceResponse",
      "description": "Total value of offers at this level"
    },
    "total_offers": {
      "type": "integer",
      "format": "int32",
      "description": "Total number of offers at this level"
    },
    "bidders": {
      "type": "array",
      "description": "Bidders at this price level",
      "items": {
        "$ref": "#/components/schemas/BidderResponse"
      }
    }
  },
  "required": [
    "bidders",
    "offer_price",
    "total_offers",
    "total_value"
  ]
}