# Monitor competitor blogs & content releases using RSS track

**Use case:** 

Turn standard RSS feeds into raw marketing intelligence data. Monitor competitor content rollouts and industry news directly in structured JSON format.

## Input

```json
{
  "feedUrl": "https://news.ycombinator.com/rss",
  "pubDateStallThresholdHours": 48,
  "massContentDriftThresholdPercent": 30,
  "bulkRemovalThresholdPercent": 40,
  "maxStoredFingerprints": 200,
  "requestTimeoutMs": 15000
}
```

## Output

```json
{
  "feedUrl": {
    "label": "Feed URL",
    "format": "string"
  },
  "health.current": {
    "label": "Health Score (%)",
    "format": "number"
  },
  "health.delta": {
    "label": "Health Delta",
    "format": "number"
  },
  "metrics.currentItemCount": {
    "label": "Current Items",
    "format": "integer"
  },
  "metrics.overlapCount": {
    "label": "Unchanged Overlap",
    "format": "integer"
  },
  "summary.critical": {
    "label": "Critical Alerts",
    "format": "integer"
  },
  "summary.warning": {
    "label": "Warning",
    "format": "integer"
  },
  "timestamp": {
    "label": "Checked At",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Rss Feed Monitor](https://apify.com/datawinder/rss-feed-monitor) with a specific input configuration. Visit the [Actor detail page](https://apify.com/datawinder/rss-feed-monitor) to learn more, explore other use cases, and run it yourself.