VOOZH about

URL: https://apify.com/louvre/rss-news-aggregator

โ‡ฑ RSS News Aggregator ยท Apify


Pricing

$10.00 / 1,000 requests

Go to Apify Store

Aggregate dozens of RSS and Atom feeds into one chronologically sorted JSON stream in seconds. Returns title, link, publish date, author, categories, and media per article, grouped by source domain. Use for news monitoring, content curation, and LLM/AI feed pipelines.

Pricing

$10.00 / 1,000 requests

Rating

0.0

(0)

Developer

๐Ÿ‘ Louvre LLC

Louvre LLC

Maintained by Community

Actor stats

1

Bookmarked

33

Total users

10

Monthly active users

a month ago

Last modified

Share

๐Ÿ“Œ Introduction

๐ŸŽฏ What is this actor?

The RSS News Aggregator is a powerful Apify actor designed to fetch, combine, and process multiple RSS and Atom feeds. It takes a list of feed URLs, sorts all articles by publication date, and groups them by their source, making it easy to create customized news streams.

๐Ÿš€ Key Features

  • Aggregate Multiple Feeds: Combine articles from various RSS/Atom sources.
  • Group by Source: Automatically groups articles by their root domain (e.g., marketwatch.com).
  • Global Sorting: Sorts all articles chronologically across all feeds.
  • Flexible Output: Choose between a clean, normalized format or the raw, unprocessed data from the feeds.
  • Deploy as API: Runs on the Apify platform and can be used as a serverless API.

๐Ÿ” Use Cases

  • News Dashboards: Build a personal or professional dashboard that pulls in news from all your favorite sources.
  • Content Curation: Curate content for newsletters, websites, or social media by monitoring specific topics across different blogs and news sites.
  • Market Research: Keep track of industry news, competitor announcements, and market trends in one place.
  • Data Analysis: Use the raw data output to perform text analysis, sentiment analysis, or other research on a large corpus of articles.

๐Ÿ“ฅ Inputs

The actor requires the following inputs.

FieldTypeRequiredDescription
rss_feedsArrayYesAn array of objects, where each object contains a url key pointing to a valid RSS or Atom feed URL.
raw_dataBooleanNoIf set to true, the actor will return the raw, unprocessed JSON for each feed, grouped by source domain, without applying normalization or pagination. Defaults to false.

โœ… Example Input

{
"rss_feeds":[
{"url":"https://www.federalreserve.gov/feeds/press_monetary.xml"},
{"url":"https://www.marketwatch.com/rss/topstories"},
{"url":"http://feeds.bbci.co.uk/news/rss.xml"}
],
"raw_data":false
}

๐Ÿ“ค Outputs

The actor's output format depends on the raw_data input parameter.

Standard Output (raw_data: false)

By default, the actor performs a global sort on all articles from all feeds and then groups the results by their source. The output is an array of objects, where each object represents a source and contains its articles.

โœ… Example Standard Output

[
{
"source":"federalreserve.gov",
"feeds":[
{
"title":"Fed Announces Monetary Policy Update",
"link":"https://www.federalreserve.gov/newsevents/pressreleases/monetary20231026a.htm",
"pub_date":"2023-10-26T18:00:00.000Z",
"source":"federalreserve.gov",
"guid":"https://www.federalreserve.gov/newsevents/pressreleases/monetary20231026a.htm",
"author":"",
"category":"Monetary Policy",
"enclosure":null
}
]
},
{
"source":"marketwatch.com",
"feeds":[
{
"title":"Market Hits Record Highs After Tech Rally",
"link":"https://www.marketwatch.com/story/market-hits-record-highs-11635280000",
"pub_date":"2023-10-26T16:30:00.000Z",
"source":"marketwatch.com",
"guid":"https://www.marketwatch.com/story/market-hits-record-highs-11635280000",
"author":"John Doe",
"category":"Top Stories",
"enclosure":{
"url":"https://example.com/image.jpg",
"type":"image/jpeg",
"length":"12345"
}
}
]
}
]

Raw Data Output (raw_data: true)

When raw_data is true, the actor fetches the raw XML from each feed, converts it to JSON, and groups the full JSON objects into an array of source-specific objects. This mode does not apply any sorting. It is designed to give you the complete, original data structure for each feed.

โœ… Example Raw Data Output

[
{
"source":"federalreserve.gov",
"feeds":[
{
"title":"Federal Reserve Board - Press Release",
"link":{
"$":{
"href":"https://www.federalreserve.gov/feeds/press_monetary.xml",
"rel":"self"
}
},
"description":"Recent press releases on monetary policy.",
"lastBuildDate":"Thu, 26 Oct 2023 18:00:00 GMT",
"item":[
{
"title":"Fed Announces Monetary Policy Update",
"link":"https://www.federalreserve.gov/newsevents/pressreleases/monetary20231026a.htm",
"description":"The Federal Reserve issued a statement on its latest monetary policy decisions...",
"pubDate":"Thu, 26 Oct 2023 18:00:00 GMT",
"guid":{
"_":"https://www.federalreserve.gov/newsevents/pressreleases/monetary20231026a.htm",
"isPermaLink":"true"
}
}
]
}
]
}
]

โš™๏ธ How to Use

๐Ÿ Running on Apify Platform

  1. Log in or Sign up on the Apify platform.
  2. Find the "RSS News Aggregator" Actor in the Apify Store.
  3. Click "Try actor" and then create a new task.
  4. Enter your desired RSS feed URLs and any other optional parameters in the Input tab.
  5. Start the task by clicking the "Start" button. The results will be available in the task's Dataset tab once the run is finished.

๐Ÿ› ๏ธ Troubleshooting

IssuePossible CauseSolution
Invalid URL errorOne or more URLs in rss_feeds are malformed or not valid RSS/Atom feeds.Check all provided URLs to ensure they are correct and point to a valid feed.
Parsing ErrorThe feed's XML structure is broken or does not conform to RSS/Atom standards.Try a different feed from that source or contact the source's administrator.
Empty OutputThe provided feeds are empty, or there was a network issue preventing them from being fetched.Ensure the source feeds contain articles and that your network connection is stable.

You might also like

RSS / XML Scraper

jupri/rss-xml-scraper

๐Ÿ’ซ Scrape RSS / XML / Sitemap or other XML

AllTrails Scraper

parseforge/alltrails-scraper

Supercharge your outdoor adventure planning with our comprehensive AllTrails Scraper! Automate collection of detailed trail information, ratings, reviews, and photos from AllTrails.com. Perfect for hikers, outdoor enthusiasts, and travel planners who need accurate without manual work.

86

4.0

AllTrails Scraper

crawlerbros/alltrails-scraper

Scrape AllTrails, the world's largest hiking, biking, and running trail database. Search trails by keyword/location; fetch full trail detail (difficulty, distance, elevation, GPS coordinates, photos, recent reviews); browse trails by park, city, or country.

RSS / XML Scraper

shahidirfan/RSS-XML-Scraper

Meet the RSS / XML Scraper: the most advanced actor for parsing any RSS feed or XML file. It effortlessly extracts clean, structured data from even the most complex sources. Your ultimate tool for content aggregation, data monitoring, and content analysis.

99

5.0

Flippa Scraper API

louisdeconinck/flippa-scraper-api

The Flippa Scraper API allows users to extract detailed data from Flippa.com listings, including pricing, business metrics, and seller information, for efficient analysis of online business opportunities.

๐Ÿ‘ User avatar

Louis Deconinck

221

5.0

FLIPPA.com | Only $1๐Ÿ’ฐ | Search by Url | Detail Pages | Scraper

memo23/flippa-scraper

๐Ÿ’ฐ$1 per 1,000 results, scrape Flippa search & listings. Extract Revenue, Profit, Multiples, Traffic (Views/Uniques) & Seller Verification. Supports SaaS, Apps & Domains.

๐Ÿ‘ User avatar

Muhamed Didovic

85

5.0

Pinterest Scraper

danielmilevski9/pinterest-crawler

Our free Pinterest Scraper allows you to get "pins" along with a user's profile. This unofficial Pinterest API is designed to give you more details than you can see in the web interface. It also enables you to extract public data from Pinterest without limits.

๐Ÿ‘ User avatar

Daniel Milevski

3.2K

3.2

Pinterest Boards Scraper

easyapi/pinterest-boards-scraper

The Pinterest Boards Scraper is an essential tool for discovering and exploring creative collections on Pinterest. With customizable search options and detailed data retrieval, it enhances your ability to find and utilize inspiring content effectively! ๐ŸŒŸ

Flippa Scraper

crawlerbros/flippa-scraper

Scrape digital asset listings from Flippa.com including websites, ecommerce stores, SaaS, apps, and domains. Extract price, revenue, profit, traffic, verification, seller, and industry data.

15