OpenSea · Schema

TokenPaginatedResponse

Paginated list of tokens

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Properties

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

JSON Schema

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