AutomationFlowsWeb Scraping › Automate MFU Parking Slot Monitoring

Automate MFU Parking Slot Monitoring

Original n8n title: Mfu Parking (no Drive)

MFU Parking (No Drive). Uses executeCommand, httpRequest. Scheduled trigger; 5 nodes.

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

This workflow follows the Executecommand → HTTP Request recipe pattern — see all workflows that pair these two integrations.

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": "MFU Parking (No Drive)",
  "nodes": [
    {
      "parameters": {
        "triggerTimes": {
          "item": [
            {
              "mode": "everyMinute"
            }
          ]
        }
      },
      "id": "schedule",
      "name": "Schedule Trigger",
      "type": "n8n-nodes-base.scheduleTrigger",
      "typeVersion": 2,
      "position": [
        200,
        200
      ]
    },
    {
      "parameters": {
        "functionCode": "return [{json:{cam_id:'cam01', rtsp:'rtsp://YOUR_CAM/stream'}}];"
      },
      "id": "list",
      "name": "Camera List",
      "type": "n8n-nodes-base.function",
      "typeVersion": 2,
      "position": [
        420,
        200
      ]
    },
    {
      "parameters": {
        "command": "ffmpeg -y -i {{$json.rtsp}} -frames:v 1 -f image2pipe -vcodec mjpeg -",
        "options": {
          "binaryPropertyName": "snapshot"
        }
      },
      "id": "ffmpeg",
      "name": "RTSP Snapshot",
      "type": "n8n-nodes-base.executeCommand",
      "typeVersion": 2,
      "position": [
        640,
        200
      ]
    },
    {
      "parameters": {
        "url": "http://YOUR_API_SERVER:8000/process?cam_id={{$json.cam_id}}",
        "options": {
          "bodyContentType": "multipart-form-data",
          "sendBinaryProperty": [
            {
              "property": "snapshot"
            }
          ],
          "headerParametersUi": {
            "parameter": [
              {
                "name": "X-API-Key",
                "value": "changeme"
              }
            ]
          }
        }
      },
      "id": "http",
      "name": "Process Slots API",
      "type": "n8n-nodes-base.httpRequest",
      "typeVersion": 4,
      "position": [
        860,
        200
      ]
    },
    {
      "parameters": {
        "functionCode": "const r = $json; console.log(r); return [{json:r}];"
      },
      "id": "log",
      "name": "Log Result",
      "type": "n8n-nodes-base.function",
      "typeVersion": 2,
      "position": [
        1080,
        200
      ]
    }
  ],
  "connections": {
    "Schedule Trigger": {
      "main": [
        [
          {
            "node": "Camera List",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Camera List": {
      "main": [
        [
          {
            "node": "RTSP Snapshot",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "RTSP Snapshot": {
      "main": [
        [
          {
            "node": "Process Slots API",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Process Slots API": {
      "main": [
        [
          {
            "node": "Log Result",
            "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

MFU Parking (No Drive). Uses executeCommand, httpRequest. Scheduled trigger; 5 nodes.

Source: https://github.com/ChisanuchaVongtalay/parking-process/blob/943c9836474dfbf6d9770ddcec7d79761109d353/n8n/parking_flow.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

Track Changes Of Product Prices. Uses htmlExtract, functionItem, httpRequest, writeBinaryFile. Scheduled trigger; 25 nodes.

Html Extract, Function Item, HTTP Request +5
Web Scraping

This workflow automatically tracks changes on specific websites, typically in e-commerce where you want to get information about price changes. Basic knowledge of HTML and JavaScript Execute Command n

Html Extract, Function Item, HTTP Request +5
Web Scraping

OpenAQ-AirNow-GIBS-and-Fetcher. Uses httpRequest, s3, executeCommand. Scheduled trigger; 13 nodes.

HTTP Request, S3, Execute Command
Web Scraping

Chinese Drama Auto Downloader Extended. Uses httpRequest, executeCommand. Scheduled trigger; 12 nodes.

HTTP Request, Execute Command
Web Scraping

Testflow1. Uses httpRequest, readBinaryFiles, executeCommand, writeBinaryFile. Scheduled trigger; 11 nodes.

HTTP Request, Read Binary Files, Execute Command +1