# Scrape Any Shopify Store's Products & Prices

**Use case:** 

Monitor any Shopify store with no API key: products, variants, prices, availability, and collections. Fast, clean JSON output via API.

## Input

```json
{
  "storeUrls": [
    "https://www.deathwishcoffee.com"
  ],
  "scrapeProducts": true,
  "scrapeCollections": true,
  "scrapeReviews": false,
  "maxProducts": 100,
  "maxReviewsPerProduct": 20,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "type": {
    "label": "Type",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "vendor": {
    "label": "Vendor",
    "format": "text"
  },
  "productType": {
    "label": "Type/Category",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "available": {
    "label": "Available",
    "format": "boolean"
  },
  "variantsCount": {
    "label": "Variants",
    "format": "number"
  },
  "reviewsCount": {
    "label": "Reviews",
    "format": "number"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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