Geocode Address
Overview
Geocodes an address to get latitude and longitude coordinates
Category: Scheduling
Use this action to geocode a single address to latitude and longitude coordinates. On geocoding failure (for example, no match) the action returns data: null with an errors array.
Request
| Parameter | Type | Required | Description | Example |
|---|---|---|---|---|
address |
string | Yes | The address to geocode | 123 Main St, Sydney NSW 2000 |
Response
This action’s output is available as $geocodeAddress in JSONata expressions. See Response format for the standard result.data / result.errors structure and error handling patterns.
| Field | Type | Description |
|---|---|---|
result.data.address |
string | The normalized address from the geocoder |
result.data.latitude |
number | Latitude coordinate |
result.data.longitude |
number | Longitude coordinate |
Example output:
{
"address": "123 Main St, Sydney NSW 2000",
"latitude": -33.8688,
"longitude": 151.2093
}
Feedback
Was this page helpful?