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 →
{
"id": "steinheim-w01-daily",
"name": "W01 \u2014 Daily content generation",
"nodes": [
{
"parameters": {
"rule": {
"interval": [
{
"field": "cronExpression",
"expression": "0 9 * * *"
}
]
}
},
"id": "w01-cron",
"name": "09:00 Cairo",
"type": "n8n-nodes-base.scheduleTrigger",
"typeVersion": 1.2,
"position": [
-200,
0
]
},
{
"parameters": {
"method": "POST",
"url": "__APP_URL__/api/public/automation/generate-today",
"authentication": "genericCredentialType",
"genericAuthType": "httpHeaderAuth",
"sendHeaders": true,
"headerParameters": {
"parameters": [
{
"name": "x-automation-timestamp",
"value": "={{ Date.now() }}"
},
{
"name": "x-automation-nonce",
"value": "={{ $execution.id }}-{{ Date.now() }}"
},
{
"name": "idempotency-key",
"value": "=daily-{{ $now.format('yyyy-MM-dd') }}"
}
]
},
"options": {
"timeout": 300000,
"response": {
"response": {
"neverError": true,
"fullResponse": true
}
}
}
},
"id": "w01-generate",
"name": "Generate today",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4.2,
"position": [
40,
0
],
"credentials": {
"httpHeaderAuth": {
"name": "<your credential>"
}
}
},
{
"parameters": {
"conditions": {
"options": {
"caseSensitive": true,
"version": 2
},
"conditions": [
{
"leftValue": "={{ $json.statusCode }}",
"rightValue": 200,
"operator": {
"type": "number",
"operation": "equals"
}
}
],
"combinator": "and"
}
},
"id": "w01-check",
"name": "Succeeded?",
"type": "n8n-nodes-base.if",
"typeVersion": 2.2,
"position": [
280,
0
]
},
{
"parameters": {
"chatId": "__TELEGRAM_CHAT_ID__",
"text": "=\ud83d\uddd3 <b>Content generated</b>\n\n<b>{{ $json.body.topic }}</b>\n{{ $json.body.contentType }} \u00b7 {{ $json.body.audience }}\n\nScore: {{ $json.body.score }}/100 ({{ $json.body.band }})\nUnverified claims: {{ $json.body.unverifiedClaims }}\n\n{{ $json.body.aiApproved ? '\ud83d\udfe1 Awaiting your approval \u2014 send /pending' : '\ud83d\udd34 Did not pass AI approval' }}",
"additionalFields": {
"parse_mode": "HTML"
}
},
"id": "w01-notify",
"name": "Notify Telegram",
"type": "n8n-nodes-base.telegram",
"typeVersion": 1.2,
"position": [
520,
-100
],
"credentials": {
"telegramApi": {
"name": "<your credential>"
}
}
},
{
"parameters": {
"chatId": "__TELEGRAM_CHAT_ID__",
"text": "=\ud83d\udd34 <b>Generation failed</b>\n\nHTTP {{ $json.statusCode }}\n{{ JSON.stringify($json.body).slice(0, 500) }}",
"additionalFields": {
"parse_mode": "HTML"
}
},
"id": "w01-alert",
"name": "Alert Telegram",
"type": "n8n-nodes-base.telegram",
"typeVersion": 1.2,
"position": [
520,
100
],
"credentials": {
"telegramApi": {
"name": "<your credential>"
}
}
}
],
"connections": {
"09:00 Cairo": {
"main": [
[
{
"node": "Generate today",
"type": "main",
"index": 0
}
]
]
},
"Generate today": {
"main": [
[
{
"node": "Succeeded?",
"type": "main",
"index": 0
}
]
]
},
"Succeeded?": {
"main": [
[
{
"node": "Notify Telegram",
"type": "main",
"index": 0
}
],
[
{
"node": "Alert Telegram",
"type": "main",
"index": 0
}
]
]
}
},
"settings": {
"executionOrder": "v1",
"timezone": "Africa/Cairo"
}
}
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
W01 — Daily content generation. Uses httpRequest, telegram. Scheduled trigger; 5 nodes.
Source: https://github.com/EslaM-X/steinheim-ai-launchpad/blob/main/infra/n8n/workflows/W01-daily-generation.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.
*Tags: Crypto, Currency Exchange, Alpha Vantage API, Google Sheets*
MAIA - Health Check. Uses noOp, telegram, scheduleTrigger, googleSheets. Scheduled trigger; 7 nodes.
MAIA - Health Check. Uses telegram, googleSheets, httpRequest. Scheduled trigger; 7 nodes.
9AM IST AI Daily Digest (Arxiv + GitHub + News). Uses httpRequest, llm, telegram. Scheduled trigger; 6 nodes.
Yard Stats: Daily Report. Uses httpRequest, emailSend, telegram. Scheduled trigger; 5 nodes.