Takes a latitude and longitude and returns the nearest address, along with the surrounding place hierarchy: street, city, region, and country. You can request a coarser level (just the city or postcode) when you do not need a full street address.
You have a latitude and longitude and want the address, or which city or region it falls in.
Resolving a place name to coordinates (use the address-to-coordinates path).
~1 credits / lookup (up to 2)
Estimated; the actual charge depends on your input and is shown in the response.
Set these inside the intent when you run it.
Latitude in decimal degrees (-90 to 90).
Longitude in decimal degrees (-180 to 180).
How coarse the result should be. Options include street, city, postcode, state, or country. Defaults to the nearest building address.
The nearest address at the requested level of detail, plus the full place hierarchy from street up to country.
Run this sub-skill directly: pin it with operation and pass its inputs in the intent. (Omit operation and the Maps skill will route from your intent instead.)
curl -X POST "https://skill.askfaro.com/skills/maps/run" \
-H "Authorization: Bearer $FARO_TOKEN" \
-H "Content-Type: application/json" \
-d '{"intent":{"operation":"reverse_geocode","latitude":48.8584,"longitude":2.2945,"level":"city"}}'Example requests