# Build a Shopify collection product list

**Use case:** 

Collect all products from a specific Shopify collection and compare titles, prices, variants, and images for that category.

## Input

```json
{
  "storeUrls": [
    "gymshark.com",
    "allbirds.com"
  ],
  "collectionUrls": [
    "https://www.allbirds.com/collections/mens"
  ],
  "productUrls": [
    "https://your-store.com/products/product-handle"
  ],
  "maxProducts": 25,
  "includeVariants": true,
  "includeImages": false,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "string"
  },
  "vendor": {
    "label": "Vendor",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "priceMax": {
    "label": "Price max",
    "format": "number"
  },
  "compareAtPrice": {
    "label": "Compare at",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "string"
  },
  "available": {
    "label": "In stock",
    "format": "boolean"
  },
  "variantsCount": {
    "label": "Variants",
    "format": "integer"
  },
  "productType": {
    "label": "Type",
    "format": "string"
  },
  "storeDomain": {
    "label": "Store",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "format": "string"
  },
  "featuredImage": {
    "label": "Image",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Shopify Products Scraper](https://apify.com/khadinakbar/shopify-products-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/khadinakbar/shopify-products-scraper) to learn more, explore other use cases, and run it yourself.