# RSS Feed Reader for news monitoring and article extraction

**Use case:** 

Monitor BBC, Hacker News, and Reddit RSS feeds and extract structured article titles, URLs, dates, and source metadata.

## Input

```json
{
  "feeds": [
    "https://feeds.bbci.co.uk/news/rss.xml",
    "https://hnrss.org/frontpage",
    "https://www.reddit.com/r/technology/.rss"
  ],
  "maxItemsPerFeed": 20
}
```

## Output

```json
{
  "feedTitle": {
    "label": "Feed"
  },
  "title": {
    "label": "Title"
  },
  "link": {
    "label": "Link"
  },
  "author": {
    "label": "Author"
  },
  "publishedAt": {
    "label": "Published"
  },
  "categories": {
    "label": "Categories"
  },
  "feedType": {
    "label": "Type"
  }
}
```

## About this Actor

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