# Scrape a Shopify collection's products & prices

**Use case:** 

Scrape every product in a Shopify collection: title, vendor, type, price, compare-at price, discount percent, currency, in-stock flag and variant count.

## Input

```json
{
  "mode": "collection",
  "storeUrls": [
    "https://www.allbirds.com"
  ],
  "collectionUrls": [
    "https://www.allbirds.com/collections/mens-shoes"
  ],
  "maxProductsPerStore": 0,
  "onlyAvailable": false,
  "minPrice": 0,
  "maxPrice": 0,
  "includeVariants": true,
  "includeImages": true,
  "includeStoreMeta": true,
  "enrichStoreLeads": true,
  "monitorMode": false,
  "monitorStoreName": "shopify-store-monitor",
  "maxConcurrency": 8,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "mode": {
    "label": "Mode"
  },
  "title": {
    "label": "Product"
  },
  "vendor": {
    "label": "Vendor"
  },
  "productType": {
    "label": "Type"
  },
  "price": {
    "label": "Price"
  },
  "compareAtPriceMax": {
    "label": "Compare-at"
  },
  "onSale": {
    "label": "On sale"
  },
  "discountPercent": {
    "label": "Disc %"
  },
  "currency": {
    "label": "Cur"
  },
  "inStock": {
    "label": "In stock"
  },
  "variantCount": {
    "label": "# Variants"
  },
  "storeDomain": {
    "label": "Store"
  },
  "url": {
    "label": "URL"
  }
}
```

## About this Actor

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