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": "69",
"name": "Creating your first workflow",
"nodes": [
{
"name": "Cron",
"type": "n8n-nodes-base.cron",
"position": [
240,
250
],
"parameters": {
"triggerTimes": {
"item": [
{}
]
}
},
"typeVersion": 1
},
{
"name": "OpenWeatherMap",
"type": "n8n-nodes-base.openWeatherMap",
"position": [
450,
250
],
"parameters": {
"cityName": "berlin,de"
},
"credentials": {
"openWeatherMapApi": "<your credential>"
},
"typeVersion": 1
},
{
"name": "IF",
"type": "n8n-nodes-base.if",
"position": [
650,
250
],
"parameters": {
"conditions": {
"number": [
{
"value1": "={{$node[\"OpenWeatherMap\"].json[\"main\"][\"feels_like\"]}}",
"value2": 18
}
]
}
},
"typeVersion": 1
},
{
"name": "Twilio",
"type": "n8n-nodes-base.twilio",
"position": [
850,
150
],
"parameters": {
"to": "",
"from": "",
"message": "=Wear a sweater today, it is {{$node[\"OpenWeatherMap\"].json[\"main\"][\"feels_like\"]}}\u00b0C outside right now."
},
"credentials": {
"twilioApi": "<your credential>"
},
"typeVersion": 1
},
{
"name": "NoOp",
"type": "n8n-nodes-base.noOp",
"position": [
850,
350
],
"parameters": {},
"typeVersion": 1
}
],
"active": true,
"settings": {},
"connections": {
"IF": {
"main": [
[
{
"node": "Twilio",
"type": "main",
"index": 0
}
],
[
{
"node": "NoOp",
"type": "main",
"index": 0
}
]
]
},
"Cron": {
"main": [
[
{
"node": "OpenWeatherMap",
"type": "main",
"index": 0
}
]
]
},
"OpenWeatherMap": {
"main": [
[
{
"node": "IF",
"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.
openWeatherMapApitwilioApi
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Creating your first workflow. Uses openWeatherMap, twilio, noOp. Scheduled trigger; 5 nodes.
Source: https://github.com/Zie619/n8n-workflows — 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.
Execute a command that gives the hard disk memory used on the host machine. Uses executeCommand, twilio, noOp. Scheduled trigger; 5 nodes.
Get the price of BTC in EUR and send an SMS when the price is larger than EUR 9000. Uses coinGecko, twilio, noOp. Scheduled trigger; 5 nodes.
Send Daily Weather Updates Via A Message Using The Gotify Node. Uses openWeatherMap, gotify. Scheduled trigger; 3 nodes.
Send Daily Weather Updates Via A Push Notification Using Spontit. Uses openWeatherMap, spontit. Scheduled trigger; 3 nodes.
Send daily weather updates via a message in Line. Uses line, openWeatherMap. Scheduled trigger; 3 nodes.