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": "158",
"name": "Receive the weather information of any city",
"nodes": [
{
"name": "Webhook",
"type": "n8n-nodes-base.webhook",
"position": [
580,
340
],
"parameters": {
"path": "45690b6a-2b01-472d-8839-5e83a74858e5",
"options": {},
"responseData": "allEntries",
"responseMode": "lastNode"
},
"typeVersion": 1
},
{
"name": "OpenWeatherMap",
"type": "n8n-nodes-base.openWeatherMap",
"position": [
770,
340
],
"parameters": {
"cityName": "={{$node[\"Webhook\"].json[\"query\"][\"city\"]}}"
},
"credentials": {
"openWeatherMapApi": "<your credential>"
},
"typeVersion": 1
},
{
"name": "Set",
"type": "n8n-nodes-base.set",
"position": [
970,
340
],
"parameters": {
"values": {
"string": [
{
"name": "temp",
"value": "={{$node[\"OpenWeatherMap\"].json[\"main\"][\"temp\"]}}"
},
{
"name": "description",
"value": "={{$node[\"OpenWeatherMap\"].json[\"weather\"][0][\"description\"]}}"
}
]
},
"options": {},
"keepOnlySet": true
},
"typeVersion": 1
}
],
"active": false,
"settings": {},
"connections": {
"Webhook": {
"main": [
[
{
"node": "OpenWeatherMap",
"type": "main",
"index": 0
}
]
]
},
"OpenWeatherMap": {
"main": [
[
{
"node": "Set",
"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.
openWeatherMapApi
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Receive the weather information of any city. Uses openWeatherMap. Webhook trigger; 3 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.
Openweathermap. Uses openWeatherMap. Webhook trigger; 4 nodes.
Validate Seatable Webhooks with HMAC SHA256 Authentication. Uses respondToWebhook, crypto, noOp, stickyNote. Webhook trigger; 7 nodes.
Respondtowebhook Stickynote. Uses respondToWebhook, stickyNote. Webhook trigger; 7 nodes.