AutomationFlowsWeb Scraping › Monitor Upwork Jobs with Apify and Send Ntfy Phone Alerts

Monitor Upwork Jobs with Apify and Send Ntfy Phone Alerts

ByDavid @david-c on n8n.io

This workflow runs hourly on weekdays (8AM–5PM), uses the Apify API to scrape recent Upwork job listings that match your keywords, and sends each job as a Markdown push notification to your phone via ntfy. Runs every hour on weekdays between 8AM and 5PM. Sets the ntfy topic name…

Cron / scheduled trigger★★☆☆☆ complexity7 nodesHTTP Request
Web Scraping Trigger: Cron / scheduled Nodes: 7 Complexity: ★★☆☆☆ Added:

This workflow corresponds to n8n.io template #16038 — we link there as the canonical source.

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
{
  "nodes": [
    {
      "id": "a846f1c8-3746-4014-bd1d-147cdd21bf00",
      "name": "Sticky Note1",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        1648,
        336
      ],
      "parameters": {
        "color": 7,
        "width": 416,
        "height": 320,
        "content": "## Schedule and configure\n\nStarts the workflow on the weekday hourly schedule and prepares runtime settings such as the ntfy topic and keyword list used downstream."
      },
      "typeVersion": 1
    },
    {
      "id": "9d85c2f7-3bc7-40a8-8894-57d911b07f6b",
      "name": "When Hourly on Weekdays",
      "type": "n8n-nodes-base.scheduleTrigger",
      "position": [
        1696,
        496
      ],
      "parameters": {
        "rule": {
          "interval": [
            {
              "field": "cronExpression",
              "expression": "0 0 8-17 * * 1-5"
            }
          ]
        }
      },
      "typeVersion": 1.3
    },
    {
      "id": "19be3d51-075c-461f-ad80-c8185ca3ac23",
      "name": "Set Notification Parameters",
      "type": "n8n-nodes-base.set",
      "position": [
        1920,
        496
      ],
      "parameters": {
        "options": {},
        "assignments": {
          "assignments": [
            {
              "id": "f6489e5c-1a84-4055-b2af-6672bf247fd3",
              "name": "ntfy_topic",
              "type": "string",
              "value": "your_ntfy_topic"
            },
            {
              "id": "418fdb69-0957-4aca-b87e-8743f3e20d81",
              "name": "keywords",
              "type": "string",
              "value": "javascript python"
            }
          ]
        }
      },
      "typeVersion": 3.4
    },
    {
      "id": "b1e7077b-d15f-42d3-9164-9c81abd7162c",
      "name": "Post Jobs to Upwork Scraper",
      "type": "n8n-nodes-base.httpRequest",
      "position": [
        2144,
        496
      ],
      "parameters": {
        "url": "https://api.apify.com/v2/acts/energizing_technology~cheapest-upwork-jobs-scraper/run-sync-get-dataset-items",
        "method": "POST",
        "options": {},
        "sendBody": true,
        "authentication": "genericCredentialType",
        "bodyParameters": {
          "parameters": [
            {
              "name": "keywords",
              "value": "={{ $json.keywords }}"
            },
            {
              "name": "minutes_since_last_offer",
              "value": "60"
            }
          ]
        },
        "genericAuthType": "httpBearerAuth"
      },
      "credentials": {
        "httpBearerAuth": {
          "name": "<your credential>"
        }
      },
      "typeVersion": 4.2
    },
    {
      "id": "0237d070-eae5-499c-9909-bf04d5a178b6",
      "name": "Send NTFY Notification Post",
      "type": "n8n-nodes-base.httpRequest",
      "position": [
        2368,
        496
      ],
      "parameters": {
        "url": "={{$('Set Notification Parameters').first().json.ntfy_topic ? 'https://ntfy.sh/' + $('Set Notification Parameters').first().json.ntfy_topic : ''}}",
        "body": "=[{{ $json.title }}]({{ $json.url }})",
        "method": "POST",
        "options": {},
        "sendBody": true,
        "contentType": "raw",
        "sendHeaders": true,
        "rawContentType": "text/markdown",
        "headerParameters": {
          "parameters": [
            {
              "name": "Content-Type",
              "value": "text/markdown"
            }
          ]
        }
      },
      "typeVersion": 4.4
    },
    {
      "id": "6ea977e5-1dc8-4f32-9103-47428d6f917a",
      "name": "Sticky Note3",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        1088,
        304
      ],
      "parameters": {
        "width": 512,
        "height": 560,
        "content": "## Scrape Upwork Jobs & Get Notified for Free\n\n\n### How it works\n\nThis workflow runs hourly during weekday business hours to check for relevant Upwork jobs. It sets configuration values such as keywords and the ntfy topic, fetches matching jobs through an Apify HTTP request, and sends a notification through ntfy with the results.\n\n\n### Setup steps\n\n- Configure the schedule trigger to match the desired weekdays and business hours/time zone.\n- Update the Config node with the correct ntfy topic and keyword list for the Upwork searches.\n- Configure the Fetch Upwork Jobs HTTP request with the required Apify actor endpoint, API token, and request payload.\n- Verify the Send NTFY Notification HTTP request points to the correct ntfy server/topic and formats the notification body as desired.\n\n\n### Customization\n\nAdjust the keywords, schedule frequency, Apify actor settings, or notification content to target different job categories or change alert behavior."
      },
      "typeVersion": 1
    },
    {
      "id": "23fdd43e-88ff-48b0-b08c-92be943f0455",
      "name": "Sticky Note4",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        2096,
        320
      ],
      "parameters": {
        "color": 7,
        "width": 416,
        "height": 368,
        "content": "## Fetch jobs and notify \ud83d\udd14\n\nCalls the Apify-based Upwork jobs endpoint using the configured search inputs, then posts the resulting notification to the configured ntfy topic."
      },
      "typeVersion": 1
    }
  ],
  "connections": {
    "When Hourly on Weekdays": {
      "main": [
        [
          {
            "node": "Set Notification Parameters",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Post Jobs to Upwork Scraper": {
      "main": [
        [
          {
            "node": "Send NTFY Notification Post",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Set Notification Parameters": {
      "main": [
        [
          {
            "node": "Post Jobs to Upwork Scraper",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  }
}

Credentials you'll need

Each integration node will prompt for credentials when you import. We strip credential IDs before publishing — you'll add your own.

Pro

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

About this workflow

This workflow runs hourly on weekdays (8AM–5PM), uses the Apify API to scrape recent Upwork job listings that match your keywords, and sends each job as a Markdown push notification to your phone via ntfy. Runs every hour on weekdays between 8AM and 5PM. Sets the ntfy topic name…

Source: https://n8n.io/workflows/16038/ — 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

This workflow is for job seekers, recruiters, or HR teams who want to automatically monitor new job postings on LinkedIn based on specific search queries, without manually checking the platform every

HTTP Request, Airtable
Web Scraping

&gt; Watch the full Youtube Video Tutorial [](https://youtu.be/Y-wUr2-UYZk)

Data Table, HTTP Request, Google Sheets +1
Web Scraping

Very straightforward workflow. It checks the Epic Games website if the HTML container with free games has changed. If it did then it will send a notification to Discord with a list of embeds containin

Discord, N8N Nodes Puppeteer, HTTP Request
Web Scraping

This workflow automatically scrapes business leads from Google Maps on a daily schedule and ensures only high-quality, unique leads are processed. New businesses are cleaned, validated, and deduplicat

Google Sheets, Gmail, HTTP Request
Web Scraping

Women creators, homemakers-turned-entrepreneurs, and feminine lifestyle brands who want a graceful, low-lift way to keep an eye on competitor content and spark weekly ideas.

HTTP Request, Google Sheets, Email Send +1