# Monitor a competitor pricing page for changes

**Use case:** 

Monitor a competitor's pricing page for changes. Run it on a schedule and get only what changed, with the added and removed text, and no false alarms from counters or dates.

## Input

```json
{
  "targets": [
    "https://apify.com/pricing"
  ],
  "watchMode": "content",
  "firstRunOutput": "none",
  "extract": [
    {
      "name": "price",
      "selector": "meta[itemprop=\"price\"]::attr(content)",
      "type": "price"
    },
    {
      "name": "availability",
      "selector": ".stock",
      "type": "boolean"
    }
  ],
  "requireConsecutiveChanges": 1,
  "minHoursBetweenChecks": 0,
  "timezone": "UTC",
  "textOnly": true,
  "ignoreVolatileText": true,
  "ignoreNumbers": false,
  "minChangePercent": 0,
  "maxItemsPerTarget": 50000,
  "maxDiffChars": 5000,
  "shrinkSafetyPercent": 30,
  "respectRobotsTxt": true,
  "concurrency": 5
}
```

## Output

```json
{
  "url": {
    "label": "Target",
    "format": "string"
  },
  "changeKind": {
    "label": "Changekind",
    "format": "string"
  },
  "status": {
    "label": "Status",
    "format": "string"
  },
  "changeType": {
    "label": "Change",
    "format": "string"
  },
  "addedText": {
    "label": "Added text",
    "format": "string"
  },
  "removedText": {
    "label": "Removed text",
    "format": "string"
  },
  "addedUrls": {
    "label": "Added URLs",
    "format": "array"
  },
  "removedUrls": {
    "label": "Removed URLs",
    "format": "array"
  },
  "newItems": {
    "label": "New feed items",
    "format": "array"
  },
  "note": {
    "label": "Note",
    "format": "string"
  },
  "error": {
    "label": "Error",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Website Change Watcher: Page, Sitemap & Feed Monitor](https://apify.com/pavel.tashev/website-change-watcher.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/pavel.tashev/website-change-watcher.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/pavel.tashev/website-change-watcher.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`).
