3 Reverse geocoding generates an address from a coordinate given as
 
   4 latitude and longitude.
 
   8 The reverse geocoding API does not exactly compute the address for the
 
   9 coordinate it receives. It works by finding the closest suitable OSM object
 
  10 and returning its address information. This may occasionally lead to
 
  13 First of all, Nominatim only includes OSM objects in
 
  14 its index that are suitable for searching. Small, unnamed paths for example
 
  15 are missing from the database and can therefore not be used for reverse
 
  18 The other issue to be aware of is that the closest OSM object may not always
 
  19 have a similar enough address to the coordinate you were requesting. For
 
  20 example, in dense city areas it may belong to a completely different street.
 
  24 The main format of the reverse API is
 
  27 https://nominatim.openstreetmap.org/reverse?lat=<value>&lon=<value>&<params>
 
  30 where `lat` and `lon` are latitude and longitude of a coordinate in WGS84
 
  31 projection. The API returns exactly one result or an error when the coordinate
 
  32 is in an area with no OSM data coverage.
 
  36     The reverse API allows a lookup of object by coordinate. If you want
 
  37     to look up an object by ID, use the [Address Lookup API](Lookup.md) instead.
 
  39 !!! danger "Deprecation warning"
 
  40     The API can also be used with the URL
 
  41     `https://nominatim.openstreetmap.org/reverse.php`. This is now deprecated
 
  42     and will be removed in future versions.
 
  47 This section lists additional parameters to further influence the output.
 
  51 | Parameter | Value | Default |
 
  52 |-----------| ----- | ------- |
 
  53 | format    | one of: `xml`, `json`, `jsonv2`, `geojson`, `geocodejson` | `xml` |
 
  55 See [Place Output Formats](Output.md) for details on each format.
 
  58 | Parameter | Value | Default |
 
  59 |-----------| ----- | ------- |
 
  60 | json_callback | function name | _unset_ |
 
  62 When given, then JSON output will be wrapped in a callback function with
 
  63 the given name. See [JSONP](https://en.wikipedia.org/wiki/JSONP) for more
 
  66 Only has an effect for JSON output formats.
 
  71 | Parameter | Value | Default |
 
  72 |-----------| ----- | ------- |
 
  73 | addressdetails | 0 or 1 | 1 |
 
  75 When set to 1, include a breakdown of the address into elements.
 
  76 The exact content of the address breakdown depends on the output format.
 
  79     If you are interested in a stable classification of address categories
 
  80     (suburb, city, state, etc), have a look at the `geocodejson` format.
 
  81     All other formats return classifications according to OSM tagging.
 
  82     There is a much larger set of categories and they are not always consistent,
 
  83     which makes them very hard to work with.
 
  86 | Parameter | Value | Default |
 
  87 |-----------| ----- | ------- |
 
  88 | extratags | 0 or 1 | 0 |
 
  90 When set to 1, the response include any additional information in the result
 
  91 that is available in the database, e.g. wikipedia link, opening hours.
 
  94 | Parameter | Value | Default |
 
  95 |-----------| ----- | ------- |
 
  96 | namedetails | 0 or 1 | 0 |
 
  98 When set to 1, include a full list of names for the result. These may include
 
  99 language variants, older names, references and brand.
 
 102 ### Language of results
 
 104 | Parameter | Value | Default |
 
 105 |-----------| ----- | ------- |
 
 106 | accept-language | browser language string | content of "Accept-Language" HTTP header |
 
 108 Preferred language order for showing search results. This may either be
 
 109 a simple comma-separated list of language codes or have the same format
 
 110 as the ["Accept-Language" HTTP header](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Accept-Language).
 
 113     First-time users of Nominatim tend to be confused that they get different
 
 114     results when using Nominatim in the browser versus in a command-line tool
 
 115     like wget or curl. The command-line tools
 
 116     usually don't send any Accept-Language header, prompting Nominatim
 
 117     to show results in the local language. Browsers on the contrary always
 
 118     send the currently chosen browser language.
 
 121 ### Result restriction
 
 123 | Parameter | Value | Default |
 
 124 |-----------| ----- | ------- |
 
 127 Level of detail required for the address. This is a number that
 
 128 corresponds roughly to the zoom level used in XYZ tile sources in frameworks
 
 129 like Leaflet.js, Openlayers etc.
 
 130 In terms of address details the zoom levels are as follows:
 
 132  zoom | address detail
 
 133  -----|---------------
 
 139   13  | village / suburb
 
 143   17  | major and minor streets
 
 147 | Parameter | Value | Default |
 
 148 |-----------| ----- | ------- |
 
 149 | layer     | comma-separated list of: `address`, `poi`, `railway`, `natural`, `manmade` | _unset_ (no restriction) |
 
 151 The layer filter allows to select places by themes.
 
 153 The `address` layer contains all places that make up an address:
 
 154 address points with house numbers, streets, inhabited places (suburbs, villages,
 
 155 cities, states etc.) and administrative boundaries.
 
 157 The `poi` layer selects all point of interest. This includes classic points
 
 158 of interest like restaurants, shops, hotels but also less obvious features
 
 159 like recycling bins, guideposts or benches.
 
 161 The `railway` layer includes railway infrastructure like tracks.
 
 162 Note that in Nominatim's standard configuration, only very few railway
 
 163 features are imported into the database.
 
 165 The `natural` layer collects features like rivers, lakes and mountains while
 
 166 the `manmade` layer functions as a catch-all for features not covered by the
 
 172 | Parameter | Value  | Default |
 
 173 |-----------| -----  | ------- |
 
 174 | polygon_geojson | 0 or 1 | 0 |
 
 175 | polygon_kml     | 0 or 1 | 0 |
 
 176 | polygon_svg     | 0 or 1 | 0 |
 
 177 | polygon_text    | 0 or 1 | 0 |
 
 179 Add the full geometry of the place to the result output. Output formats
 
 180 in GeoJSON, KML, SVG or WKT are supported. Only one of these
 
 181 options can be used at a time.
 
 183 | Parameter | Value  | Default |
 
 184 |-----------| -----  | ------- |
 
 185 | polygon_threshold | floating-point number | 0.0 |
 
 187 When one of the polygon_* outputs is chosen, return a simplified version
 
 188 of the output geometry. The parameter describes the
 
 189 tolerance in degrees with which the geometry may differ from the original
 
 190 geometry. Topology is preserved in the geometry.
 
 195 | Parameter | Value  | Default |
 
 196 |-----------| -----  | ------- |
 
 197 | email     | valid email address | _unset_ |
 
 199 If you are making large numbers of request please include an appropriate email
 
 200 address to identify your requests. See Nominatim's
 
 201 [Usage Policy](https://operations.osmfoundation.org/policies/nominatim/) for more details.
 
 204 | Parameter | Value  | Default |
 
 205 |-----------| -----  | ------- |
 
 206 | debug     | 0 or 1 | 0       |
 
 208 Output assorted developer debug information. Data on internals of Nominatim's
 
 209 "search loop" logic, and SQL queries. The output is HTML format.
 
 210 This overrides the specified machine readable format.
 
 215 * [https://nominatim.openstreetmap.org/reverse?format=xml&lat=52.5487429714954&lon=-1.81602098644987&zoom=18&addressdetails=1](https://nominatim.openstreetmap.org/reverse?format=xml&lat=52.5487429714954&lon=-1.81602098644987&zoom=18&addressdetails=1)
 
 218   <reversegeocode timestamp="Fri, 06 Nov 09 16:33:54 +0000" querystring="...">
 
 219     <result place_id="1620612" osm_type="node" osm_id="452010817">
 
 220       135, Pilkington Avenue, Wylde Green, City of Birmingham, West Midlands (county), B72, United Kingdom
 
 223       <house_number>135</house_number>
 
 224       <road>Pilkington Avenue</road>
 
 225       <village>Wylde Green</village>
 
 226       <town>Sutton Coldfield</town>
 
 227       <city>City of Birmingham</city>
 
 228       <county>West Midlands (county)</county>
 
 229       <postcode>B72</postcode>
 
 230       <country>United Kingdom</country>
 
 231       <country_code>gb</country_code>
 
 236 ##### Example with `format=jsonv2`
 
 238 * [https://nominatim.openstreetmap.org/reverse?format=jsonv2&lat=-34.44076&lon=-58.70521](https://nominatim.openstreetmap.org/reverse?format=jsonv2&lat=-34.44076&lon=-58.70521)
 
 242   "place_id":"134140761",
 
 243   "licence":"Data © OpenStreetMap contributors, ODbL 1.0. https:\/\/www.openstreetmap.org\/copyright",
 
 245   "osm_id":"280940520",
 
 249   "category":"highway",
 
 252   "addresstype":"road",
 
 253   "display_name":"Autopista Pedro Eugenio Aramburu, El Triángulo, Partido de Malvinas Argentinas, Buenos Aires, 1.619, Argentina",
 
 254   "name":"Autopista Pedro Eugenio Aramburu",
 
 256     "road":"Autopista Pedro Eugenio Aramburu",
 
 257     "village":"El Triángulo",
 
 258     "state_district":"Partido de Malvinas Argentinas",
 
 259     "state":"Buenos Aires",
 
 261     "country":"Argentina",
 
 264   "boundingbox":["-34.44159","-34.4370994","-58.7086067","-58.7044712"]
 
 268 ##### Example with `format=geojson`
 
 270 * [https://nominatim.openstreetmap.org/reverse?format=geojson&lat=44.50155&lon=11.33989](https://nominatim.openstreetmap.org/reverse?format=geojson&lat=44.50155&lon=11.33989)
 
 274   "type": "FeatureCollection",
 
 275   "licence": "Data © OpenStreetMap contributors, ODbL 1.0. https://osm.org/copyright",
 
 280         "place_id": "18512203",
 
 282         "osm_id": "1704756187",
 
 287         "addresstype": "place",
 
 289         "display_name": "71, Via Guglielmo Marconi, Saragozza-Porto, Bologna, BO, Emilia-Romagna, 40122, Italy",
 
 291           "house_number": "71",
 
 292           "road": "Via Guglielmo Marconi",
 
 293           "suburb": "Saragozza-Porto",
 
 296           "state": "Emilia-Romagna",
 
 320 ##### Example with `format=geocodejson`
 
 322 [https://nominatim.openstreetmap.org/reverse?format=geocodejson&lat=60.2299&lon=11.1663](https://nominatim.openstreetmap.org/reverse?format=geocodejson&lat=60.2299&lon=11.1663)
 
 326   "type": "FeatureCollection",
 
 329     "attribution": "Data © OpenStreetMap contributors, ODbL 1.0. https://osm.org/copyright",
 
 331     "query": "60.229917843587,11.16630979382"
 
 337         "place_id": "42700574",
 
 339         "osm_id": "3110596255",
 
 342         "label": "1, Løvenbergvegen, Mogreina, Ullensaker, Akershus, 2054, Norway",
 
 345         "street": "Løvenbergvegen",
 
 347         "county": "Akershus",
 
 350           "level7": "Ullensaker",
 
 351           "level4": "Akershus",