OpenSea · Schema
DropDetailedResponse
Detailed drop information including stages and supply
NFTMarketplaceWeb3BlockchainTradingDigital Assets
Properties
| Name | Type | Description |
|---|---|---|
| collection_slug | string | Collection slug |
| collection_name | string | Collection name |
| chain | string | Blockchain the drop is on |
| contract_address | string | Contract address |
| drop_type | string | Drop type |
| is_minting | boolean | Whether the drop is currently minting |
| image_url | string | Collection image URL |
| opensea_url | string | OpenSea URL for the drop |
| active_stage | object | The currently-minting stage, if the drop is live. Null if not minting. |
| next_stage | object | The earliest upcoming stage by start_time when the drop is not currently minting (e.g. before it starts or between stages). Null if the drop is live or has no future stages. |
| stages | array | Drop stages (public sale, presale, etc.) |
| total_supply | string | Total minted supply |
| max_supply | string | Maximum supply |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://opensea.io/schemas/DropDetailedResponse",
"title": "DropDetailedResponse",
"type": "object",
"description": "Detailed drop information including stages and supply",
"properties": {
"collection_slug": {
"type": "string",
"description": "Collection slug",
"example": "cool-cats"
},
"collection_name": {
"type": "string",
"description": "Collection name",
"example": "Cool Cats"
},
"chain": {
"type": "string",
"description": "Blockchain the drop is on",
"example": "ethereum"
},
"contract_address": {
"type": "string",
"description": "Contract address"
},
"drop_type": {
"type": "string",
"description": "Drop type",
"example": "seadrop_v1_erc721"
},
"is_minting": {
"type": "boolean",
"description": "Whether the drop is currently minting"
},
"image_url": {
"type": "string",
"description": "Collection image URL"
},
"opensea_url": {
"type": "string",
"description": "OpenSea URL for the drop"
},
"active_stage": {
"$ref": "#/components/schemas/DropStageResponse",
"description": "The currently-minting stage, if the drop is live. Null if not minting."
},
"next_stage": {
"$ref": "#/components/schemas/DropStageResponse",
"description": "The earliest upcoming stage by start_time when the drop is not currently minting (e.g. before it starts or between stages). Null if the drop is live or has no future stages."
},
"stages": {
"type": "array",
"description": "Drop stages (public sale, presale, etc.)",
"items": {
"$ref": "#/components/schemas/DropStageResponse"
}
},
"total_supply": {
"type": "string",
"description": "Total minted supply"
},
"max_supply": {
"type": "string",
"description": "Maximum supply"
}
},
"required": [
"chain",
"collection_slug",
"contract_address",
"drop_type",
"is_minting",
"opensea_url",
"stages"
]
}