# RSS Feed & Website Change Monitor with Webhook Alerts

**Use case:** 

Monitor RSS feeds and web pages for changes. Get instant webhook notifications to Slack, Discord, n8n, Make, or Zapier. Pay only per change detected.

## Input

```json
{
  "sources": [
    {
      "url": "https://news.ycombinator.com/rss",
      "type": "rss"
    },
    {
      "url": "https://hnrss.org/newest?q=apify",
      "type": "rss",
      "keywordFilters": [
        "api",
        "automation"
      ]
    }
  ],
  "webhookUrl": "https://hooks.slack.com/services/T000/B000/XXXX",
  "webhookFormat": "json",
  "deduplicationWindow": 30
}
```

## Output

```json
{
  "eventType": {
    "label": "Event",
    "format": "text"
  },
  "sourceUrl": {
    "label": "Source",
    "format": "link"
  },
  "sourceType": {
    "label": "Type",
    "format": "text"
  },
  "detectedAt": {
    "label": "Detected at",
    "format": "date"
  },
  "contentPreview": {
    "label": "Preview",
    "format": "text"
  },
  "webhookDelivered": {
    "label": "Webhook delivered",
    "format": "boolean"
  }
}
```

## About this Actor

This example demonstrates how to use [RSS & Webpage Change Monitor with Webhook Push](https://apify.com/glueworks/rss-change-monitor) with a specific input configuration. Visit the [Actor detail page](https://apify.com/glueworks/rss-change-monitor) to learn more, explore other use cases, and run it yourself.