What's at this location?
Given a coordinate, return the address or place label. Useful for labelling pins and incident reports.
GET /v1/geocoding/reverseThe problem this solves.
When the user clicks a map, your app needs a label, not just a lat/lon. reverse_geocode returns the closest address or place name with structured components, ready to display in a tooltip, incident report, or pin annotation.
What comes back in the response.
- Closest address or place label for a coordinate.
- Structured address components on the result.
- Distance and bearing from the input point on each result.
- Filter by place_types to ask for 'nearest street' vs 'enclosing locality'.
- Standard GET + query params. Multilingual labels supported.
Call it from your backend.
Predictable HTTP. JSON in, JSON out. One auth header. Use it from any backend, edge function, or script.
curl "https://api.footstep.ai/v1/geocoding/reverse" \
-H "x-api-key: sk_live_your_key_here"Related capabilities.
geocodeTurn an address, landmark, or place name into coordinates. Returns ranked candidates with confidence scores.
search_placesPoints of interest near a location, by category or by venue name. Sorted by distance.
parse_addressFree-text in, structured out. Fixes typos, expands abbreviations, infers missing fields, and scores confidence.
Ready to call it?
£5 free credit on signup. One auth header, every major runtime.