# Monitor SaaS Competitor Price Changes

**Use case:** 

Track competitor pricing over time and get a webhook alert the moment a plan, price, or feature changes. Set it monthly and stay informed.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.hubspot.com/pricing"
    },
    {
      "url": "https://www.salesforce.com/editions-pricing/sales-cloud/"
    }
  ],
  "useAI": true,
  "discoverPricingPage": true,
  "country": "US",
  "extractFeatureDetails": true,
  "useBrowser": "auto",
  "includeScreenshot": false,
  "detectChanges": true,
  "previousDatasetId": "",
  "datasetName": "competitor-pricing-monitor",
  "webhookUrl": "https://example.com/webhooks/pricing-changes",
  "maxConcurrency": 5,
  "maxRequestsPerCrawl": 30,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "companyName": {
    "label": "Company",
    "format": "text"
  },
  "hasChanges": {
    "label": "Has Changes",
    "format": "boolean"
  },
  "changes": {
    "label": "Changes",
    "format": "array"
  },
  "previousScrapedAt": {
    "label": "Previous Scrape",
    "format": "date"
  },
  "scrapedAt": {
    "label": "Current Scrape",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [SaaS Pricing & Feature Tracker](https://apify.com/constructive_calm/saas-pricing-tracker) with a specific input configuration. Visit the [Actor detail page](https://apify.com/constructive_calm/saas-pricing-tracker) to learn more, explore other use cases, and run it yourself.