LatLng
LatLng — Geocoding, reverse geocoding, places, and static maps
LatLng exposes geocoding, reverse geocoding, places, and static maps We verified a keyless GET endpoint returning JSON (Geocoding). Check the provider docs for rate limits and terms before production use.
GET https://api.latlng.work/api?q=Seattle,WA
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {
"osm_type": "R",
"osm_id": 237385,
"osm_key": "place",
"osm_value": "city",
"type": "city",
"name": "Seattle",
"county": "King",
"state": "Washington"
},
"geometry": {
"type": "Point",
"coordinates": [
-122.330062,
47.6038321
]
}
},
{
"type": "Feature",
"properties": {
"osm_type": "R",
"osm_id": 5282350,
"osm_key": "amenity",
"osm_value": "university",
"type": "house",
"name": "Seattle University",
"street": "Madison Court",
"district": "First Hill"
},
"geometry": {
"type": "Point",
"coordinates": [
-122.3187983,
47.6095043
]
}
}
]
}curl "https://api.latlng.work/api?q=Seattle,WA"const res = await fetch("https://api.latlng.work/api?q=Seattle,WA");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://api.latlng.work/api?q=Seattle,WA")
print(res.json())/api?q=Seattle,WAPROBEDLatLng — Geocoding, reverse geocoding, places, and static maps
/api?limit=5Api — documented GET route.
/api?page=1Api — documented GET route.
/reverse?lat=47.6062&lon=-122.3321Geospatial query by coordinates.
/v1/places/nearby?lat=47.6062&lon=-122.3321&radius=1000&limit=5Geospatial query by coordinates.
/v1/places/search?q=Starbucks&lat=47.60&lon=-122.33&limit=5Search by query parameters.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
LatLng: common questions
Is LatLng free to use?
Yes — LatLng is a free geo & maps API. Free tier: Free — limits not published. Whether the free tier allows commercial use is unclear — check the provider docs.
Does LatLng need an API key?
No — LatLng needs no API key or signup. You can call it straight away; rate limits still apply (60 req/window · 59 remaining).
Can I call LatLng from the browser?
Yes — LatLng returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.
Is LatLng up right now?
As of our last scheduled check, LatLng is healthy with 100% uptime over 90 days and a 855 ms median response. We re-probe it every sweep — the status badge and uptime chart above always show the latest.