AutomationFlowsWeb Scraping › Simple Followers Check

Simple Followers Check

Simple Followers Check. Uses httpRequest. Scheduled trigger; 3 nodes.

Cron / scheduled trigger★★★★☆ complexity3 nodesHTTP Request
Web Scraping Trigger: Cron / scheduled Nodes: 3 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": "Simple Followers Check",
  "nodes": [
    {
      "parameters": {
        "rule": {
          "interval": [
            {
              "field": "cronExpression",
              "expression": "0 9 * * *"
            }
          ]
        }
      },
      "id": "schedule-trigger",
      "name": "Daily Check",
      "type": "n8n-nodes-base.scheduleTrigger",
      "typeVersion": 1.1,
      "position": [
        240,
        300
      ]
    },
    {
      "parameters": {
        "method": "GET",
        "url": "https://graph.facebook.com/v21.0/17841464802410425",
        "sendQuery": true,
        "queryParameters": {
          "parameters": [
            {
              "name": "access_token",
              "value": "EAAa3xKWvHHYBQqKLp1WfZA6ZBLeddlHCwrkFkLsLyZAJUR5ugf5jbGAW0dwS9AUDsI6Q0oYCPXucAkQHZA0E5d2ah2HsGI0FEUNfwwRnkY4C9BwXzZA4ZCK3jT7NKfYWnle3JUYSf7vyuVNw0bz5Td0xxIYhEWn2ZC7mrKK8K6ZBKohcOmIMVRVmNOlsk7Hp"
            },
            {
              "name": "fields",
              "value": "id,name,username,followers_count,biography"
            }
          ]
        },
        "options": {
          "timeout": 30000
        }
      },
      "id": "basic-info",
      "name": "Get Basic Info",
      "type": "n8n-nodes-base.httpRequest",
      "typeVersion": 4.2,
      "position": [
        460,
        300
      ]
    },
    {
      "parameters": {
        "jsCode": "const data = $input.first().json;\nconsole.log('=== INSTAGRAM ACCOUNT INFO ===');\nconsole.log(JSON.stringify(data, null, 2));\n\nif (data.error) {\n  console.log('\u274c API ERROR:', data.error.message);\n  return { json: { error: data.error.message, followers: 0 } };\n}\n\nconsole.log(`\u2705 Account: ${data.name || 'Unknown'}`);\nconsole.log(`\u2705 Followers: ${data.followers_count || 'N/A'}`);\nconsole.log(`\u2705 Username: ${data.username || 'N/A'}`);\n\nreturn {\n  json: {\n    account_name: data.name,\n    username: data.username,\n    followers_count: data.followers_count || 0,\n    biography: data.biography,\n    timestamp: new Date().toISOString()\n  }\n};"
      },
      "id": "process-basic",
      "name": "Process Basic Info",
      "type": "n8n-nodes-base.code",
      "typeVersion": 2,
      "position": [
        680,
        300
      ]
    }
  ],
  "connections": {
    "Daily Check": {
      "main": [
        [
          {
            "node": "Get Basic Info",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Get Basic Info": {
      "main": [
        [
          {
            "node": "Process Basic Info",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  },
  "settings": {
    "executionOrder": "v1"
  },
  "staticData": null
}
Pro

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

About this workflow

Simple Followers Check. Uses httpRequest. Scheduled trigger; 3 nodes.

Source: https://github.com/markvision-ai/markvision/blob/9b0d933e890beb6469b781fd459054faf804302b/n8n-workflows/SIMPLE-FOLLOWERS-CHECK.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

Birthday Automation - Production (Fixed). Uses stopAndError, httpRequest, emailSend, bannerbear. Scheduled trigger; 86 nodes.

Stop And Error, HTTP Request, Email Send +1
Web Scraping

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

Microsoft SharePoint, Microsoft Teams, Microsoft Entra +1
Web Scraping

Jira-Allure-Auto-Qa. Uses httpRequest, jira. Scheduled trigger; 68 nodes.

HTTP Request, Jira
Web Scraping

Spotify-Sync-Surrealdb-V1. Uses httpRequest, n8n-nodes-surrealdb, spotify. Scheduled trigger; 62 nodes.

HTTP Request, N8N Nodes Surrealdb, Spotify
Web Scraping

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

HTTP Request, n8n, N8N Trigger +1