# Shopify Product Scraper

**Use case:** 

Scrape Shopify products from any store with titles, prices, variants, availability, images, handles, and product URLs.

## Input

```json
{
  "storeUrls": [
    "https://www.deathwishcoffee.com"
  ],
  "scrapeProducts": true,
  "scrapeCollections": false,
  "scrapeReviews": false,
  "maxProducts": 50,
  "maxReviewsPerProduct": 10
}
```

## Output

```json
{
  "type": {
    "label": "Type",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "productTitle": {
    "label": "Product",
    "format": "text"
  },
  "vendor": {
    "label": "Vendor",
    "format": "text"
  },
  "author": {
    "label": "Author",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "price": {
    "label": "Price",
    "format": "text"
  },
  "available": {
    "label": "In Stock",
    "format": "boolean"
  },
  "reviewPlatform": {
    "label": "Platform",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "productUrl": {
    "label": "Product URL",
    "format": "link"
  }
}
```

## About this Actor

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