OpenSea · Example Payload

List_Collections

NFTMarketplaceWeb3BlockchainTradingDigital Assets

List_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": "list_collections",
  "method": "GET",
  "path": "/api/v2/collections",
  "request": {
    "parameters": {
      "limit": 20,
      "next.value": "string",
      "chain": "string",
      "creator_username": "string",
      "include_hidden": true
    }
  },
  "response": {
    "200": {
      "collections": [
        {
          "collection": "string",
          "name": "string",
          "description": "string",
          "image_url": "string",
          "banner_image_url": "string"
        }
      ],
      "next": "string"
    }
  }
}