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 →
{
"name": "Status Sites",
"nodes": [
{
"parameters": {
"triggerTimes": {
"item": [
{
"mode": "everyMinute"
}
]
}
},
"name": "Cron",
"type": "n8n-nodes-base.cron",
"typeVersion": 1,
"position": [
200,
-320
],
"id": "8d7c6b4a-1593-4668-9c6d-fe82362eba97"
},
{
"parameters": {
"filePath": "={{ $json.arquivo_links }}",
"dataPropertyName": "links"
},
"name": "Read File",
"type": "n8n-nodes-base.readBinaryFile",
"typeVersion": 1,
"position": [
540,
-320
],
"id": "79817c93-d6b9-4ba2-a427-b8b47de07996",
"notesInFlow": false,
"onError": "continueErrorOutput"
},
{
"parameters": {
"functionCode": "const data = Buffer.from(items[0].binary.links.data, 'base64').toString('utf8');\nconst lines = data.split(/\\r?\\n/).filter(line => line.trim() !== '');\nreturn lines.map(url => ({ json: { url } }));"
},
"name": "Parse URLs",
"type": "n8n-nodes-base.function",
"typeVersion": 1,
"position": [
740,
-320
],
"id": "cea3cfff-3d26-46d5-9368-dcee40cd0a7e",
"alwaysOutputData": false
},
{
"parameters": {
"url": "={{$json[\"url\"]}}",
"responseFormat": "string",
"options": {
"fullResponse": true
}
},
"name": "HTTP Request",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 1,
"position": [
940,
-320
],
"id": "300da611-c8d7-4bb2-b7f2-7eeb746e3656",
"onError": "continueErrorOutput"
},
{
"parameters": {
"conditions": {
"number": [
{
"value1": "={{$json[\"statusCode\"]}}",
"operation": "notEqual",
"value2": 200
}
]
}
},
"name": "Check Status",
"type": "n8n-nodes-base.if",
"typeVersion": 1,
"position": [
1200,
-300
],
"id": "528e5a39-74ba-4517-9d92-6f5169692d6e"
},
{
"parameters": {
"chatId": "={{ $('Config').item.json.telegram_chat_id }}",
"text": "=Alerta!\n\nO link {{$json[\"url\"]}} est\u00e1 fora do ar em {{$now.format(\"yyyy-MM-dd HH:mm:ss\")}}",
"additionalFields": {}
},
"name": "Send Telegram",
"type": "n8n-nodes-base.telegram",
"typeVersion": 1,
"position": [
1420,
-420
],
"id": "591e0d36-e903-43c7-9ba5-85f8ef5af807",
"credentials": {
"telegramApi": {
"name": "<your credential>"
}
}
},
{
"parameters": {
"assignments": {
"assignments": [
{
"id": "ae36d2c0-95d3-4800-a138-149783e1ddd8",
"name": "arquivo_links",
"value": "/home/data/meus-links.txt",
"type": "string"
},
{
"id": "b9e28816-e720-4e8a-8867-ba236b7dfda5",
"name": "telegram_chat_id",
"value": "924597378",
"type": "string"
}
]
},
"options": {}
},
"type": "n8n-nodes-base.set",
"typeVersion": 3.4,
"position": [
360,
-320
],
"id": "7f614d05-5a42-4790-b1b2-fb8e15629ce2",
"name": "Config"
},
{
"parameters": {
"chatId": "={{ $node[\"Config\"].parameter.assignments.assignments[1]['value'] }}",
"text": "=Alerta!\n\nN\u00e3o foi poss\u00edvel acessar o arquivo com a lista de URLs.",
"additionalFields": {}
},
"name": "Send Telegram 2",
"type": "n8n-nodes-base.telegram",
"typeVersion": 1,
"position": [
740,
-120
],
"id": "5a9bf336-07f9-457e-b278-7860f93e874b",
"credentials": {
"telegramApi": {
"name": "<your credential>"
}
}
}
],
"connections": {
"Cron": {
"main": [
[
{
"node": "Config",
"type": "main",
"index": 0
}
]
]
},
"Read File": {
"main": [
[
{
"node": "Parse URLs",
"type": "main",
"index": 0
}
],
[
{
"node": "Send Telegram 2",
"type": "main",
"index": 0
}
]
]
},
"Parse URLs": {
"main": [
[
{
"node": "HTTP Request",
"type": "main",
"index": 0
}
]
]
},
"HTTP Request": {
"main": [
[],
[
{
"node": "Check Status",
"type": "main",
"index": 0
}
]
]
},
"Check Status": {
"main": [
[
{
"node": "Send Telegram",
"type": "main",
"index": 0
}
],
[]
]
},
"Config": {
"main": [
[
{
"node": "Read File",
"type": "main",
"index": 0
}
]
]
}
},
"active": false,
"settings": {
"executionOrder": "v1"
},
"versionId": "f157d003-c22e-43ae-8b55-2b64093ce969",
"meta": {
"templateCredsSetupCompleted": true
},
"id": "YLN6J3UuOrKNnsZ8",
"tags": []
}
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.
telegramApi
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Status Sites. Uses readBinaryFile, httpRequest, telegram. Scheduled trigger; 8 nodes.
Source: https://github.com/gabrielfroes/n8n-status-sites/blob/69dc3120a7a1897f2b2f8eaf80af8c7d1c14aeae/workflows/check-links-telegram.json — original creator credit. Request a take-down →
Related workflows
Workflows that share integrations, category, or trigger type with this one. All free to copy and import.
PsyCardv2. Uses executeCommand, telegram, readBinaryFile, googleDrive. Webhook trigger; 41 nodes.
. Uses googleSheets, telegram, httpRequest, wise. Scheduled trigger; 36 nodes.
GNCA AI News Pipeline. Uses rssFeedRead, httpRequest, telegram, errorTrigger. Scheduled trigger; 31 nodes.
GNCA AI News Pipeline. Uses rssFeedRead, httpRequest, telegram, errorTrigger. Scheduled trigger; 29 nodes.
This workflow automates plant care reminders and records using Google Sheets, Telegram, and OpenWeather API.