# BBC News RSS Feed — Latest Headlines

**Use case:** 

Fetch and parse the BBC News RSS feed into structured JSON. Headlines, descriptions, links, and publication dates.

## Input

```json
{
  "feed_url": "https://feeds.bbci.co.uk/news/rss.xml",
  "max_results": 25
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "link": {
    "label": "Link",
    "format": "link"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "author": {
    "label": "Author",
    "format": "text"
  },
  "pub_date": {
    "label": "Published",
    "format": "date"
  },
  "guid": {
    "label": "GUID",
    "format": "text"
  },
  "categories": {
    "label": "Categories",
    "format": "array"
  }
}
```

## About this Actor

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