# Sports News Aggregator for ESPN and BBC

**Use case:** 

Collect up to 500 articles from ESPN, BBC, and other sports feeds. Access full metadata for comprehensive sports news analysis.

## Input

```json
{
  "feedUrls": [
    "https://www.espn.com/espn/rss/news",
    "https://feeds.bbci.co.uk/sport/rss.xml",
    "https://www.skysports.com/rss/12040",
    "https://api.foxsports.com/v1/rss?partnerKey=zBaFxRyJ&tag=nfl"
  ],
  "discoverFromWebsites": false,
  "maxItemsPerFeed": 50,
  "maxResults": 500,
  "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.