Geocode a free-text address
Resolves a free-text place description (city, postal code, or street address) to coordinates you can pass to /locations as lat/lon. The lookup runs server-side against Closient’s configured geocoder and is cached, so the visitor’s browser never contacts the geocoding provider directly. lat/lon are null when nothing matched — that is a successful 200, not an error. A 502 means the geocoding provider itself was unreachable.
Authorizations
Query Parameters
Free-text place description to resolve — a city, postal code, or street address.
1 - 200Response
OK
Latitude of the best match in decimal degrees, or null when nothing matched.
-90 <= x <= 90Longitude of the best match in decimal degrees, or null when nothing matched.
-180 <= x <= 180Human-readable name of the matched place. Empty string when nothing matched.