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": "Daily Bot Monitor",
"nodes": [
{
"parameters": {
"rule": {
"interval": [
{
"field": "cronExpression",
"expression": "0 9 * * *"
}
]
}
},
"id": "schedule-trigger-1",
"name": "Schedule Trigger",
"type": "n8n-nodes-base.scheduleTrigger",
"typeVersion": 1.1,
"position": [
250,
300
]
},
{
"parameters": {
"method": "GET",
"url": "YOUR_N8N_BASE_URL/api/v1/workflows",
"authentication": "genericCredentialType",
"genericAuthType": "httpHeaderAuth",
"options": {}
},
"id": "http-request-1",
"name": "Get All Workflows",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4.2,
"position": [
450,
300
],
"credentials": {
"httpHeaderAuth": {
"name": "<your credential>"
}
}
},
{
"parameters": {
"jsCode": "const workflows = $input.first().json.data || [];\nconst active = workflows.filter(w => w.active === true);\nconst inactive = workflows.filter(w => w.active === false);\nconst lines = [\n '*Daily Bot Monitor Report*',\n new Date().toISOString().split('T')[0],\n '',\n 'Active: ' + active.length,\n ...active.map(w => ' - ' + w.name),\n '',\n 'Inactive: ' + inactive.length,\n ...inactive.map(w => ' - ' + w.name),\n '',\n 'Total: ' + workflows.length\n];\nreturn [{ json: { report: lines.join('\\n') } }];"
},
"id": "code-filter-1",
"name": "Build Status Report",
"type": "n8n-nodes-base.code",
"typeVersion": 2,
"position": [
650,
300
]
},
{
"parameters": {
"chatId": "YOUR_TELEGRAM_CHAT_ID",
"text": "={{ $json.report }}",
"additionalFields": {
"parse_mode": "Markdown"
}
},
"id": "telegram-send-1",
"name": "Send Telegram Report",
"type": "n8n-nodes-base.telegram",
"typeVersion": 1.2,
"position": [
850,
300
],
"credentials": {
"telegramApi": {
"name": "<your credential>"
}
}
}
],
"connections": {
"Schedule Trigger": {
"main": [
[
{
"node": "Get All Workflows",
"type": "main",
"index": 0
}
]
]
},
"Get All Workflows": {
"main": [
[
{
"node": "Build Status Report",
"type": "main",
"index": 0
}
]
]
},
"Build Status Report": {
"main": [
[
{
"node": "Send Telegram Report",
"type": "main",
"index": 0
}
]
]
}
},
"settings": {
"executionOrder": "v1"
},
"meta": {
"templateCredsSetupCompleted": false
}
}
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.
httpHeaderAuthtelegramApi
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Daily Bot Monitor. Uses httpRequest, telegram. Scheduled trigger; 4 nodes.
Source: https://github.com/mike-prokhorov/n8n-automation-templates/blob/main/daily-bot-monitor/daily-bot-monitor.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.
Auto Hunt. Uses httpRequest, googleSheets, rssFeedRead, telegram. Scheduled trigger; 78 nodes.
Auto-Hunt. Uses httpRequest, googleSheets, rssFeedRead, telegram. Scheduled trigger; 78 nodes.
This workflow runs daily at 9 AM, uses Perplexity to compile vaping industry news, optionally captures article screenshots via Browserless, and generates a HeyGen avatar video from a template. It then
. Uses googleSheets, telegram, httpRequest, wise. Scheduled trigger; 36 nodes.
GNCA AI News Pipeline. Uses rssFeedRead, httpRequest, telegram, errorTrigger. Scheduled trigger; 31 nodes.