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": "82",
"name": "Send daily weather updates via a push notification using the Pushcut node",
"nodes": [
{
"name": "Pushcut",
"type": "n8n-nodes-base.pushcut",
"position": [
1050,
420
],
"parameters": {
"additionalFields": {
"text": "=Hey! The temperature outside is {{$node[\"OpenWeatherMap\"].json[\"main\"][\"temp\"]}}\u00b0C.",
"title": "Today's Weather Update"
},
"notificationName": "n8n"
},
"credentials": {
"pushcutApi": "<your credential>"
},
"typeVersion": 1
},
{
"name": "OpenWeatherMap",
"type": "n8n-nodes-base.openWeatherMap",
"position": [
850,
420
],
"parameters": {
"cityName": "berlin"
},
"credentials": {
"openWeatherMapApi": "<your credential>"
},
"typeVersion": 1
},
{
"name": "Cron",
"type": "n8n-nodes-base.cron",
"position": [
650,
420
],
"parameters": {
"triggerTimes": {
"item": [
{
"hour": 9
}
]
}
},
"typeVersion": 1
}
],
"active": false,
"settings": {},
"connections": {
"Cron": {
"main": [
[
{
"node": "OpenWeatherMap",
"type": "main",
"index": 0
}
]
]
},
"OpenWeatherMap": {
"main": [
[
{
"node": "Pushcut",
"type": "main",
"index": 0
}
]
]
}
}
}
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.
openWeatherMapApipushcutApi
About this workflow
Send daily weather updates via a push notification using the Pushcut node. Uses pushcut, openWeatherMap. Scheduled trigger; 3 nodes.
Source: https://github.com/Zie619/n8n-workflows — original creator credit. Request a take-down →