AutomationFlowsWeb Scraping › Daily Company Data Sync

Daily Company Data Sync

Original n8n title: Wf-8: Data Sync

WF-8: Data Sync. 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": "WF-8: Data Sync",
  "nodes": [
    {
      "id": "trigger",
      "name": "Daily Data Sync",
      "type": "n8n-nodes-base.scheduleTrigger",
      "position": [
        250,
        300
      ],
      "parameters": {
        "rule": {
          "interval": [
            {
              "field": "cronExpression",
              "expression": "0 6 * * *"
            }
          ]
        }
      }
    },
    {
      "id": "get_companies",
      "name": "Get All Companies",
      "type": "n8n-nodes-base.httpRequest",
      "position": [
        450,
        300
      ],
      "parameters": {
        "method": "POST",
        "url": "http://data-api:8000/mcp/call/get_graph_stats",
        "body": {}
      }
    },
    {
      "id": "sync_profiles",
      "name": "Sync Company Profiles",
      "type": "n8n-nodes-base.httpRequest",
      "position": [
        650,
        200
      ],
      "parameters": {
        "method": "POST",
        "url": "http://data-api:8000/mcp/call/batch_collect",
        "body": {
          "symbols": [
            "NVDA",
            "AMD",
            "INTC"
          ],
          "market": "us",
          "include_profile": true,
          "include_price": false
        },
        "options": {
          "timeout": 60000
        }
      }
    },
    {
      "id": "sync_prices",
      "name": "Sync Price Data",
      "type": "n8n-nodes-base.httpRequest",
      "position": [
        650,
        400
      ],
      "parameters": {
        "method": "POST",
        "url": "http://data-api:8000/mcp/call/batch_collect",
        "body": {
          "symbols": [
            "NVDA",
            "AMD",
            "INTC"
          ],
          "market": "us",
          "include_profile": false,
          "include_price": true,
          "price_start": "={{ new Date(Date.now() - 1 * 24 * 60 * 60 * 1000).toISOString().split('T')[0] }}",
          "price_end": "={{ new Date().toISOString().split('T')[0] }}"
        },
        "options": {
          "timeout": 60000
        }
      }
    },
    {
      "id": "log_sync",
      "name": "Log Sync Event",
      "type": "n8n-nodes-base.httpRequest",
      "position": [
        850,
        300
      ],
      "parameters": {
        "method": "POST",
        "url": "http://data-api:8000/mcp/call/log_discovery_event",
        "body": {
          "source": "sync",
          "found": "[\"daily_sync_completed\"]",
          "method": "data_sync",
          "market": "us"
        }
      }
    }
  ],
  "connections": {
    "Daily Data Sync": {
      "main": [
        [
          {
            "node": "Get All Companies",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Get All Companies": {
      "main": [
        [
          {
            "node": "Sync Company Profiles",
            "type": "main",
            "index": 0
          }
        ],
        [
          {
            "node": "Sync Price Data",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Sync Company Profiles": {
      "main": [
        [
          {
            "node": "Log Sync Event",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Sync Price Data": {
      "main": [
        [
          {
            "node": "Log Sync Event",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  },
  "settings": {
    "executionOrder": "v1"
  },
  "staticData": null,
  "tags": [
    "sync",
    "data",
    "daily"
  ]
}
Pro

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

About this workflow

WF-8: Data Sync. Uses httpRequest. Scheduled trigger; 5 nodes.

Source: https://github.com/123qsa/supply-chain-kg/blob/main/n8n-workflows/wf-8-data-sync.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

Scheduled-Api-Call. Uses httpRequest. Scheduled trigger; 5 nodes.

HTTP Request
Web Scraping

Obsidian Tag Index Refresher. Uses executeCommand, httpRequest. Scheduled trigger; 5 nodes.

Execute Command, HTTP Request
Web Scraping

E-Décor - Support Client. Uses httpRequest, emailSend. Scheduled trigger; 5 nodes.

HTTP Request, Email Send
Web Scraping

77STF — Morning Digest (08:30 pon-pt). Uses httpRequest. Scheduled trigger; 5 nodes.

HTTP Request
Web Scraping

This workflow connects a USB scanner to Nextcloud via ScanservJS and the integrated API. It checks for new scans at a scheduled time (e.g., every 5 minutes). If there are any, they are automatically r

HTTP Request, Next Cloud