This workflow follows the HTTP Request → RSS Feed Read recipe pattern — see all workflows that pair these two integrations.
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 →
{
"name": "Multi-Source Deduplication Example",
"nodes": [
{
"parameters": {},
"name": "Manual Trigger",
"type": "n8n-nodes-base.manualTrigger",
"typeVersion": 1,
"position": [
240,
400
]
},
{
"parameters": {
"url": "https://hacker-news.firebaseio.com/v0/topstories.json",
"options": {}
},
"name": "Source 1 - Hacker News IDs",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4.2,
"position": [
460,
240
]
},
{
"parameters": {
"url": "https://api.example.com/articles",
"options": {}
},
"name": "Source 2 - API Articles",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4.2,
"position": [
460,
400
]
},
{
"parameters": {
"url": "https://example.com/feed.xml",
"options": {}
},
"name": "Source 3 - RSS Feed",
"type": "n8n-nodes-base.rssFeedRead",
"typeVersion": 1,
"position": [
460,
560
]
},
{
"parameters": {
"mode": "append"
},
"name": "Merge All Sources",
"type": "n8n-nodes-base.merge",
"typeVersion": 2.1,
"position": [
680,
400
]
},
{
"parameters": {
"mode": "raw",
"jsonOutput": "={{ (() => {\n const items = $input.all();\n const seen = new Set();\n const unique = [];\n\n for (const item of items) {\n const url = (item.json.url || '').toLowerCase().replace(/^https?:\\/\\/(www\\.)?/, '').replace(/\\/$/, '');\n \n if (url && !seen.has(url)) {\n seen.add(url);\n unique.push({\n ...item.json,\n normalizedUrl: url,\n fetchedAt: new Date().toISOString()\n });\n }\n }\n\n return unique;\n})() }}",
"options": {}
},
"name": "Deduplicate by URL",
"type": "n8n-nodes-base.code",
"typeVersion": 2,
"position": [
900,
400
]
}
],
"connections": {
"Manual Trigger": {
"main": [
[
{
"node": "Source 1 - Hacker News IDs",
"type": "main",
"index": 0
},
{
"node": "Source 2 - API Articles",
"type": "main",
"index": 0
},
{
"node": "Source 3 - RSS Feed",
"type": "main",
"index": 0
}
]
]
},
"Source 1 - Hacker News IDs": {
"main": [
[
{
"node": "Merge All Sources",
"type": "main",
"index": 0
}
]
]
},
"Source 2 - API Articles": {
"main": [
[
{
"node": "Merge All Sources",
"type": "main",
"index": 1
}
]
]
},
"Source 3 - RSS Feed": {
"main": [
[
{
"node": "Merge All Sources",
"type": "main",
"index": 2
}
]
]
},
"Merge All Sources": {
"main": [
[
{
"node": "Deduplicate by URL",
"type": "main",
"index": 0
}
]
]
}
},
"settings": {
"executionOrder": "v1"
}
}
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Multi-Source Deduplication Example. Uses httpRequest, rssFeedRead. Event-driven trigger; 6 nodes.
Source: https://github.com/splinesreticulating/n8n-v2-workflow-skill/blob/main/assets/examples/multi-source-deduplication-workflow.json — 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.
GoldPulse-v1.1-Single. Uses rssFeedRead, httpRequest. Event-driven trigger; 33 nodes.
AegisPulse-v1.1-Single. Uses rssFeedRead, httpRequest. Event-driven trigger; 31 nodes.
QuorumPulse-v1.1-Single. Uses rssFeedRead, httpRequest. Event-driven trigger; 29 nodes.
PulseMosaic-v2-Single. Uses rssFeedRead, httpRequest. Event-driven trigger; 25 nodes.
PulseMosaic-v3.1-Single. Uses rssFeedRead, httpRequest. Event-driven trigger; 25 nodes.