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": "Viral Alert Webhook",
"nodes": [
{
"id": "viral-webhook",
"name": "Viral Webhook",
"type": "n8n-nodes-base.webhook",
"typeVersion": 1,
"position": [
200,
300
],
"parameters": {
"path": "viral-alert",
"httpMethod": "POST",
"responseMode": "onReceived"
}
},
{
"id": "format-message",
"name": "Format Message",
"type": "n8n-nodes-base.set",
"typeVersion": 2,
"position": [
420,
300
],
"parameters": {
"values": {
"string": [
{
"name": "message",
"value": "=Your post is going viral! Check the dashboard."
}
]
}
}
},
{
"id": "send-slack",
"name": "Send Slack",
"type": "n8n-nodes-base.slack",
"typeVersion": 1,
"position": [
640,
300
],
"parameters": {
"resource": "message",
"operation": "post",
"channel": "={{$env.SLACK_CHANNEL}}",
"text": "={{$json[\"message\"]}}"
}
}
],
"connections": {
"Viral Webhook": {
"main": [
[
{
"node": "Format Message",
"type": "main",
"index": 0
}
]
]
},
"Format Message": {
"main": [
[
{
"node": "Send Slack",
"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
Viral Alert Webhook. Uses slack. Webhook trigger; 3 nodes.
Source: https://github.com/HichamxMahboub/social_media_tool/blob/3ed0ab90a837d07d60642d9ad1c619d9ddd60a94/n8n/viral-alert.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.
Automates error detection and notification to prevent production downtime. Monitors incoming webhooks, filters critical errors, and triggers alerts or bug reports. Ensures rapid response to critical i
This n8n workflow ensures instant notifications to parents and staff during school emergencies. It processes incoming alerts via webhooks, filters active emergencies, and sends notifications through e
B-Stock Deal Alert — Slack + Email. Uses slack, emailSend. Webhook trigger; 3 nodes.
ApogeoAPI — Enrich visitor IP and notify Slack. Uses n8n-nodes-apogeoapi, slack. Webhook trigger; 3 nodes.
Gumroad Sale → Slack + Daily Summary. Uses slack, airtable. Webhook trigger; 3 nodes.