OpenSea · Schema

NftListResponse

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Properties

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

JSON Schema

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