OpenSea · Schema

AssetEventsResponse

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Properties

Name Type Description
asset_events array
next string
View JSON Schema on GitHub

JSON Schema

AssetEventsResponse.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://opensea.io/schemas/AssetEventsResponse",
  "title": "AssetEventsResponse",
  "type": "object",
  "properties": {
    "asset_events": {
      "type": "array",
      "items": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/OrderEvent"
          },
          {
            "$ref": "#/components/schemas/SaleEvent"
          },
          {
            "$ref": "#/components/schemas/TransferEvent"
          }
        ]
      }
    },
    "next": {
      "type": "string"
    }
  },
  "required": [
    "asset_events"
  ]
}