---
title: "Reverse geocode a coordinate"
method: GET
path: "/api/v1/geocoding/reverse"
tags: ["Geocoding"]
---

# Reverse geocode a coordinate

`GET /api/v1/geocoding/reverse`

Convert a lat/lon coordinate into the nearest OpenStreetMap place at the requested `zoom` level (0 country, 18 building). Intended for one-shot lookups, not live autocomplete. Data is (C) OpenStreetMap contributors (ODbL 1.0).

## Query parameters

- `lat` number, required — Latitude in decimal degrees (WGS84).
- `lon` number, required — Longitude in decimal degrees (WGS84).
- `zoom` integer — Address-detail zoom level: 0 country, 3 continent, 5 state, 8 county, 10 city, 14 suburb, 16 major street, 17 minor street, 18 building.
- `addressdetails` boolean — Include the structured address breakdown on the result.

## Response `200`

Nearest OSM place at the requested zoom, (C) OpenStreetMap contributors (ODbL 1.0).

- EnvelopeNominatimReversePayload
  - `data` NominatimReversePayload, required — Response payload for `/api/v1/geocoding/reverse`.
    - `lat` number, required — Query latitude echoed from the request.
    - `lon` number, required — Query longitude echoed from the request.
    - `zoom` integer, required — Address-detail zoom level echoed from the request (0 country, 18 building).
    - `result` NominatimPlace — Single geocoded place returned by Nominatim. (C) OpenStreetMap contributors (ODbL 1.0).
      - `place_id` integer, nullable — Internal Nominatim place identifier. Stable within a single database snapshot but not across reindexes; prefer the `(osm_type, osm_id)` pair for long-term identity.
      - `osm_type` string, nullable — OSM element variant: `node`, `way`, or `relation`.
      - `osm_id` integer, nullable — Stable OpenStreetMap identifier within the `osm_type` namespace.
      - `lat` number, nullable — Representative point latitude in decimal degrees (WGS84).
      - `lon` number, nullable — Representative point longitude in decimal degrees (WGS84).
      - `display_name` string, nullable — Locale-dependent comma-separated human-readable place name.
      - `name` string, nullable — Primary name of the place in the requested language.
      - `category` string, nullable — OSM top-level classification (e.g. `boundary`, `place`, `amenity`).
      - `type` string, nullable — OSM sub-classification within the `category` (e.g. `administrative`, `city`).
      - `place_rank` integer, nullable — Nominatim rank 0-30, lower = more important (country=4, state=8, city=16, building=30).
      - `importance` number, nullable — Nominatim importance score 0.0-1.0 derived from Wikipedia link density and admin level.
      - `addresstype` string, nullable — Category label for the result (`city`, `town`, `road`, `building`, ...).
      - `boundingbox` number[], nullable — Bounding box `[minLat, maxLat, minLon, maxLon]` in decimal degrees (WGS84).
      - `address` NominatimAddress — Structured address breakdown returned when `addressdetails=1`. Field set is open-ended - Nominatim uses OSM address tagging keys, which vary by country (German `Hausnummer` vs English `house_number` etc.). This model declares the most common keys; extra keys pass through via Pydantic's default behaviour.
        - `house_number` string, nullable — House or building number from OSM `addr:housenumber`.
        - `road` string, nullable — Street name from OSM `addr:street` or the road `name` tag.
        - `neighbourhood` string, nullable — Neighbourhood label from OSM `place=neighbourhood`.
        - `suburb` string, nullable — Suburb or district label from OSM `place=suburb`.
        - `quarter` string, nullable — Quarter label from OSM `place=quarter`.
        - `borough` string, nullable — Borough or sub-municipal district label.
        - `city` string, nullable — City or locality name.
        - `town` string, nullable — Town name (used when no `city` level applies).
        - `village` string, nullable — Village name (used for rural settlements).
        - `municipality` string, nullable — Municipality name (administrative level).
        - `county` string, nullable — County or district name.
        - `state` string, nullable — State, province, or region name.
        - `state_district` string, nullable — State sub-district label.
        - `postcode` string, nullable — Postal code from OSM `addr:postcode`.
        - `country` string, nullable — Country name in the requested language.
        - `country_code` string, nullable — ISO 3166-1 alpha-2 country code, lowercase.
    - `attribution` string — ODbL 1.0 attribution required on every surface that displays this data.
  - `meta` SugraMeta, required — Metadata on a /api/v1/* response envelope built through `helpers.response.sugra_response`, which is how routes are expected to answer. A route that assembles its own `meta` dict carries only the keys it writes itself, so an optional field below can be absent because this response has nothing to report OR because that route does not build its envelope here - the two are not distinguishable from the outside (API-43).
    - `endpoint` string, required — Requested endpoint path.
    - `data_time` string, required — ISO 8601 timestamp the data on this response is stamped with. It is the source's own timestamp whenever the source supplied one this API could read; when it did not, this field falls back to the value of `response_time` and `data_age_days` is omitted, so the PRESENCE of that field is the signal to read - with the one exception named in its own description, a route that substitutes its own current time for a source timestamp it never received. Usually UTC (`Z`), but a source stating its own numeric offset keeps it (2026-04-16T14:30:00+09:00) rather than being converted a second time. For a source that publishes by period this is the period's START (see `period`) and for one that publishes by calendar day it is that day's midnight - in neither case a moment at which anything was observed or released.
    - `response_time` string, required — ISO 8601 UTC timestamp when this response was produced.
    - `provider` string, required — API name and version.
    - `data_age_days` number, nullable — Age of the data in days at the moment this response was produced, i.e. `response_time` minus `data_time`. Present ONLY when the timestamp this response is stamped with is a clock time that could be read as a real instant. It is ABSENT - never 0 - in every other case. Absent when no readable source timestamp was supplied, because `data_time` then repeats `response_time` and a zero age would assert that the data is current precisely where its true age is unknown. Absent when the source names a calendar day, a month, a quarter or a year (see `period`): the instant is then a boundary this API anchored at midnight, and time since a day or a quarter BEGAN is a different quantity from the age of the data - a daily series is out by up to a day, a quarterly one by up to a quarter. A midnight counts as such a boundary whichever zone it is stated in, and whether the source stated it or this API anchored it. The one case this field cannot see is a route that substitutes its own current time for a source timestamp it never received: the substituted value is a real, readable instant and is indistinguishable from one the source stated, so the age reads as roughly 0. The shared cache-and-fetch helper behind most routes stopped doing that (API-43), but the presence of this field is a statement about the timestamp the response carries, not a guarantee about the route that supplied it. Rounded to 0.001 day (86.4 seconds), so 0.0 is a real measured age anywhere within roughly +/-43 seconds and not a stand-in for unknown; a source stamping an instant in the future reports a negative value (-0.001 or less) rather than being clamped. Sources publish on very different cadences, so a non-zero age is normal, not an error. Preserve absence in client code: a generated client that materialises a missing optional number as its numeric default turns 'age unknown' back into 'age zero', which is the exact confusion this field exists to remove.
    - `source` string, nullable — Identifier of the primary upstream source used for this response.
    - `attribution` string, nullable — Human-readable attribution mandated by an upstream source (e.g. a securities regulator or self-regulatory organization). Present only on responses whose source requires the owner and source to be clearly identified. Do not remove or alter it when using the response.
    - `fallback_used` boolean, nullable — True when the primary source failed and a fallback produced the data.
    - `fallback_chain` string[], nullable — Ordered list of sources attempted, in the order they were tried.
    - `cached` boolean, nullable — True when this response was served from the internal cache.
    - `stale` boolean, nullable — True when the cached response was returned after the upstream rate-limited or errored. Clients can use this to detect degraded data.
    - `period` string, nullable — Unit of observation, when the source publishes by period rather than by instant. `data_time` carries the period's START instant so it stays machine-readable; this field preserves what that instant used to mean, which the conversion would otherwise erase. Present only for such sources, and only when the source hands the API the label itself - a client that converts the period to its start instant before building the envelope loses the label, though not the age exclusion, which is decided by the instant. Note that `data_age_days` is omitted whenever this is present, because an age measured from a period start is not a freshness figure.
    - `notes` string, nullable — Data-quality caveat about THIS response - how old the underlying report is, a chokepoint AIS lower-bound, or that a source-reported `data_time` could not be read and the response time is shown instead. Distinct from `attribution`, which is a licensing obligation. Multiple caveats are joined with ' | '. Present only when there is one.

## Other responses

- `401` — Missing or invalid `x-api-key` header. JSON body with a stable `code` distinguishing `missing_api_key` (no header sent) from `invalid_api_key` (header sent, key not accepted); any other 401 source carries the generic `unauthorized` with its detail as `reason`. Plus `hint`. `plan` is always null on 401 - an unauthenticated request has no plan; quota exhaustion is 429, not 401.
- `422` — Validation Error
- `429` — Daily rate limit exceeded. Check `X-RateLimit-Reset` for the next window.
- `503` — Upstream source is temporarily unavailable. Retry after a short delay.

## Changes

- **2026-09-01** `328d061c12ca` — 3 info
  - added the optional property `meta/data_age_days` to the response with the `200` status
  - added the optional property `meta/notes` to the response with the `200` status
  - added the optional property `meta/period` to the response with the `200` status
- **2026-08-08** `4c4530760ba1` — 12 info
  - added the optional property `code` to the response with the `401` status
  - added the optional property `code` to the response with the `429` status
  - added the optional property `code` to the response with the `503` status
  - added the optional property `hint` to the response with the `401` status
  - …8 more

[Change history](https://skmtc.dev/sugra/apis/sugra-api/changes/api/v1/geocoding/reverse/get.md)

---

[API](https://skmtc.dev/sugra/apis/sugra-api.md) · [All operations](https://skmtc.dev/sugra/apis/sugra-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/sugra/sugra-api/revisions/328d061c12ca/schema)
