# RSS content extractor for multi-source editorial research

**Use case:** 

Collect articles from several RSS and Atom feeds in one run to build a bounded content research dataset for newsletters or reports.

## Input

```json
{
  "feeds": [
    "https://www.theverge.com/rss/index.xml",
    "https://techcrunch.com/feed/",
    "https://www.reddit.com/r/programming/.rss"
  ],
  "maxItemsPerFeed": 30
}
```

## 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.