# Track New Product Launches Across Rival Stores

**Use case:** 

Follow two competitor Shopify stores and get every new product they publish, with title, variants, price and URL, so you see launch cadence week by week.

## Input

```json
{
  "storeUrls": [
    "https://www.velasca.com",
    "https://www.tentree.com"
  ],
  "maxProductsPerStore": 200,
  "monitorId": "launch-cadence"
}
```

## Output

```json
{
  "store": {
    "label": "Store",
    "format": "string"
  },
  "title": {
    "label": "Product title",
    "format": "string"
  },
  "newPrice": {
    "label": "New price",
    "format": "string"
  },
  "changePercent": {
    "label": "Change percent",
    "format": "number"
  },
  "type": {
    "label": "Change type",
    "format": "string"
  },
  "productUrl": {
    "label": "Product URL",
    "format": "string"
  },
  "detectedAt": {
    "label": "Detected at",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Shopify Competitor Price & Restock Monitor](https://apify.com/davidbenittah/shopify-competitor-price-monitor) with a specific input configuration. Visit the [Actor detail page](https://apify.com/davidbenittah/shopify-competitor-price-monitor) to learn more, explore other use cases, and run it yourself.