OpenSea · Example Payload

List_Events_By_Collection

NFTMarketplaceWeb3BlockchainTradingDigital Assets

List_Events_By_Collection is an example object payload from OpenSea, with 5 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathrequestresponse

Example Payload

Raw ↑
{
  "operationId": "list_events_by_collection",
  "method": "GET",
  "path": "/api/v2/events/collection/{slug}",
  "request": {
    "parameters": {
      "slug": "string",
      "after": 0,
      "before": 0,
      "event_type": [
        "sale"
      ],
      "traits": "string"
    }
  },
  "response": {
    "200": {
      "asset_events": [
        {}
      ],
      "next": "string"
    }
  }
}