OpenSea · Schema

CollectionOfferAggregatesPaginatedResponse

Paginated list of collection offer aggregates

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Properties

Name Type Description
offer_aggregates array List of offer aggregates
next string Cursor for the next page of results
View JSON Schema on GitHub

JSON Schema

CollectionOfferAggregatesPaginatedResponse.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://opensea.io/schemas/CollectionOfferAggregatesPaginatedResponse",
  "title": "CollectionOfferAggregatesPaginatedResponse",
  "type": "object",
  "description": "Paginated list of collection offer aggregates",
  "properties": {
    "offer_aggregates": {
      "type": "array",
      "description": "List of offer aggregates",
      "items": {
        "$ref": "#/components/schemas/CollectionOfferAggregateResponse"
      }
    },
    "next": {
      "type": "string",
      "description": "Cursor for the next page of results"
    }
  },
  "required": [
    "offer_aggregates"
  ]
}