# World News RSS Feeds to JSON (BBC, NYT, Al Jazeera)

**Use case:** 

The latest world-news articles from the BBC, New York Times and Al Jazeera RSS feeds merged into one newest-first list: title, link, summary, publish time, image (when the feed has one) and feed name. For developers, news apps and analysts who need clean JSON instead of XML. Replace the URLs with any RSS, Atom or JSON feed (or a site URL) and schedule it hourly.

## Input

```json
{
  "urls": [
    "https://feeds.bbci.co.uk/news/world/rss.xml",
    "https://rss.nytimes.com/services/xml/rss/nyt/World.xml",
    "https://www.aljazeera.com/xml/rss/all.xml"
  ],
  "discoverFeeds": true,
  "keywordMatch": "any",
  "matchIn": "titleSummary",
  "sinceHours": 0,
  "onlyNew": false,
  "limitPerFeed": 20,
  "maxItems": 1000,
  "sortBy": "publishedDesc",
  "dedupeBy": "url",
  "fetchFullContent": false,
  "maxFullContentChars": 20000,
  "fullContentConcurrency": 3,
  "summaryMaxChars": 1000,
  "contentMaxChars": 5000,
  "includeContentHtml": false,
  "includeErrors": false
}
```

## Output

```json
{
  "publishedAt": {
    "label": "Published",
    "format": "date"
  },
  "feedTitle": {
    "label": "Feed",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "author": {
    "label": "Author",
    "format": "text"
  },
  "summary": {
    "label": "Summary",
    "format": "text"
  },
  "categories": {
    "label": "Categories",
    "format": "array"
  },
  "keywordsMatched": {
    "label": "Matched",
    "format": "array"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [RSS & Atom Feed Scraper — Any Feed to Clean JSON (Bulk)](https://apify.com/yadroo/rss-to-json.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/yadroo/rss-to-json.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/yadroo/rss-to-json.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
