AutomationFlowsWeb Scraping › Daily Data Fetcher

Daily Data Fetcher

Daily Data Fetcher. 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": "Daily Data Fetcher",
  "nodes": [
    {
      "id": "f83f93c7-cb83-458e-8adf-120c191942f1",
      "name": "Daily Cron",
      "type": "n8n-nodes-base.cron",
      "parameters": {
        "cronExpression": "0 9 * * *"
      },
      "position": [
        100,
        300
      ],
      "typeVersion": 1
    },
    {
      "id": "4e91e003-943c-4098-b074-ea621403a86a",
      "name": "Fetch Daily Data",
      "type": "n8n-nodes-base.httpRequest",
      "parameters": {
        "url": "https://api.github.com/events",
        "httpMethod": "GET"
      },
      "position": [
        350,
        300
      ],
      "typeVersion": 1
    },
    {
      "id": "09299c49-10f4-4a8d-bcb5-26a5382f2a92",
      "name": "Filter Events",
      "type": "n8n-nodes-base.code",
      "parameters": {
        "jsCode": "\n// GitHub events'leri filtrele\nconst events = $input.first().json;\n\n// Sadece push event'lerini al\nconst pushEvents = events.filter(event => event.type === 'PushEvent');\n\n// \u0130lk 5 event'i al\nconst topEvents = pushEvents.slice(0, 5).map(event => ({\n    id: event.id,\n    repo: event.repo.name,\n    actor: event.actor.login,\n    created_at: event.created_at\n}));\n\nreturn [{\n    json: {\n        total_events: events.length,\n        push_events: pushEvents.length,\n        top_push_events: topEvents,\n        fetched_at: new Date().toISOString()\n    }\n}];\n                "
      },
      "position": [
        600,
        300
      ],
      "typeVersion": 1
    }
  ],
  "connections": {
    "Daily Cron": {
      "main": [
        [
          {
            "node": "Fetch Daily Data",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Fetch Daily Data": {
      "main": [
        [
          {
            "node": "Filter Events",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  },
  "active": false,
  "settings": {},
  "createdAt": "2025-09-20T12:00:00.000Z",
  "updatedAt": "2025-09-20T12:00:00.000Z"
}
Pro

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

About this workflow

Daily Data Fetcher. Uses httpRequest. Scheduled trigger; 3 nodes.

Source: https://github.com/muhtalipdede/n8n-ai-workflows/blob/d31f4a06edff073996ffc479323a1508f2435583/examples/scheduled-workflow.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