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": "Uptime Ping Alert \u2014 sai che un sito \u00e8 gi\u00f9 prima dei tuoi utenti",
"nodes": [
{
"parameters": {
"rule": {
"interval": [
{
"field": "minutes",
"minutesInterval": 5
}
]
}
},
"id": "trigger-5m",
"name": "Ogni 5 minuti",
"type": "n8n-nodes-base.scheduleTrigger",
"typeVersion": 1.2,
"position": [
0,
0
]
},
{
"parameters": {
"url": "https://esempio.com",
"options": {
"timeout": 10000,
"ignoreHttpStatusErrors": true
}
},
"id": "ping",
"name": "Chiama il sito",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4.2,
"position": [
220,
0
]
},
{
"parameters": {
"jsCode": "// Passa in avanti SOLO se lo stato \u00e8 cambiato rispetto all'ultimo controllo (evita di\n// avvisarti ogni 5 minuti finch\u00e9 il sito resta gi\u00f9, o su ogni ping quando \u00e8 su).\nconst state = $getWorkflowStaticData('global');\nconst code = $input.first().json.statusCode || 0;\nconst giu = code === 0 || code >= 500;\nconst eraGiu = state.giu === true;\nif (giu === eraGiu) return [];\nstate.giu = giu;\nreturn [{ json: { giu, code, quando: new Date().toISOString() } }];"
},
"id": "filter-change",
"name": "Solo se cambia stato",
"type": "n8n-nodes-base.code",
"typeVersion": 2,
"position": [
440,
0
]
},
{
"parameters": {
"chatId": "={{ $env.TELEGRAM_CHAT_ID || 'INSERISCI_CHAT_ID' }}",
"text": "={{ $json.giu ? '\ud83d\udd34 Il sito \u00e8 DOWN (status ' + $json.code + ') \u2014 ' + $json.quando : '\ud83d\udfe2 Il sito \u00e8 tornato SU \u2014 ' + $json.quando }}",
"additionalFields": {}
},
"id": "notify-telegram",
"name": "Manda su Telegram",
"type": "n8n-nodes-base.telegram",
"typeVersion": 1.2,
"position": [
660,
0
],
"credentials": {
"telegramApi": {
"name": "<your credential>"
}
}
}
],
"connections": {
"Ogni 5 minuti": {
"main": [
[
{
"node": "Chiama il sito",
"type": "main",
"index": 0
}
]
]
},
"Chiama il sito": {
"main": [
[
{
"node": "Solo se cambia stato",
"type": "main",
"index": 0
}
]
]
},
"Solo se cambia stato": {
"main": [
[
{
"node": "Manda su Telegram",
"type": "main",
"index": 0
}
]
]
}
},
"active": false,
"settings": {
"executionOrder": "v1"
}
}
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
Uptime Ping Alert — sai che un sito è giù prima dei tuoi utenti. Uses httpRequest, telegram. Scheduled trigger; 4 nodes.
Source: https://github.com/DeusAcc/n8n-uptime-ping-alert/blob/main/uptime-ping-alert.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.
⚠️ Heads up: this is satire. The "Hell Yeah!" workflow is a parody of "automate your whole life with AI agents" grindset content. The API endpoints are fictional and the function nodes are illustrativ
This workflow tracks a configurable crypto watchlist using the CoinGecko API, sends Telegram alerts when price, % change, or volume-spike conditions are met (with optional RSI filtering), optionally l
This workflow continuously monitors the Meta Ads Library for new creatives from a specific competitor pages, logs them into Google Sheets, and sends a concise Telegram notification with the number of
This n8n workflow template is designed to provide real-time alerts on new cryptocurrency exchange listings and delistings. It caters especially to crypto traders, investors, and enthusiasts who want t
> n8n, Binance API, Google Sheets, Slack, Telegram, Jira & Email