# Watch a Shopify Store for New Products

**Use case:** 

Catch every product a Shopify store adds or removes between runs — for trend-spotting and assortment tracking.

## Input

```json
{
  "domains": [
    "gymshark.com"
  ],
  "minPriceChangePercent": 0,
  "maxProductsPerStore": 2000,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "domain": {
    "label": "Domain",
    "format": "string"
  },
  "change_type": {
    "label": "Change",
    "format": "string"
  },
  "product_title": {
    "label": "Product",
    "format": "string"
  },
  "variant_sku": {
    "label": "SKU",
    "format": "string"
  },
  "old_price": {
    "label": "Old price",
    "format": "number"
  },
  "new_price": {
    "label": "New price",
    "format": "number"
  },
  "price_change_pct": {
    "label": "Change %",
    "format": "number"
  },
  "old_available": {
    "label": "Was in stock",
    "format": "boolean"
  },
  "new_available": {
    "label": "Now in stock",
    "format": "boolean"
  },
  "source_url": {
    "label": "Store URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Shopify Price & Stock Change Tracker](https://apify.com/fried_calamaries/shopify-change-tracker) with a specific input configuration. Visit the [Actor detail page](https://apify.com/fried_calamaries/shopify-change-tracker) to learn more, explore other use cases, and run it yourself.