Skip to main content

Fetch Weather

Manual workflow with HTTP GET — fetches data from an external API using user-provided parameters

manual http get weather external-api

Download ZIP

What's Included

FieldValue
NameFetch Weather
TypeWorkflow
Triggermanual
Steps1
Inputs1

Full JSON

Click to expand
{
"description": "Manual workflow with HTTP GET — fetches data from an external API using user-provided parameters",
"tags": [
"manual",
"http",
"get",
"weather",
"external-api"
],
"document": {
"name": "Fetch Weather",
"enabled": true,
"log_level": "info",
"trigger": {
"type": "manual"
},
"workflowInput": [
{
"name": "city",
"description": "City name",
"schema": {
"type": "string",
"required": true
}
}
],
"steps": [
{
"condition": {
"expr": "true",
"onFailure": "throw",
"resultType": "any"
},
"action": {
"actionType": "actions/network/http/request/send",
"actions/network/http/request/send": {
"method": "GET",
"url": {
"expr": "\"https://wttr.in/\"+city+\"?format=j1\"",
"onFailure": "throw",
"resultType": "any"
},
"headers": [],
"returnBuffer": false,
"cache": false
}
}
}
],
"returnExpression": {
"expr": "step(0).data"
}
}
}

How to Import

  1. Download the ZIP file using the button above
  2. Navigate to Company Settings → Data Transfer in your AutoTalk dashboard
  3. Click Import and select the downloaded ZIP file
  4. Review the import summary and confirm
  5. All document IDs are automatically remapped — no manual ID editing needed