OpenSea · Schema
NftSearchResponse
NFT search result
NFTMarketplaceWeb3BlockchainTradingDigital Assets
Properties
| Name | Type | Description |
|---|---|---|
| identifier | string | Token ID of the NFT |
| collection | string | Collection slug the NFT belongs to |
| contract | string | Contract address of the NFT |
| name | string | Name of the NFT |
| image_url | string | URL of the NFT image |
| opensea_url | string | URL to the NFT on OpenSea |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://opensea.io/schemas/NftSearchResponse",
"title": "NftSearchResponse",
"type": "object",
"description": "NFT search result",
"properties": {
"identifier": {
"type": "string",
"description": "Token ID of the NFT",
"example": 1234
},
"collection": {
"type": "string",
"description": "Collection slug the NFT belongs to",
"example": "bored-ape-yacht-club"
},
"contract": {
"type": "string",
"description": "Contract address of the NFT"
},
"name": {
"type": "string",
"description": "Name of the NFT"
},
"image_url": {
"type": "string",
"description": "URL of the NFT image"
},
"opensea_url": {
"type": "string",
"description": "URL to the NFT on OpenSea"
}
},
"required": [
"collection",
"contract",
"identifier",
"opensea_url"
]
}