AutomationFlowsSlack & Telegram › Product Price Scraper to Telegram

Product Price Scraper to Telegram

Product Price Scraper to Telegram. Uses httpRequest, spreadsheetFile, telegram. Scheduled trigger; 10 nodes.

Cron / scheduled trigger★★★★☆ complexity10 nodesHTTP RequestSpreadsheet FileTelegram
Slack & Telegram Trigger: Cron / scheduled Nodes: 10 Complexity: ★★★★☆ Added:

This workflow follows the HTTP Request → Telegram 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": "Product Price Scraper to Telegram",
  "nodes": [
    {
      "parameters": {
        "triggerTimes": {},
        "mode": "everyXMinutes",
        "value": 30
      },
      "name": "Cron Trigger",
      "type": "n8n-nodes-base.cron",
      "typeVersion": 1,
      "position": [
        250,
        200
      ]
    },
    {
      "parameters": {
        "url": "https://www.mobile140.com/mobile-list",
        "responseFormat": "string"
      },
      "name": "Mobile140.com HTTP Request",
      "type": "n8n-nodes-base.httpRequest",
      "typeVersion": 1,
      "position": [
        450,
        100
      ]
    },
    {
      "parameters": {
        "functionCode": "const html = items[0].json.body;\nconst { JSDOM } = require('jsdom');\nconst dom = new JSDOM(html);\nconst document = dom.window.document;\nconst products = [];\ndocument.querySelectorAll('.product-item').forEach(prod => {\n  const name = prod.querySelector('.product-title')?.textContent.trim() || '';\n  const price = prod.querySelector('.product-price')?.textContent.trim() || '';\n  const colors = Array.from(prod.querySelectorAll('.product-colors span')).map(c => c.textContent.trim()).join(', ');\n  const link = prod.querySelector('a')?.href || '';\n  products.push({ name, price, colors, link });\n});\nreturn products.map(p => ({ json: p }));"
      },
      "name": "Scrape Mobile140.com",
      "type": "n8n-nodes-base.function",
      "typeVersion": 1,
      "position": [
        650,
        100
      ]
    },
    {
      "parameters": {
        "url": "https://gooshi.online/mobile-list",
        "responseFormat": "string"
      },
      "name": "Gooshi.online HTTP Request",
      "type": "n8n-nodes-base.httpRequest",
      "typeVersion": 1,
      "position": [
        450,
        300
      ]
    },
    {
      "parameters": {
        "functionCode": "const html = items[0].json.body;\nconst { JSDOM } = require('jsdom');\nconst dom = new JSDOM(html);\nconst document = dom.window.document;\nconst products = [];\ndocument.querySelectorAll('.product-card').forEach(prod => {\n  const name = prod.querySelector('.card-title')?.textContent.trim() || '';\n  const price = prod.querySelector('.card-price')?.textContent.trim() || '';\n  const colors = Array.from(prod.querySelectorAll('.card-colors span')).map(c => c.textContent.trim()).join(', ');\n  const link = prod.querySelector('a')?.href || '';\n  products.push({ name, price, colors, link });\n});\nreturn products.map(p => ({ json: p }));"
      },
      "name": "Scrape Gooshi.online",
      "type": "n8n-nodes-base.function",
      "typeVersion": 1,
      "position": [
        650,
        300
      ]
    },
    {
      "parameters": {
        "url": "https://www.technolife.com/mobile-list",
        "responseFormat": "string"
      },
      "name": "Technolife.com HTTP Request",
      "type": "n8n-nodes-base.httpRequest",
      "typeVersion": 1,
      "position": [
        450,
        500
      ]
    },
    {
      "parameters": {
        "functionCode": "const html = items[0].json.body;\nconst { JSDOM } = require('jsdom');\nconst dom = new JSDOM(html);\nconst document = dom.window.document;\nconst products = [];\ndocument.querySelectorAll('.product-card').forEach(prod => {\n  const name = prod.querySelector('.card-title')?.textContent.trim() || '';\n  const price = prod.querySelector('.card-price')?.textContent.trim() || '';\n  const colors = Array.from(prod.querySelectorAll('.card-colors span')).map(c => c.textContent.trim()).join(', ');\n  const link = prod.querySelector('a')?.href || '';\n  products.push({ name, price, colors, link });\n});\nreturn products.map(p => ({ json: p }));"
      },
      "name": "Scrape Technolife.com",
      "type": "n8n-nodes-base.function",
      "typeVersion": 1,
      "position": [
        650,
        500
      ]
    },
    {
      "parameters": {
        "mode": "append"
      },
      "name": "Merge Products",
      "type": "n8n-nodes-base.merge",
      "typeVersion": 1,
      "position": [
        850,
        300
      ]
    },
    {
      "parameters": {
        "options": {
          "fileName": "products.xlsx",
          "fileFormat": "xlsx"
        }
      },
      "name": "Create Excel",
      "type": "n8n-nodes-base.spreadsheetFile",
      "typeVersion": 1,
      "position": [
        1050,
        300
      ]
    },
    {
      "parameters": {
        "operation": "sendFile",
        "chatId": "@erphoneheydar",
        "file": "={{$node[\"Create Excel\"].binary.file}}",
        "caption": "\u062c\u062f\u0648\u0644 \u0645\u062d\u0635\u0648\u0644\u0627\u062a \u0627\u0645\u0631\u0648\u0632"
      },
      "name": "Send Excel to Telegram",
      "type": "n8n-nodes-base.telegram",
      "typeVersion": 1,
      "position": [
        1250,
        300
      ]
    }
  ],
  "connections": {
    "Cron Trigger": {
      "main": [
        [
          {
            "node": "Mobile140.com HTTP Request",
            "type": "main",
            "index": 0
          },
          {
            "node": "Gooshi.online HTTP Request",
            "type": "main",
            "index": 0
          },
          {
            "node": "Technolife.com HTTP Request",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Mobile140.com HTTP Request": {
      "main": [
        [
          {
            "node": "Scrape Mobile140.com",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Scrape Mobile140.com": {
      "main": [
        [
          {
            "node": "Merge Products",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Gooshi.online HTTP Request": {
      "main": [
        [
          {
            "node": "Scrape Gooshi.online",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Scrape Gooshi.online": {
      "main": [
        [
          {
            "node": "Merge Products",
            "type": "main",
            "index": 1
          }
        ]
      ]
    },
    "Technolife.com HTTP Request": {
      "main": [
        [
          {
            "node": "Scrape Technolife.com",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Scrape Technolife.com": {
      "main": [
        [
          {
            "node": "Merge Products",
            "type": "main",
            "index": 2
          }
        ]
      ]
    },
    "Merge Products": {
      "main": [
        [
          {
            "node": "Create Excel",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Create Excel": {
      "main": [
        [
          {
            "node": "Send Excel to Telegram",
            "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

Product Price Scraper to Telegram. Uses httpRequest, spreadsheetFile, telegram. Scheduled trigger; 10 nodes.

Source: https://gist.github.com/1erfanheydar1-rgb/6aea9e1d112bf02c1b929df4a800aa28 — original creator credit. Request a take-down →

More Slack & Telegram workflows → · Browse all categories →

Related workflows

Workflows that share integrations, category, or trigger type with this one. All free to copy and import.

Slack & Telegram

GNCA AI News Pipeline. Uses rssFeedRead, httpRequest, telegram, errorTrigger. Scheduled trigger; 29 nodes.

RSS Feed Read, HTTP Request, Telegram +1
Slack & Telegram

This workflow automates plant care reminders and records using Google Sheets, Telegram, and OpenWeather API.

Google Sheets, HTTP Request, Telegram
Slack & Telegram

Apollo Data Enrichment Using Company Id to automatically finds contacts for companies listed in your Google Sheet, enriches each person with emails and phone numbers via Apollo’s API, and writes verif

Google Sheets, HTTP Request, Error Trigger +1
Slack & Telegram

MindFrame Psychology - FREE Complete Workflow. Uses httpRequest, googleDrive, telegram. Scheduled trigger; 25 nodes.

HTTP Request, Google Drive, Telegram
Slack & Telegram

++Download the google sheet here++ and replace this with the googles sheet node: Google sheet , upload to google sheets and replace in the google sheets node. Scheduled trigger: Runs once a day at 8 A

Google Sheets, HTTP Request, Telegram