- Home
- Resources
- Integrations
- RSS Read
n8n RSS Read nodeConfigure RSS Read in n8n.
Any site that publishes a feed can become a data source inside a workflow. The n8n RSS Read node takes a feed URL and hands the entries back as items, with 2 parameters to configure and no account to link. Useful the moment a page publishes faster than anyone checks it.
Verified Trustpilot reviews · AI, automation & growth agency
What does the n8n RSS Read node actually do?
The RSS Read node reads data from an RSS feed published on the internet. Give it a feed address, and each entry in that feed comes out of the node as an item the rest of the workflow can filter, store or send onward. It is a core node, so it ships with n8n on Cloud and on a self-hosted instance, and there is nothing to authenticate before using it.
One thing to get straight first: this node does not start a workflow. It runs on each incoming item, so something has to fire before it. A Schedule Trigger every morning, a HTTP Request chain that already produced a list of feed addresses, or the trigger of any other tool. n8n also provides a separate trigger node for RSS Read when the feed itself should be what wakes the workflow up.
The first scenario is the one most teams build: a competitor or industry feed checked on a schedule, with the new entries pushed into Slack so a channel sees them without anyone opening a reader. Second scenario, an archive. The same fetch runs, but the entries land in Google Sheets, one row per entry, which gives a searchable history a feed reader never keeps. Third, a digest: entries collected across several feeds, filtered on a keyword, then sent as one message through Gmail instead of a notification per post.
When should something else do the job? If the source publishes JSON over an API rather than a feed, this node has nothing to parse and HTTP Request is the right call. The same goes for anything that is not HTTP at all: a file drop belongs to FTP, a remote command to SSH. RSS Read is for feeds, and it is deliberately narrow.
The limits follow from that narrowness. The node exposes 2 parameters, the feed URL and an Options collection holding Custom Fields and Ignore SSL Issues. There is no filter, no date range, no built-in memory of what was already read. Deduplication is your job, usually by comparing an entry value against what a previous run stored. And because the node version documented here is version 1, an older workflow can show fewer options than the panel described on this page. A node never changes version on its own.
If the question behind all this is whether n8n is the right platform in the first place, the n8n review goes through that separately.
Which parameters does the RSS Read node expose?
The RSS Read node has 2 parameters. For each one: the node as you configure it in n8n, what the parameter changes, and our field notes.
Parameters index
URL
urlWhat you see in n8n
Notes & use cases
This is the address of the feed to read, and the only required field on the node. Fill it in and the node returns the entries of that publication as items. Leave it empty and the node stops, because a required field blocks execution.
Key parameters
- URL: the URL of the RSS feed, typed directly when the feed never changes, or written as
{{ $json.url }}when the address comes from the item before it.
Options
optionsWhat you see in n8n
Notes & use cases
Everything that is not the feed address lives in this collection. It starts empty: click Add option and the chosen entry appears as an extra field in the panel. Options never added keep their default behavior.
Key parameters
- Custom Fields: a comma-separated list of custom fields to include in the output, for example
author, contentSnippet, for feeds that carry more than the standard entry data. - Ignore SSL Issues (Insecure): whether to ignore SSL/TLS certificate issues or not.
Need help automating RSS Read with n8n?
A person reads every message.
Questions people ask about RSS Read in n8n
01Is the RSS Read node free in n8n?
02What credentials does the RSS Read node need?
03What are the limits of the RSS Read node?
04When should you use the n8n RSS Read node instead of HTTP Request?
05n8n or Make for reading RSS feeds?
Get our weekly integration tips.
No spam. Unsubscribe anytime.


