The workflow JSON
Copy or download the full n8n JSON below. Paste it into a new n8n workflow, add your credentials, activate. Full import guide →
{
"nodes": [
{
"id": "fa8717e5-092a-4359-89cc-57cc8fa2bf25",
"name": "RSS Feed Read",
"type": "n8n-nodes-base.rssFeedRead",
"position": [
1080,
180
],
"parameters": {
"url": "={{ $json.url }}",
"options": {}
},
"typeVersion": 1
},
{
"id": "62ce6cf3-fb83-4013-b288-40d179f35f99",
"name": "When clicking \"Execute Workflow\"",
"type": "n8n-nodes-base.manualTrigger",
"position": [
520,
100
],
"parameters": {},
"typeVersion": 1
},
{
"id": "81496a04-b986-4e13-b884-23562f953a37",
"name": "Code",
"type": "n8n-nodes-base.code",
"position": [
700,
100
],
"parameters": {
"jsCode": "return [\n {\n json: {\n url: 'https://medium.com/feed/n8n-io',\n }\n },\n {\n json: {\n url: 'https://dev.to/feed/n8n',\n }\n }\n];"
},
"typeVersion": 1
},
{
"id": "6e3a444f-fec3-4a7f-a063-d5b152c5f43a",
"name": "Loop Over Items",
"type": "n8n-nodes-base.splitInBatches",
"position": [
880,
100
],
"parameters": {
"options": {}
},
"typeVersion": 3
}
],
"connections": {
"Code": {
"main": [
[
{
"node": "Loop Over Items",
"type": "main",
"index": 0
}
]
]
},
"RSS Feed Read": {
"main": [
[
{
"node": "Loop Over Items",
"type": "main",
"index": 0
}
]
]
},
"Loop Over Items": {
"main": [
[],
[
{
"node": "RSS Feed Read",
"type": "main",
"index": 0
}
]
]
},
"When clicking \"Execute Workflow\"": {
"main": [
[
{
"node": "Code",
"type": "main",
"index": 0
}
]
]
}
}
}
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Read Rss Feed From Two Different Sources. Uses rssFeedRead, manualTrigger, splitInBatches. Event-driven trigger; 4 nodes.
Source: https://github.com/Zie619/n8n-workflows — original creator credit. Request a take-down →
Related workflows
Workflows that share integrations, category, or trigger type with this one. All free to copy and import.
This workflow provides a powerful yet simple foundation for monitoring blogs using RSS feeds. It automatically fetches articles from a list of your favorite blogs and filters them based on their publi
Merge Data For Multiple Executions. Uses manualTrigger, rssFeedRead, splitInBatches. Event-driven trigger; 6 nodes.
Read RSS feed from two different sources. Uses rssFeedRead, manualTrigger, splitInBatches. Event-driven trigger; 4 nodes.
Data Transformation Techniques. Uses rssFeedRead. Event-driven trigger; 6 nodes.