Block 1 - Webhook Listener
- Type / Role
- n8n-nodes-base.webhook - webhook
- Config choices
- Version 1
This workflow is provided as-is. Please review and test before using in production.
Public Transport Schedule & Delay Tracker with Microsoft Teams and Dropbox . Please ensure you have the ScrapeGraphAI community node installed in your n8n instance before using this template.
This workflow automatically scrapes public transport websites or apps for real-time schedules and service alerts, then pushes concise delay notifications to Microsoft Teams while archiving full-detail JSON snapshots in Dropbox. Ideal for commuters and travel coordinators, it keeps riders informed and maintains a historical log of disruptions.
| Item | Example | Notes |
|---|---|---|
| Transit URL(s) | https://mycitytransit.com/line/42 | Must return the schedule or service alert data you need |
| Polling Interval | 5 min | Adjust via Cron node or external trigger |
| Teams Channel | #commuter-updates | Create an incoming webhook in channel settings |
This workflow automatically scrapes public transport websites or apps for real-time schedules and service alerts, then pushes concise delay notifications to Microsoft Teams while archiving full-detail JSON snapshots in Dropbox. Ideal for commuters and travel coordinators, it keeps riders informed and maintains a historical log of disruptions.
Setup Time: 15-25 minutes
Settings → Community Nodes)./TransitLogs/).// Replace Microsoft Teams node with Slack node
{
"text": `🚊 *${$json.route}* is delayed by *${$json.delay}* minutes.`,
"channel": "#commuter-updates"
}
// In If node, use:
return $json.delay >= 10;
The workflow outputs structured JSON data:
{
"route": "Line 42",
"expected_departure": "2024-04-22T14:05:00Z",
"actual_departure": "2024-04-22T14:17:00Z",
"delay": 12,
"status": "delayed",
"reason": "Signal failure at Main Station",
"scraped_at": "2024-04-22T13:58:22Z",
"source_url": "https://mycitytransit.com/line/42"
}
files.content.write), and available storage quota.SplitInBatches to 5-10 routes per run to avoid IP blocking.Pro Tips:
This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.
| Workflow | Real-time public transport delay tracking with ScrapeGraphAI, Teams & Dropbox |
|---|---|
| Complexity | advanced |
| Nodes | 15 |
| Categories | Miscellaneous, AI Summarization |
| Author | vinci-king-01 |
| Published | 09 Dec 2025 |
Use the JSON export at /data/workflows/11634/11634.json as the source template for this automation.
Open n8n, import the downloaded JSON, and review each node before activating the workflow.
Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.
Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.
Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.
Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.
Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.
Public Transport Schedule & Delay Tracker with Microsoft Teams and Dropbox ![Workflow Preview Image](https://via.placeholder.com/800x400/4CAF50/FFFFFF?text=Public+Transport+Schedule+%26+Delay+Track...
Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.
Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your Miscellaneous, AI Summarization use case.