OpenSea · Schema

TokenSwapActivityPaginatedResponse

Paginated list of token swap activity events

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Properties

Name Type Description
swap_events array List of swap activity events
next string Cursor for the next page of results
View JSON Schema on GitHub

JSON Schema

TokenSwapActivityPaginatedResponse.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://opensea.io/schemas/TokenSwapActivityPaginatedResponse",
  "title": "TokenSwapActivityPaginatedResponse",
  "type": "object",
  "description": "Paginated list of token swap activity events",
  "properties": {
    "swap_events": {
      "type": "array",
      "description": "List of swap activity events",
      "items": {
        "$ref": "#/components/schemas/TokenSwapActivityResponse"
      }
    },
    "next": {
      "type": "string",
      "description": "Cursor for the next page of results"
    }
  },
  "required": [
    "swap_events"
  ]
}