LatLng

LatLng — Geocoding, reverse geocoding, places, and static maps

🗺 Geo & MapsHEALTHYchecked 11h ago
AUTH NONECORS AGENT HTTPS COMMERCIAL ?

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.

89HOW IT'S SCORED ⓘ
Status badge · for your READMEshipapis health badge: 89 · healthy
Uptime history
100%90 days
100%30 days
855P50 · ms
2171P95 · ms
operationalpartialdownno data
Response time · last 48 checks
Fastest 369 ms, slowest 1516 ms, most recent 412 ms.
Live response samplecaptured by our last successful check
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
        ]
      }
    }
  ]
}
Call itcurl · fetch · python
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())
Endpoints · 6HealthyFULL DOCS ↗
Monitored path responding — GET /api?q=Seattle,WA855 mschecked 11h ago
GET/api?q=Seattle,WAPROBED

LatLng — Geocoding, reverse geocoding, places, and static maps

GET/api?limit=5

Api — documented GET route.

GET/api?page=1

Api — documented GET route.

GET/reverse?lat=47.6062&lon=-122.3321

Geospatial query by coordinates.

GET/v1/places/nearby?lat=47.6062&lon=-122.3321&radius=1000&limit=5

Geospatial query by coordinates.

GET/v1/places/search?q=Starbucks&lat=47.60&lon=-122.33&limit=5

Search by query parameters.

Machine-readable spec

We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.

Response-shape history

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.