RSS Feed Aggregator API — Merge Feeds into One JSON Stream avatar

RSS Feed Aggregator API — Merge Feeds into One JSON Stream

Pricing

$20.00 / 1,000 feed parseds

Go to Apify Store
RSS Feed Aggregator API — Merge Feeds into One JSON Stream

RSS Feed Aggregator API — Merge Feeds into One JSON Stream

RSS aggregator API. Input: feedUrls (list of RSS/Atom feeds). Output: one unified JSON stream of items — title, link, date, source feed — deduplicated and sorted newest-first. A personal news API for agents. Pay-per-result: $0.02 per feed parsed.

Pricing

$20.00 / 1,000 feed parseds

Rating

0.0

(0)

Developer

Anthony Snider

Anthony Snider

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

2 days ago

Last modified

Share

RSS Feed Aggregator

Merge many RSS/Atom feeds into one unified, deduplicated, date-sorted stream — a personal news API for your agents.

Live on the Apify Store — run it instantly or call it as an agent tool via Apify MCP.

What you get

  • Fetches and parses every feed you give it (RSS 2.0, RDF, and Atom).
  • Normalizes each article to a clean shape and tags it with its sourceFeed.
  • Merges all feeds, deduplicates by link / guid / title, and sorts newest-first.
  • Caps per-feed and total counts so the output stays tight.
  • One dataset item per article — ready to pipe straight into an LLM or app.

Input

{
"urls": [
"https://hnrss.org/frontpage",
"https://www.theverge.com/rss/index.xml"
],
"maxItemsPerFeed": 50,
"maxTotal": 200
}
FieldTypeDescription
urlsstring[]Required. RSS/Atom feed URLs to merge.
maxItemsPerFeedintegerMax items taken from each feed (default 50).
maxTotalintegerMax merged articles in the output (default 200).

Output

One dataset item per article:

{
"title": "Show HN: A tiny RSS aggregator",
"link": "https://example.com/article",
"publishedAt": "2026-06-24T12:34:56.000Z",
"sourceFeed": "https://hnrss.org/frontpage",
"summary": "A short, HTML-stripped excerpt of the article..."
}

Pricing is pay-per-event: you are charged once per feed that is fetched and parsed.