Run the RSS Feed Reader from your terminal with the Apify CLI. These snippets call the hosted Actor — there is no Actor source code in this repo.
npm install -g apify-cli
apify login # paste your API token from https://console.apify.com/account/integrationsapify call logiover/bulk-rss-feed-readerapify call logiover/bulk-rss-feed-reader \
--input='{
"feedUrls": [
"https://hnrss.org/frontpage",
"https://www.theverge.com/rss/index.xml",
"https://techcrunch.com/feed/"
],
"maxItemsPerFeed": 25,
"maxResults": 1000
}'apify call logiover/bulk-rss-feed-reader \
--input='{
"feedUrls": ["https://arstechnica.com", "https://www.theverge.com"],
"discoverFromWebsites": true,
"maxItemsPerFeed": 10
}'apify call logiover/bulk-rss-feed-reader \
--input='{
"feedUrls": ["https://feeds.megaphone.fm/thedailyshow"],
"maxItemsPerFeed": 10,
"maxConcurrency": 5
}'jq -Rn '{ feedUrls: [inputs], maxItemsPerFeed: 25 }' feeds.txt \
| apify call logiover/bulk-rss-feed-reader --input-file=-apify datasets:get-items <DATASET_ID> --format=csv > feed-items.csv
apify datasets:get-items <DATASET_ID> --format=json > feed-items.json- Set
maxItemsPerFeedto keep only the newest N posts per source; leave it at0to backfill everything. - Use
maxResultsto cap total rows and cost on very large lists. - Schedule the Actor so GUID de-dupe surfaces only newly published items each run.