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": "t1",
"name": "Poll RSS Interval",
"type": "n8n-nodes-base.scheduleTrigger",
"typeVersion": 1,
"position": [
100,
200
],
"parameters": {}
},
{
"id": "n2",
"name": "Fetch Feed HTTP",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 3,
"position": [
300,
200
],
"parameters": {
"url": "https://my-blog.com/feed.xml",
"method": "GET"
}
},
{
"id": "n3",
"name": "Filter new items",
"type": "n8n-nodes-base.code",
"typeVersion": 1,
"position": [
500,
200
],
"parameters": {
"jsCode": "// Filter items\nreturn items.filter(i => i.isNew);"
}
},
{
"id": "n4",
"name": "Queue Social Post",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 3,
"position": [
700,
200
],
"parameters": {
"url": "https://api.buffer.com/v1/updates/create",
"method": "POST"
}
}
],
"connections": {
"Poll RSS Interval": {
"main": [
[
{
"node": "Fetch Feed HTTP",
"type": "main",
"index": 0
}
]
]
},
"Fetch Feed HTTP": {
"main": [
[
{
"node": "Filter new items",
"type": "main",
"index": 0
}
]
]
},
"Filter new items": {
"main": [
[
{
"node": "Queue Social Post",
"type": "main",
"index": 0
}
]
]
}
}
}
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Flowforge N8N. Uses httpRequest. Scheduled trigger; 4 nodes.
Source: https://github.com/mOHAD44DSFASF/flowforge-n8n/blob/main/templates/workflows/rss-to-social/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.
Birthday Automation - Production (Fixed). Uses stopAndError, httpRequest, emailSend, bannerbear. Scheduled trigger; 86 nodes.
This template runs two scheduled workflows to govern Microsoft Entra ID (Azure AD) guest accounts by detecting stale users via Microsoft Graph, staging deletions in SharePoint with a 72-hour window, n
Jira-Allure-Auto-Qa. Uses httpRequest, jira. Scheduled trigger; 68 nodes.
Spotify-Sync-Surrealdb-V1. Uses httpRequest, n8n-nodes-surrealdb, spotify. Scheduled trigger; 62 nodes.
As n8n instances scale, teams often lose track of sub-workflows—who uses them, where they are referenced, and whether they can be safely updated. This leads to inefficiencies like unnecessary copies o