OpenSea · Example Payload

Get_Drop_By_Slug

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Get_Drop_By_Slug is an example object payload from OpenSea, with 5 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathrequestresponse

Example Payload

Raw ↑
{
  "operationId": "get_drop_by_slug",
  "method": "GET",
  "path": "/api/v2/drops/{slug}",
  "request": {
    "parameters": {
      "slug": "string"
    }
  },
  "response": {
    "200": {
      "collection_slug": "cool-cats",
      "collection_name": "Cool Cats",
      "chain": "ethereum",
      "contract_address": "string",
      "drop_type": "seadrop_v1_erc721"
    }
  }
}