n8n Workflow

Read Rss Feed From Two Different Sources

This n8n workflow automates tasks and integrates with various services. Read Rss Feed From Two Different Sources - ready to import and run in your n8n instance.

n8n workflow.json

About This Script

This n8n workflow automates tasks and integrates with various services. Read Rss Feed From Two Different Sources - ready to import and run in your n8n instance.
Features:
  • Automates workflow tasks
  • Ready to import into n8n
  • Configurable parameters
Source Code
{
    "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
                    }
                ]
            ]
        }
    },
    "n8n_version": "1.5.0"
}
Requirements
n8n instance, API credentials for connected services
Tags
#n8n #automation #workflow
Quick Actions
More in n8n Workflows