OpenSea · Schema
CollectionSearchResponse
Collection search result
NFTMarketplaceWeb3BlockchainTradingDigital Assets
Properties
| Name | Type | Description |
|---|---|---|
| collection | string | The collection slug |
| name | string | The collection name |
| image_url | string | URL of the collection image |
| is_disabled | boolean | Whether trading is disabled for this collection |
| is_nsfw | boolean | Whether this collection is marked as NSFW |
| opensea_url | string | URL to the collection on OpenSea |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://opensea.io/schemas/CollectionSearchResponse",
"title": "CollectionSearchResponse",
"type": "object",
"description": "Collection search result",
"properties": {
"collection": {
"type": "string",
"description": "The collection slug",
"example": "bored-ape-yacht-club"
},
"name": {
"type": "string",
"description": "The collection name",
"example": "Bored Ape Yacht Club"
},
"image_url": {
"type": "string",
"description": "URL of the collection image"
},
"is_disabled": {
"type": "boolean",
"description": "Whether trading is disabled for this collection"
},
"is_nsfw": {
"type": "boolean",
"description": "Whether this collection is marked as NSFW"
},
"opensea_url": {
"type": "string",
"description": "URL to the collection on OpenSea"
}
},
"required": [
"collection",
"is_disabled",
"is_nsfw",
"name",
"opensea_url"
]
}