OpenSea · Example Payload

Get_Drops

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Get_Drops 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_drops",
  "method": "GET",
  "path": "/api/v2/drops",
  "request": {
    "parameters": {
      "type": "string",
      "limit": 0,
      "chains": [
        "blast"
      ],
      "cursor": "string"
    }
  },
  "response": {
    "200": {
      "drops": [
        {
          "collection_slug": "cool-cats",
          "collection_name": "Cool Cats",
          "chain": "ethereum",
          "contract_address": "string",
          "drop_type": "seadrop_v1_erc721"
        }
      ],
      "next": "string"
    }
  }
}