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.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Open provider docs ↗
On our probe schedule. Uptime charts appear after the first check lands.
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.
Not tracked yet. Shape-change history starts once this API joins our probe schedule.
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 (Unpublished).
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?
LatLng is catalogued but not yet on our probe schedule, so we don't publish a live status for it. Check the provider's own status page or docs for its current state.