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
}
]
]
}
}
}
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 →