OpenSea · Example Payload

Get_Collection_Floor_Prices

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Get_Collection_Floor_Prices 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_floor_prices",
  "method": "GET",
  "path": "/api/v2/collections/{slug}/floor_prices",
  "request": {
    "parameters": {
      "slug": "string",
      "timeframe": "string",
      "resolution": 0
    }
  },
  "response": {
    "200": {
      "floor_prices": [
        {
          "time": "2024-01-01T00:00:00Z",
          "usd_price": "string",
          "token_unit": 0.0,
          "symbol": "string",
          "chain": "string"
        }
      ]
    }
  }
}