Parse RSS 2.0, Atom 1.0, and JSON Feed sources from any feed URL. Returns each item with title, author, link, published date, content, summary, categories, enclosures, and inline images. Filter by date range or by category. Built for monitoring: schedule it hourly to feed a news aggregator, alerting pipeline, or content database. Ideal for news monitoring, podcast indexing, blog tracking, and brand-mention alerts.
# Start a run via the Apify API curl -X POST "https://api.apify.com/v2/acts/santamaria-automations~rss-feed-reader/runs?token=YOUR_TOKEN" \ -H "Content-Type: application/json" \ -d '{ "feedUrls": [ "https://techcrunch.com/feed/", "https://feeds.feedburner.com/feedburner/Techcrunch", "https://www.theverge.com/rss/index.xml", "https://hnrss.org/frontpage", "https://example-podcast.com/rss" ], "maxAgeDays": 7, "extractFullContent": true }' # Or use with AI agents via MCP: # https://mcp.apify.com?tools=santamaria-automations/rss-feed-reader
| Field | Type | Example |
|---|---|---|
| feed_url | string | https://techcrunch.com/feed/ |
| feed_title | string | TechCrunch |
| total_items | integer | 42 |
| item_title | string | Acme raises $50M Series B |
| author | string | Reporter Name |
| published_at | string | 2026-06-13T08:42:00Z |
| link | string | https://techcrunch.com/2026/06/13/acme-series-b/ |
| content_html | string | Acme, the leading... |
| categories | array | ["startups","funding"] |
| featured_image | string | https://techcrunch.com/images/acme.jpg |