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 Weather Notification",
"nodes": [
{
"parameters": {
"rule": {
"interval": [
{}
]
}
},
"type": "n8n-nodes-base.scheduleTrigger",
"typeVersion": 1.3,
"position": [
0,
0
],
"id": "0fdfcc9f-43ff-4503-beb2-4e937fcae584",
"name": "Schedule Trigger"
},
{
"parameters": {
"url": "http://api.weatherapi.com/v1/current.json?key=YOUR_WEATHER_API_KEY&q=YOUR_CITY_NAME&aqi=yes",
"options": {}
},
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4.4,
"position": [
208,
0
],
"id": "46e8a13b-e60a-48e3-a564-46eb8b5a19fb",
"name": "HTTP Request"
},
{
"parameters": {
"chatId": "YOUR_TELEGRAM_CHAT_ID",
"text": "=\ud83c\udf24\ufe0f Good Morning! \n\n\ud83d\udccd City: {{$json.location.name}}, {{ $json.location.region }}, {{ $json.location.country }}\n\ud83c\udf21\ufe0f Temperature: {{$json.current.temp_c}}\u00b0C or {{ $json.current.temp_f }}F\n\ud83e\udd75 Feels Like: {{$json.current.feelslike_c}}\u00b0C \n\u2601\ufe0f Condition: {{$json.current.condition.text}} \n\ud83d\udca7 Humidity: {{$json.current.humidity}}% \n\ud83c\udf2c\ufe0f Wind: {{$json.current.wind_kph}} km/h \n\nHave a great day! \ud83d\ude80",
"additionalFields": {}
},
"type": "n8n-nodes-base.telegram",
"typeVersion": 1.2,
"position": [
416,
0
],
"id": "4ddd4f07-53b6-47ed-b0d5-40fceec1e8df",
"name": "Send a text message",
"credentials": {
"telegramApi": {
"name": "<your credential>"
}
}
},
{
"parameters": {
"content": "- weather api: YOUR_WEATHER_API_KEY\n(https://www.weatherapi.com/my/)\n\n- Use to get data (replace city name you want weather data from): http://api.weatherapi.com/v1/current.json?key=YOUR_WEATHER_API_KEY&q=YOUR_CITY_NAME&aqi=yes\n\n- tg bot code: YOUR_TELEGRAM_BOT_NAME\n\n- Code from botfather:\nYOUR_TELEGRAM_BOT_TOKEN\n\n- Chatid: YOUR_TELEGRAM_CHAT_ID",
"height": 320,
"width": 368
},
"type": "n8n-nodes-base.stickyNote",
"position": [
-416,
-96
],
"typeVersion": 1,
"id": "9ec72514-ba3f-471e-b015-12a77faa349c",
"name": "Sticky Note"
}
],
"connections": {
"Schedule Trigger": {
"main": [
[
{
"node": "HTTP Request",
"type": "main",
"index": 0
}
]
]
},
"HTTP Request": {
"main": [
[
{
"node": "Send a text message",
"type": "main",
"index": 0
}
]
]
}
},
"settings": {
"executionOrder": "v1",
"binaryMode": "separate",
"availableInMCP": false
},
"staticData": null,
"triggerCount": 0,
"meta": {
"templateCredsSetupCompleted": true
}
}
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
Daily Weather Notification. Uses httpRequest, telegram. Scheduled trigger; 4 nodes.
Source: https://github.com/DuttPanchal04/n8n-ai-automation-portfolio/blob/main/daily-weather-notification/daily-weather-notification-workflow.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.
9AM IST AI Daily Digest (Arxiv + GitHub + News). Uses httpRequest, llm, telegram. Scheduled trigger; 6 nodes.
This workflow posts a poem translated into English every day in a Telegram chat.
Get daily poems in Telegram. Uses telegram, httpRequest, lingvaNex. Scheduled trigger; 4 nodes.