# BBC News article extractor

**Use case:** 

Extract BBC News articles from RSS with titles, dates, authors, images, full article text, and clean metadata.

## Input

```json
{
  "startUrls": [
    "https://feeds.bbci.co.uk/news/rss.xml"
  ],
  "maxArticles": 25,
  "extractFullContent": true,
  "includeImages": true,
  "requestTimeout": 30,
  "maxRetries": 2
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "author": {
    "label": "Author",
    "format": "text"
  },
  "publishedDate": {
    "label": "Published",
    "format": "text"
  },
  "url": {
    "label": "Article URL",
    "format": "link"
  },
  "sourceDomain": {
    "label": "Source",
    "format": "text"
  },
  "wordCount": {
    "label": "Word Count",
    "format": "number"
  },
  "charCount": {
    "label": "Characters",
    "format": "number"
  },
  "tokenEstimate": {
    "label": "Est. tokens",
    "format": "number"
  },
  "imageUrl": {
    "label": "Image",
    "format": "image"
  }
}
```

## About this Actor

This example demonstrates how to use [News & Article Extractor](https://apify.com/automation-lab/news-article-extractor) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/news-article-extractor) to learn more, explore other use cases, and run it yourself.