Daily Weather to Telegram
Shared 4/29/2026
0 views
Visual Workflow
JSON Code
{
"name": "Daily Weather to Telegram",
"nodes": [
{
"id": "1",
"name": "Schedule Trigger",
"type": "n8n-nodes-base.scheduleTrigger",
"position": [
250,
300
],
"parameters": {
"rule": {
"interval": [
{
"field": "cronExpression",
"expression": "0 8 * * *"
}
]
}
}
},
{
"id": "2",
"name": "HTTP Request",
"type": "n8n-nodes-base.httpRequest",
"position": [
500,
300
],
"parameters": {
"url": "https://api.openweathermap.org/data/2.5/weather?q=Istanbul&appid=YOUR_API_KEY&units=metric&lang=tr",
"method": "GET"
}
},
{
"id": "3",
"name": "Telegram",
"type": "n8n-nodes-base.telegram",
"position": [
750,
300
],
"parameters": {
"text": "=Bugün İstanbul: {{$json.weather[0].description}}, {{Math.round($json.main.temp)}}°C",
"chatId": "YOUR_CHAT_ID",
"operation": "sendMessage"
}
}
],
"connections": {
"HTTP Request": {
"main": [
[
{
"node": "Telegram",
"type": "main",
"index": 0
}
]
]
},
"Schedule Trigger": {
"main": [
[
{
"node": "HTTP Request",
"type": "main",
"index": 0
}
]
]
}
}
}