RSS Feed Finder & Parser avatar

RSS Feed Finder & Parser

Pricing

from $0.50 / 1,000 results

Go to Apify Store
RSS Feed Finder & Parser

RSS Feed Finder & Parser

$0.5/1K πŸ”₯ RSS feed finder & parser! Discover a site's RSS/Atom feeds & pull recent items. No key. JSON, CSV, Excel or API in seconds. Aggregate content & monitor news ⚑

Pricing

from $0.50 / 1,000 results

Rating

0.0

(0)

Developer

ninhothedev

ninhothedev

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

4 days ago

Last modified

Share

RSS Feed Finder & Parser πŸ“‘

Discover any website's RSS/Atom feeds and pull recent items β€” clean JSON, no API key.

Point it at a blog or news homepage and it finds the feeds automatically. Point it at a feed URL and it parses the entries straight away. Built for content aggregation, news monitoring, competitive intelligence, and RAG pipelines that need fresh, structured article data.

  • βœ… Auto feed discovery β€” reads <link rel="alternate"> tags and probes common feed paths (/feed, /rss.xml, /atom.xml, /index.xml, /feeds/posts/default, /?feed=rss2, …)
  • βœ… RSS + Atom parsing via the battle-tested feedparser
  • βœ… Clean output β€” HTML stripped, dates normalized to ISO 8601, categories as a list
  • βœ… No login, no key, no proxy required β€” pure HTTP, datacenter-friendly (operates on the URLs you supply)
  • βœ… Cheap β€” pay-per-result, roughly $0.50 per 1,000 items

What you get

One dataset item per feed entry:

FieldDescription
siteThe site URL you supplied (discover mode)
feed_urlThe feed the entry came from
feed_titleTitle of the feed / channel
titleEntry title
linkCanonical link to the article
publishedPublish date, normalized to ISO 8601 (YYYY-MM-DDTHH:MM:SSZ)
authorEntry author (best-effort)
summaryDescription/content with HTML stripped, capped at 3,000 chars
categoriesList of tags/categories
guidFeed-provided unique id
sourceAlways rss-feed-finder
scraped_atWhen the run fetched the item (ISO 8601)

Input

FieldTypeDefaultNotes
modeselectdiscoverdiscover (site URLs β†’ find feeds β†’ parse) or parse (feed URLs β†’ parse)
urlsarrayβ€”Website/blog URLs to scan (discover mode)
feedUrlsarrayβ€”Direct feed URLs to parse (parse mode)
maxItemsPerFeedinteger50Cap per individual feed
maxItemsinteger200Total cap per run (max 2,000)

Example β€” discover mode

{
"mode": "discover",
"urls": ["https://blog.cloudflare.com", "https://techcrunch.com"],
"maxItemsPerFeed": 50,
"maxItems": 200
}

Example β€” parse mode

{
"mode": "parse",
"feedUrls": ["https://blog.cloudflare.com/rss/"],
"maxItemsPerFeed": 100
}

Example output item

{
"site": "https://blog.cloudflare.com",
"feed_url": "https://blog.cloudflare.com/rss/",
"feed_title": "The Cloudflare Blog",
"title": "Cloudflare Internal DNS is now generally available",
"link": "https://blog.cloudflare.com/internal-dns/",
"published": "2026-07-20T20:59:31Z",
"author": "Hannes Gerhart",
"summary": "Cloudflare Internal DNS brings authoritative and recursive DNS for private networks…",
"categories": ["DNS", "Networking", "Product News", "Zero Trust"],
"guid": "https://blog.cloudflare.com/internal-dns/",
"source": "rss-feed-finder",
"scraped_at": "2026-07-21T13:04:00Z"
}

Use cases

  • Content aggregation β€” build a multi-source reading feed or newsletter digest
  • News monitoring β€” track a set of blogs/newsrooms and alert on new posts
  • RAG feeds β€” keep a vector store fresh with the latest articles from your sources
  • Competitive intelligence β€” watch competitors' blogs and changelogs for updates

Tips

  • In discover mode, if a site exposes no <link rel="alternate"> tag, the actor still probes common feed paths, so most WordPress/Ghost/Substack/Blogger sites just work.
  • Feed URLs are also accepted in the urls field in parse mode (they'll be parsed directly).
  • Schedule the actor to run on an interval and connect the dataset to your database, Zapier/Make, or a webhook.

Keywords

rss, atom, rss feed finder, rss parser, feed discovery, news monitoring, content aggregation, rag, article feed, blog feed, rss to json, feed reader, syndication