RSS & Atom Feed Parser avatar

RSS & Atom Feed Parser

Pricing

$20.00 / 1,000 feed parseds

Go to Apify Store
RSS & Atom Feed Parser

RSS & Atom Feed Parser

Parse any RSS or Atom feed into clean, normalized JSON — title, link, date, author, categories, and content for every item. No XML headaches.

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

5 days ago

Last modified

Share

Turn any RSS or Atom feed into clean, normalized JSON — no XML headaches.

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

What you get

  • Works with RSS 2.0, RDF, and Atom feeds — auto-detected.
  • Every item normalized to the same shape: title, link, guid, publishedAt (ISO 8601), author, categories, summary, content, enclosure.
  • Items sorted newest-first; cap how many you want per feed.
  • Bulk mode — pass an array of feed URLs and get one result object per feed.
  • Handles CDATA, content:encoded, dc:creator, media:content, and enclosures.

Input

{
"url": "https://hnrss.org/frontpage",
"maxItems": 50
}

Or parse many feeds at once:

{
"urls": [
"https://hnrss.org/frontpage",
"https://www.reddit.com/r/programming/.rss"
],
"maxItems": 25
}

Output

One dataset record per feed:

{
"feedUrl": "https://hnrss.org/frontpage",
"feedTitle": "Hacker News: Front Page",
"itemCount": 30,
"items": [
{
"title": "Show HN: A tiny RSS parser",
"link": "https://example.com/post",
"guid": "https://example.com/post",
"publishedAt": "2026-06-24T18:12:03.000Z",
"author": "jane",
"categories": ["programming"],
"summary": "A short description…",
"content": "<p>Full HTML content…</p>",
"enclosure": null
}
]
}

Pricing

Pay-per-event: $0.02 per feed parsed. No subscription, no surprises.