⚡ Only 300 spots remaining • Closes in 2d 14h 32m
Stay prepared. This workflow connects to the OpenWeatherMap API every morning at 7:00 AM, fetches the local forecast, and sends a brief summary via Twilio SMS. Great for planning your commute or outdoor activities.
This workflow is pre-configured and ready for deployment. Simply import the JSON template into your n8n instance and configure your credentials.
This is an exclusive blueprint. Copy the JSON below to use it.
PRO TIP
Always test your workflow in a development environment before pushing to production.
{
"nodes": [
{
"parameters": {
"hour": 7
},
"name": "Every Morning",
"type": "n8n-nodes-base.cron",
"typeVersion": 1,
"position": [
250,
300
]
},
{
"parameters": {
"url": "https://api.openweathermap.org/data/2.5/weather?q=London&appid=YOUR_API_KEY"
},
"name": "Get Weather",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 3,
"position": [
450,
300
]
},
{
"parameters": {
"from": "YOUR_TWILIO_NUMBER",
"to": "YOUR_PHONE_NUMBER",
"message": "={{'Good morning! The weather in ' + $node[\"Get Weather\"].json[\"name\"] + ' is ' + $node[\"Get Weather\"].json[\"weather\"][0][\"description\"]}}"
},
"name": "Send SMS",
"type": "n8n-nodes-base.twilio",
"typeVersion": 1,
"position": [
650,
300
]
}
],
"connections": {
"Every Morning": {
"main": [
[
{
"node": "Get Weather",
"type": "main",
"index": 0
}
]
]
},
"Get Weather": {
"main": [
[
{
"node": "Send SMS",
"type": "main",
"index": 0
}
]
]
}
}
}To use this, copy the JSON above and paste it directly onto your n8n canvas.
Join the elite marketers who have offloaded their entire backend to n8n. Get direct support and custom builds in our private forum.