# Tech News Aggregator for RSS Feeds

**Use case:** 

Aggregate and chronologically sort articles from TechCrunch, The Verge, and Ars Technica. Get a unified stream of news with authors, dates, and categories.

## Input

```json
{
  "rss_feeds": [
    {
      "url": "https://techcrunch.com/feed/"
    },
    {
      "url": "https://www.theverge.com/rss/index.xml"
    },
    {
      "url": "https://feeds.arstechnica.com/arstechnica/index"
    }
  ],
  "raw_data": true
}
```

## Output

```json
{
  "source": {
    "label": "Feed URL",
    "format": "string"
  },
  "feeds": {
    "label": "Articles",
    "format": "array"
  },
  "error": {
    "label": "Error",
    "format": "object"
  }
}
```

## About this Actor

This example demonstrates how to use [RSS News Aggregator](https://apify.com/louvre/rss-news-aggregator) with a specific input configuration. Visit the [Actor detail page](https://apify.com/louvre/rss-news-aggregator) to learn more, explore other use cases, and run it yourself.