# Monitor Hacker News RSS Feed Updates

**Use case:** 

Track Hacker News' newest RSS stories and get only new or updated items for alerts.

## Input

```json
{
  "feedUrls": [
    "https://hnrss.org/newest"
  ],
  "monitorId": "default",
  "resetState": false,
  "maxFeedBytes": 1000000,
  "maxRedirects": 3,
  "maxStateItems": 5000
}
```

## Output

```json
{
  "monitorId": {
    "label": "Monitor",
    "format": "text"
  },
  "feedTitle": {
    "label": "Feed",
    "format": "text"
  },
  "changeType": {
    "label": "Change",
    "format": "text"
  },
  "itemTitle": {
    "label": "Item title",
    "format": "text"
  },
  "itemUrl": {
    "label": "Item URL",
    "format": "link"
  },
  "publishedAt": {
    "label": "Published",
    "format": "date"
  },
  "updatedAt": {
    "label": "Updated",
    "format": "date"
  },
  "summary": {
    "label": "Summary",
    "format": "text"
  },
  "feedUrl": {
    "label": "Feed URL",
    "format": "link"
  },
  "itemId": {
    "label": "Item ID",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [RSS & Atom Delta API](https://apify.com/hisoka8/rss-atom-delta-api) with a specific input configuration. Visit the [Actor detail page](https://apify.com/hisoka8/rss-atom-delta-api) to learn more, explore other use cases, and run it yourself.