OpenSea · Schema

ProfileCollectionResponse

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Properties

Name Type Description
collection string
name string
description string
image_url string
banner_image_url string
owner string
safelist_status string
category string
is_disabled boolean
is_nsfw boolean
trait_offers_enabled boolean
collection_offers_enabled boolean
opensea_url string
project_url string
wiki_url string
discord_url string
telegram_url string
twitter_username string
instagram_username string
contracts array
item_count integer
total_quantity integer
usd_value number
View JSON Schema on GitHub

JSON Schema

ProfileCollectionResponse.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://opensea.io/schemas/ProfileCollectionResponse",
  "title": "ProfileCollectionResponse",
  "type": "object",
  "properties": {
    "collection": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "image_url": {
      "type": "string"
    },
    "banner_image_url": {
      "type": "string"
    },
    "owner": {
      "type": "string"
    },
    "safelist_status": {
      "type": "string"
    },
    "category": {
      "type": "string"
    },
    "is_disabled": {
      "type": "boolean"
    },
    "is_nsfw": {
      "type": "boolean"
    },
    "trait_offers_enabled": {
      "type": "boolean"
    },
    "collection_offers_enabled": {
      "type": "boolean"
    },
    "opensea_url": {
      "type": "string"
    },
    "project_url": {
      "type": "string"
    },
    "wiki_url": {
      "type": "string"
    },
    "discord_url": {
      "type": "string"
    },
    "telegram_url": {
      "type": "string"
    },
    "twitter_username": {
      "type": "string"
    },
    "instagram_username": {
      "type": "string"
    },
    "contracts": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Contract"
      }
    },
    "item_count": {
      "type": "integer",
      "format": "int32"
    },
    "total_quantity": {
      "type": "integer",
      "format": "int32"
    },
    "usd_value": {
      "type": "number",
      "format": "double"
    }
  },
  "required": [
    "collection",
    "collection_offers_enabled",
    "contracts",
    "is_disabled",
    "is_nsfw",
    "item_count",
    "name",
    "opensea_url",
    "safelist_status",
    "total_quantity",
    "trait_offers_enabled"
  ]
}