RSS Feed Parser — Convert Any RSS or Atom Feed to Clean JSON avatar

RSS Feed Parser — Convert Any RSS or Atom Feed to Clean JSON

Pricing

$20.00 / 1,000 feed parseds

Go to Apify Store
RSS Feed Parser — Convert Any RSS or Atom Feed to Clean JSON

RSS Feed Parser — Convert Any RSS or Atom Feed to Clean JSON

RSS feed parser for developers and AI agents: pass any RSS or Atom feed URL as input and get back clean, structured JSON items (title, link, date, and other feed fields). Pay per result — cost scales with items parsed, nothing hidden.

Pricing

$20.00 / 1,000 feed parseds

Rating

0.0

(0)

Developer

Anthony Snider

Anthony Snider

Maintained by Community

Actor stats

0

Bookmarked

1

Total users

0

Monthly active users

14 days ago

Last modified

Share

RSS & Atom Feed Parser

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.