OpenSea · Example Payload

Get_Collections_Batch

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Get_Collections_Batch 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_collections_batch",
  "method": "POST",
  "path": "/api/v2/collections/batch",
  "request": {
    "requestBody": {
      "slugs": [
        "string"
      ]
    }
  },
  "response": {
    "200": {
      "collections": [
        {
          "collection": "string",
          "name": "string",
          "description": "string",
          "image_url": "string",
          "banner_image_url": "string"
        }
      ]
    }
  }
}