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 →
{
"name": "ingesta-clima",
"nodes": [
{
"parameters": {},
"name": "Manual Trigger",
"type": "n8n-nodes-base.manualTrigger",
"typeVersion": 1,
"position": [
60,
300
]
},
{
"parameters": {
"method": "GET",
"url": "https://api.openweathermap.org/data/2.5/weather",
"queryParameters": {
"parameters": [
{
"name": "q",
"value": "Cali,CO"
},
{
"name": "units",
"value": "metric"
},
{
"name": "appid",
"value": "={{$env.OPENWEATHER_API_KEY}}"
}
]
}
},
"name": "Fetch Climate Data",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4.1,
"position": [
250,
300
]
},
{
"parameters": {
"method": "POST",
"url": "http://backend:3001/webhooks/climate",
"contentType": "application/json",
"jsonParameters": true,
"bodyParameters": {
"parameters": [
{
"name": "temperature",
"value": "={{$node[\"Fetch Climate Data\"].json.main.temp}}"
},
{
"name": "humidity",
"value": "={{$node[\"Fetch Climate Data\"].json.main.humidity}}"
},
{
"name": "precipitation",
"value": "={{$node[\"Fetch Climate Data\"].json.rain?.[\"1h\"] || 0}}"
},
{
"name": "windSpeed",
"value": "={{$node[\"Fetch Climate Data\"].json.wind?.speed || 0}}"
}
]
}
},
"name": "Send to Backend",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4.1,
"position": [
450,
300
]
}
],
"connections": {
"Manual Trigger": {
"main": [
[
{
"node": "Fetch Climate Data",
"branch": 0,
"type": "main",
"index": 0
}
]
]
},
"Fetch Climate Data": {
"main": [
[
{
"node": "Send to Backend",
"branch": 0,
"type": "main",
"index": 0
}
]
]
}
}
}
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
ingesta-clima. Uses httpRequest. Event-driven trigger; 3 nodes.
Source: https://github.com/Dalezzz/sistema_agricola/blob/99e668037216e2c14786b0d247a192ad7d8817e2/n8n-workflows/ingesta-clima.json — 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.
Our KB Tool - Confluence KB is crafted to seamlessly integrate into the IT Ops AI SlackBot Workflow, enhancing the IT support process by enabling sophisticated search and response capabilities via Sla
For developers and organizations that need to protect PDF files with the password.
twenty-sync. Uses executeWorkflowTrigger, httpRequest. Event-driven trigger; 6 nodes.
This workflow illustrates how to use Perplexity AI in your n8n workflow.
This workflow converts an HTML string into a polished PDF file using the powerful open-source Gotenberg service. It's designed to be a reusable utility in your automation stack. Receives Input: The wo