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": "Politician Social Media Monitor",
"nodes": [
{
"id": "Schedule",
"type": "n8n-nodes-base.cron",
"parameters": {
"triggerTimes": [
{
"mode": "every15Minutes"
}
]
}
},
{
"id": "Fetch Tweets",
"type": "n8n-nodes-base.httpRequest",
"parameters": {
"url": "https://api.twitter.com/2/users/{{$json.twitterId}}/tweets",
"authentication": "oAuth2",
"queryParametersUi": {
"parameter": [
{
"name": "tweet.fields",
"value": "created_at,public_metrics,entities"
}
]
}
}
},
{
"id": "Fetch Threads",
"type": "n8n-nodes-base.httpRequest",
"parameters": {
"url": "https://graph.threads.net/v1.0/{{$json.threadsId}}/posts",
"authentication": "oAuth2"
}
},
{
"id": "Merge Streams",
"type": "n8n-nodes-base.merge",
"parameters": {
"mode": "append"
}
},
{
"id": "Call Flowise",
"type": "n8n-nodes-base.httpRequest",
"parameters": {
"url": "https://flowise.opendiscourse.ai/api/v1/pipelines/social-audit",
"method": "POST",
"jsonParameters": true,
"options": {
"bodyContentType": "json"
},
"bodyParametersJson": "={\"posts\": $json}"
}
},
{
"id": "Persist",
"type": "n8n-nodes-base.httpRequest",
"parameters": {
"url": "https://api.opendiscourse.ai/ingest/social",
"method": "POST",
"jsonParameters": true,
"options": {
"bodyContentType": "json"
},
"bodyParametersJson": "=$json"
}
},
{
"id": "Alert",
"type": "n8n-nodes-base.slack",
"parameters": {
"channel": "#politician-alerts",
"text": "={{$json.alert}}"
}
}
],
"connections": {
"Schedule": {
"main": [
[
{
"node": "Fetch Tweets",
"type": "main",
"index": 0
}
]
]
},
"Fetch Tweets": {
"main": [
[
{
"node": "Fetch Threads",
"type": "main",
"index": 0
}
]
]
},
"Fetch Threads": {
"main": [
[
{
"node": "Merge Streams",
"type": "main",
"index": 0
}
]
]
},
"Merge Streams": {
"main": [
[
{
"node": "Call Flowise",
"type": "main",
"index": 0
}
]
]
},
"Call Flowise": {
"main": [
[
{
"node": "Persist",
"type": "main",
"index": 0
}
]
]
},
"Persist": {
"main": [
[
{
"node": "Alert",
"type": "main",
"index": 0
}
]
]
}
}
}
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Politician Social Media Monitor. Uses httpRequest, slack. Scheduled trigger; 7 nodes.
Source: https://github.com/cbwinslow/opendiscourse-sdk/blob/6b074fff2a62361814e0315292b241c138830149/templates/n8n/social_media_monitor.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.
Automated Content Pipeline. Uses httpRequest, slack. Scheduled trigger; 9 nodes.
6️⃣ Full Pipeline - News → Webhook → Blotato → Analytics. 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.