This workflow follows the HTTP Request → Slack 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": "6\ufe0f\u20e3 Full Pipeline - News \u2192 Webhook \u2192 Blotato \u2192 Analytics",
"nodes": [
{
"parameters": {
"rule": {
"interval": [
"hours"
],
"value": 6
}
},
"name": "Trigger (Every 6 hours)",
"type": "n8n-nodes-base.cron",
"typeVersion": 1,
"position": [
250,
100
]
},
{
"parameters": {
"url": "https://news-to-social.vercel.app/api/news/collect",
"method": "POST",
"sendHeaders": true,
"headerParameters": {
"parameters": [
{
"name": "Content-Type",
"value": "application/json"
},
{
"name": "X-Webhook-Secret",
"value": "={{ $env.WEBHOOK_SECRET }}"
}
]
},
"sendBody": true,
"bodyParameters": {
"parameters": [
{
"name": "topics",
"value": "tech, AI, innovation, startups, business, science"
},
{
"name": "limit",
"value": "3"
}
]
}
},
"name": "\ud83d\udcf0 Step 1: Collect News",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4.1,
"position": [
250,
300
]
},
{
"parameters": {
"url": "https://news-to-social.vercel.app/api/news/generate",
"method": "POST",
"sendHeaders": true,
"headerParameters": {
"parameters": [
{
"name": "Content-Type",
"value": "application/json"
},
{
"name": "X-Webhook-Secret",
"value": "={{ $env.WEBHOOK_SECRET }}"
}
]
},
"sendBody": true,
"bodyParameters": {
"parameters": [
{
"name": "newsItems",
"value": "={{ $node[\"\ud83d\udcf0 Step 1: Collect News\"].json.data }}"
}
]
}
},
"name": "\ud83d\udcdd Step 2: Generate Content",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4.1,
"position": [
550,
300
]
},
{
"parameters": {
"waitForm": true,
"waitTime": 3600000
},
"name": "\u23f3 Step 3: Wait for Approval",
"type": "n8n-nodes-base.manualTrigger",
"typeVersion": 1,
"position": [
850,
300
]
},
{
"parameters": {
"url": "https://news-to-social.vercel.app/api/publish/approve",
"method": "POST",
"sendHeaders": true,
"headerParameters": {
"parameters": [
{
"name": "Content-Type",
"value": "application/json"
},
{
"name": "X-Webhook-Secret",
"value": "={{ $env.WEBHOOK_SECRET }}"
}
]
},
"sendBody": true,
"bodyParameters": {
"parameters": [
{
"name": "newsId",
"value": "={{ $json.newsId }}"
},
{
"name": "approved",
"value": "=true"
},
{
"name": "platforms",
"value": "={{ $json.platforms }}"
},
{
"name": "generatedPosts",
"value": "={{ $json.generatedPosts }}"
},
{
"name": "scheduledTime",
"value": "={{ $json.scheduledTime }}"
}
]
}
},
"name": "\ud83d\ude80 Step 4: Publish to Blotato",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4.1,
"position": [
1150,
300
]
},
{
"parameters": {
"url": "https://news-to-social.vercel.app/api/analytics/dashboard",
"method": "GET",
"sendHeaders": true,
"headerParameters": {
"parameters": [
{
"name": "X-Webhook-Secret",
"value": "={{ $env.WEBHOOK_SECRET }}"
}
]
}
},
"name": "\ud83d\udcca Step 5: Collect Analytics",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4.1,
"position": [
1450,
300
]
},
{
"parameters": {
"text": "\ud83c\udf89 Full Pipeline Completed\n\n\ud83d\udcca Summary:\n- News collected: {{ $node[\"\ud83d\udcf0 Step 1: Collect News\"].json.count }}\n- Content generated: {{ $node[\"\ud83d\udcdd Step 2: Generate Content\"].json.generated }}\n- Published posts: {{ $node[\"\ud83d\ude80 Step 4: Publish to Blotato\"].json.results.successful }}\n- Total views (current): {{ $node[\"\ud83d\udcca Step 5: Collect Analytics\"].json.dashboard.summary.totalViews }}\n\n\u2705 Pipeline Status: COMPLETED",
"channel": "#automation-status"
},
"name": "Slack - Pipeline Complete",
"type": "n8n-nodes-base.slack",
"typeVersion": 3.0,
"position": [
1750,
300
]
}
],
"connections": {
"Trigger (Every 6 hours)": {
"main": [
[
{
"node": "\ud83d\udcf0 Step 1: Collect News",
"type": "main",
"index": 0
}
]
]
},
"\ud83d\udcf0 Step 1: Collect News": {
"main": [
[
{
"node": "\ud83d\udcdd Step 2: Generate Content",
"type": "main",
"index": 0
}
]
]
},
"\ud83d\udcdd Step 2: Generate Content": {
"main": [
[
{
"node": "\u23f3 Step 3: Wait for Approval",
"type": "main",
"index": 0
}
]
]
},
"\u23f3 Step 3: Wait for Approval": {
"main": [
[
{
"node": "\ud83d\ude80 Step 4: Publish to Blotato",
"type": "main",
"index": 0
}
]
]
},
"\ud83d\ude80 Step 4: Publish to Blotato": {
"main": [
[
{
"node": "\ud83d\udcca Step 5: Collect Analytics",
"type": "main",
"index": 0
}
]
]
},
"\ud83d\udcca Step 5: Collect Analytics": {
"main": [
[
{
"node": "Slack - Pipeline Complete",
"type": "main",
"index": 0
}
]
]
}
},
"active": false,
"settings": {}
}
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
6️⃣ Full Pipeline - News → Webhook → Blotato → Analytics. Uses httpRequest, slack. Scheduled trigger; 7 nodes.
Source: https://github.com/peewe75/socialnew/blob/5eac134a2c250db598406c771d6279ebe7d945c8/n8n-workflows/06-full-pipeline.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.
Stop the daily grind of checking multiple apps just to stay updated. This template automates the creation of recurring digests by querying a powerful AI assistant you build on the Super platform.
Politician Social Media Monitor. Uses httpRequest, slack. Scheduled trigger; 7 nodes.
Flow. Uses httpRequest, slack, pagerDuty. Scheduled trigger; 7 nodes.
Flow. Uses httpRequest, slack, linear. Scheduled trigger; 7 nodes.
TitanCrew — Daily Churn Prevention Scan. Uses httpRequest, slack. Scheduled trigger; 5 nodes.