OpenSea · Example Payload

Get_Trending_Collections

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Get_Trending_Collections 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_trending_collections",
  "method": "GET",
  "path": "/api/v2/collections/trending",
  "request": {
    "parameters": {
      "timeframe": "string",
      "chains": [
        "blast"
      ],
      "category": "string",
      "limit": 0,
      "cursor": "string"
    }
  },
  "response": {
    "200": {
      "collections": [
        {
          "collection": "string",
          "name": "string",
          "description": "string",
          "image_url": "string",
          "banner_image_url": "string"
        }
      ],
      "next": "string"
    }
  }
}