OpenSea · Example Payload

Get_Best_Listings_Collection

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Get_Best_Listings_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_best_listings_collection",
  "method": "GET",
  "path": "/api/v2/listings/collection/{slug}/best",
  "request": {
    "parameters": {
      "slug": "string",
      "include_private_listings": true,
      "traits": "string",
      "limit": 20,
      "next.value": "string"
    }
  },
  "response": {
    "200": {
      "listings": [
        {
          "order_hash": null,
          "chain": null,
          "protocol_data": null,
          "protocol_address": null,
          "asset": null
        }
      ],
      "next": "string"
    }
  }
}