# Monitor Competitor Shopify Prices

**Use case:** 

Track product prices and availability across competitor Shopify stores on a schedule. Export to dataset or your own webhook.

## Input

```json
{
  "storeUrls": [
    {
      "url": "https://www.fashionnova.com"
    }
  ],
  "maxProductsPerStore": 200,
  "includeVariants": false,
  "webhookUrl": "https://your-api.com/webhook"
}
```

## Output

```json
{
  "storeUrl": {
    "label": "Store",
    "format": "link"
  },
  "productUrl": {
    "label": "Product Link",
    "format": "link"
  },
  "productTitle": {
    "label": "Product",
    "format": "text"
  },
  "vendor": {
    "label": "Vendor",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "compareAtPrice": {
    "label": "Original Price",
    "format": "number"
  },
  "sku": {
    "label": "SKU",
    "format": "text"
  },
  "variantTitle": {
    "label": "Variant",
    "format": "text"
  },
  "inventoryQuantity": {
    "label": "Stock",
    "format": "number"
  }
}
```

## About this Actor

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