OpenSea · Example Payload

Get_Collection_Stats

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Get_Collection_Stats 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_stats",
  "method": "GET",
  "path": "/api/v2/collections/{slug}/stats",
  "request": {
    "parameters": {
      "slug": "string"
    }
  },
  "response": {
    "200": {
      "total": {
        "volume": 0.0,
        "sales": 0,
        "num_owners": 0,
        "floor_price": 0.0,
        "floor_price_symbol": "string"
      },
      "intervals": [
        {
          "interval": "string",
          "volume": 0.0,
          "sales": 0
        }
      ]
    }
  }
}