LatLng

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

🗺 Geo & MapsUNMONITORED
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.

HOW IT'S SCORED ⓘ
Status badge · for your READMEshipapis health badge: — · unmonitored
ON PROBE SCHEDULE

We probe a documented GET and expect 2xx JSON — full uptime and health score. Open provider docs ↗

Uptime historystarts after first probe

On our probe schedule. Uptime charts appear after the first check lands.

Example responsefrom provider docs — not verified by us
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 · 6On scheduleFULL DOCS ↗
On schedule — GET /api?q=Seattle,WA awaits first probe
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

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.