AutomationFlowsWeb Scraping › Techpartner Social Media Monitor

Techpartner Social Media Monitor

TechPartner Social Media Monitor. Uses httpRequest. Scheduled trigger; 5 nodes.

Cron / scheduled trigger★★★★☆ complexity5 nodesHTTP Request
Web Scraping Trigger: Cron / scheduled Nodes: 5 Complexity: ★★★★☆ Added:

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 →

Download .json
{
  "name": "TechPartner Social Media Monitor",
  "nodes": [
    {
      "parameters": {
        "rule": {
          "interval": [
            {
              "field": "hours",
              "hours": 2
            }
          ]
        }
      },
      "id": "trigger-node",
      "name": "Schedule Trigger",
      "type": "n8n-nodes-base.scheduleTrigger",
      "typeVersion": 1,
      "position": [
        250,
        300
      ]
    },
    {
      "parameters": {
        "url": "https://www.reddit.com/r/saudiarabia/search.json?q=web+development+OR+app+development+OR+digital+marketing&sort=new&limit=10",
        "options": {}
      },
      "id": "reddit-node",
      "name": "Reddit Search",
      "type": "n8n-nodes-base.httpRequest",
      "typeVersion": 4.1,
      "position": [
        450,
        300
      ]
    },
    {
      "parameters": {
        "jsCode": "// Extract posts from Reddit response\nconst posts = $input.first().json.data.children.map(child => ({\n  title: child.data.title,\n  content: child.data.selftext || '',\n  url: `https://reddit.com${child.data.permalink}`,\n  platform: 'Reddit',\n  keywordFound: extractKeyword(child.data.title + ' ' + (child.data.selftext || ''))\n}));\n\nfunction extractKeyword(text) {\n  const keywords = ['web development', 'app development', 'digital marketing', 'software', 'website', 'mobile app'];\n  for (const kw of keywords) {\n    if (text.toLowerCase().includes(kw)) return kw;\n  }\n  return 'tech services';\n}\n\nreturn posts.map(post => ({ json: post }));"
      },
      "id": "transform-node",
      "name": "Transform Posts",
      "type": "n8n-nodes-base.code",
      "typeVersion": 2,
      "position": [
        650,
        300
      ]
    },
    {
      "parameters": {
        "method": "POST",
        "url": "http://localhost:8080/api/webhooks/n8n-social-reply",
        "sendBody": true,
        "bodyParameters": {
          "parameters": [
            {
              "name": "postTitle",
              "value": "={{ $json.title }}"
            },
            {
              "name": "postContent",
              "value": "={{ $json.content }}"
            },
            {
              "name": "keywordFound",
              "value": "={{ $json.keywordFound }}"
            },
            {
              "name": "platform",
              "value": "={{ $json.platform }}"
            }
          ]
        },
        "options": {}
      },
      "id": "webhook-node",
      "name": "Call TechPartner Webhook",
      "type": "n8n-nodes-base.httpRequest",
      "typeVersion": 4.1,
      "position": [
        850,
        300
      ]
    },
    {
      "parameters": {
        "jsCode": "// Log the AI-generated reply\nconsole.log('AI Reply:', $input.first().json.replyToPost);\nreturn $input.all();"
      },
      "id": "log-node",
      "name": "Log Reply",
      "type": "n8n-nodes-base.code",
      "typeVersion": 2,
      "position": [
        1050,
        300
      ]
    }
  ],
  "settings": {
    "executionOrder": "v1"
  },
  "staticData": null,
  "tags": [],
  "connections": {
    "Schedule Trigger": {
      "main": [
        [
          {
            "node": "Reddit Search",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Reddit Search": {
      "main": [
        [
          {
            "node": "Transform Posts",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Transform Posts": {
      "main": [
        [
          {
            "node": "Call TechPartner Webhook",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Call TechPartner Webhook": {
      "main": [
        [
          {
            "node": "Log Reply",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  }
}
Pro

For the full experience including quality scoring and batch install features for each workflow upgrade to Pro

About this workflow

TechPartner Social Media Monitor. Uses httpRequest. Scheduled trigger; 5 nodes.

Source: https://github.com/Banderalotebi/techpartner_site/blob/5811ca7d0f0dde64a22a9ac71ad025d59cb607e4/n8n-workflows/social-monitoring.json — original creator credit. Request a take-down →

More Web Scraping workflows → · Browse all categories →

Related workflows

Workflows that share integrations, category, or trigger type with this one. All free to copy and import.

Web Scraping

Proactively alert to service endpoint changes and pod/container issues (Pending, Not Ready, Restart spikes) using Prometheus metrics, formatted and sent to Slack.

HTTP Request
Web Scraping

Tired of being let down by the Google Drive Trigger? Rather not exhaust system resources by polling every minute? Then this workflow is for you!

HTTP Request, Execute Workflow Trigger
Web Scraping

Triggers at a regular interval or via a webhook request. Solves AWS WAF challenge then makes a request to fetch the product page. Extracts product data from the retrieved HTML page. Compares the curre

N8N Nodes Capsolver, HTTP Request
Web Scraping

🔄 Monitor Container Images from Docker Hub or GHCR.

HTTP Request
Web Scraping

Automatically monitor billable Kimai projects every weekday morning and receive a formatted HTML email when a project deadline is approaching or its hour budget is running low. If nothing requires att

Email Send, HTTP Request