# Shopify price monitor: only price and stock changes

**Use case:** 

Watches a Shopify store between runs. The first run returns every product marked new. Every later run under the same monitor name returns, and bills for, only the products whose price, sale price or availability changed, with previous_price and price_change_percent, plus new and removed products. Put it on a daily schedule.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.allbirds.com"
    }
  ],
  "rowPer": "product",
  "includeInventory": false,
  "keywords": [],
  "onlyAvailable": false,
  "onlyOnSale": false,
  "monitorName": "price-watch",
  "onlyChanges": true,
  "includeRemoved": true,
  "maxItems": 500,
  "maxConcurrency": 5,
  "useProxy": true
}
```

## Output

```json
{
  "image": {
    "label": "Image",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "vendor": {
    "label": "Vendor",
    "format": "string"
  },
  "price_min": {
    "label": "Price",
    "format": "number"
  },
  "compare_at_price_max": {
    "label": "Compare at",
    "format": "number"
  },
  "discount_percent": {
    "label": "Discount %",
    "format": "number"
  },
  "available": {
    "label": "In stock",
    "format": "boolean"
  },
  "currency": {
    "label": "Currency",
    "format": "string"
  },
  "store": {
    "label": "Store",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Shopify Products Scraper & API: $1 per 1,000 rows](https://apify.com/dododata/shopify-products-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/dododata/shopify-products-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/dododata/shopify-products-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
