OpenSea · Example Payload

Get_Collection

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Get_Collection 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_collection",
  "method": "GET",
  "path": "/api/v2/collections/{slug}",
  "request": {
    "parameters": {
      "slug": "string"
    }
  },
  "response": {
    "200": {
      "collection": "string",
      "name": "string",
      "description": "string",
      "image_url": "string",
      "banner_image_url": "string"
    }
  }
}