# Aggregate Business and Finance News Feeds

**Use case:** 

Collect up to 250 articles from top tech and finance news sources. Retrieve full metadata for effective news monitoring and content aggregation.

## Input

```json
{
  "feedUrls": [
    "https://feeds.bloomberg.com/technology/news.rss",
    "https://www.forbes.com/tech/feed2/",
    "https://fortune.com/feed/",
    "http://feeds.foxbusiness.com/foxbusiness/technology",
    "https://www.marketwatch.com/rss/marketpulse"
  ],
  "discoverFromWebsites": false,
  "maxItemsPerFeed": 50,
  "maxResults": 1000,
  "maxConcurrency": 10,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "feedTitle": {
    "label": "Feed Title",
    "format": "string"
  },
  "title": {
    "label": "Item Title",
    "format": "string"
  },
  "link": {
    "label": "Link",
    "format": "string"
  },
  "pubDate": {
    "label": "Published",
    "format": "string"
  },
  "author": {
    "label": "Author",
    "format": "string"
  },
  "categories": {
    "label": "Categories",
    "format": "string"
  },
  "contentSnippet": {
    "label": "Snippet",
    "format": "string"
  },
  "feedUrl": {
    "label": "Feed URL",
    "format": "string"
  }
}
```

## About this Actor

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