]> git.openstreetmap.org Git - nominatim.git/blob - docs/api/Lookup.md
Merge remote-tracking branch 'upstream/master'
[nominatim.git] / docs / api / Lookup.md
1 # Address lookup
2
3 The lookup API allows to query the address and other details of one or
4 multiple OSM objects like node, way or relation.
5
6 ## Parameters
7
8 The lookup API has the following format:
9
10 ```
11   https://nominatim.openstreetmap.org/lookup?osm_ids=[N|W|R]<value>,…,…,&<params>
12 ```
13
14 `osm_ids` is mandatory and must contain a comma-separated list of OSM ids each
15 prefixed with its type, one of node(N), way(W) or relation(R). Up to 50 ids
16 can be queried at the same time.
17
18 Additional optional parameters are explained below.
19
20 ### Output format
21
22 * `format=[html|xml|json|jsonv2|geojson|geocodejson]`
23
24 See [Place Output Formats](Output.md) for details on each format. (Default: xml)
25
26 * `json_callback=<string>`
27
28 Wrap JSON output in a callback function (JSONP) i.e. `<string>(<json>)`.
29 Only has an effect for JSON output formats.
30
31 ### Output details
32
33 * `addressdetails=[0|1]`
34
35 Include a breakdown of the address into elements. (Default: 0)
36
37
38 * `extratags=[0|1]`
39
40 Include additional information in the result if available,
41 e.g. wikipedia link, opening hours. (Default: 0)
42
43
44 * `namedetails=[0|1]`
45
46 Include a list of alternative names in the results. These may include
47 language variants, references, operator and brand. (Default: 0)
48
49
50 ### Language of results
51
52 * `accept-language=<browser language string>`
53
54 Preferred language order for showing search results, overrides the value
55 specified in the "Accept-Language" HTTP header.
56 Either use a standard RFC2616 accept-language string or a simple
57 comma-separated list of language codes.
58
59
60 ### Other
61
62 * `email=<valid email address>`
63
64 If you are making large numbers of request please include an appropriate email
65 address to identify your requests. See Nominatim's [Usage Policy](https://operations.osmfoundation.org/policies/nominatim/) for more details.
66
67 * `debug=[0|1]`
68
69 Output assorted developer debug information. Data on internals of Nominatim's
70 "Search Loop" logic, and SQL queries. The output is (rough) HTML format.
71 This overrides the specified machine readable format. (Default: 0)
72
73
74 ## Examples
75
76 ##### XML
77
78 [https://nominatim.openstreetmap.org/lookup?osm_ids=R146656,W104393803,N240109189](https://nominatim.openstreetmap.org/lookup?osm_ids=R146656,W104393803,N240109189)
79
80 ```xml
81   <lookupresults timestamp="Mon, 29 Jun 15 18:01:33 +0000" attribution="Data © OpenStreetMap contributors, ODbL 1.0. https://www.openstreetmap.org/copyright" querystring="R146656,W104393803,N240109189" polygon="false">
82     <place place_id="127761056" osm_type="relation" osm_id="146656" place_rank="16" lat="53.4791466" lon="-2.2447445" display_name="Manchester, Greater Manchester, North West England, England, United Kingdom" class="boundary" type="administrative" importance="0.704893333438333">
83       <city>Manchester</city>
84       <county>Greater Manchester</county>
85       <state_district>North West England</state_district>
86       <state>England</state>
87       <country>United Kingdom</country>
88       <country_code>gb</country_code>
89     </place>
90     <place place_id="77769745" osm_type="way" osm_id="104393803" place_rank="30" lat="52.5162024" lon="13.3777343363579" display_name="Brandenburg Gate, 1, Pariser Platz, Mitte, Berlin, 10117, Germany" class="tourism" type="attraction" importance="0.443472858361592">
91       <attraction>Brandenburg Gate</attraction>
92       <house_number>1</house_number>
93       <pedestrian>Pariser Platz</pedestrian>
94       <suburb>Mitte</suburb>
95       <city_district>Mitte</city_district>
96       <city>Berlin</city>
97       <state>Berlin</state>
98       <postcode>10117</postcode>
99       <country>Germany</country>
100       <country_code>de</country_code>
101     </place>
102     <place place_id="2570600569" osm_type="node" osm_id="240109189" place_rank="15" lat="52.5170365" lon="13.3888599" display_name="Berlin, Germany" class="place" type="city" importance="0.822149797630868">
103       <city>Berlin</city>
104       <state>Berlin</state>
105       <country>Germany</country>
106       <country_code>de</country_code>
107     </place>
108   </lookupresults>
109 ```
110
111 ##### JSON with extratags
112
113 [https://nominatim.openstreetmap.org/lookup?osm_ids=W50637691&format=json](https://nominatim.openstreetmap.org/lookup?osm_ids=W50637691&format=json)
114
115 ```json
116 [
117   {
118     "place_id": "84271358",
119     "licence": "Data © OpenStreetMap contributors, ODbL 1.0. https://osm.org/copyright",
120     "osm_type": "way",
121     "osm_id": "50637691",
122     "lat": "52.39955055",
123     "lon": "13.04806574678",
124     "display_name": "Brandenburger Tor, Brandenburger Straße, Nördliche Innenstadt, Innenstadt, Potsdam, Brandenburg, 14467, Germany",
125     "class": "historic",
126     "type": "city_gate",
127     "importance": "0.221233780277011",
128     "address": {
129       "address29": "Brandenburger Tor",
130       "pedestrian": "Brandenburger Straße",
131       "suburb": "Nördliche Innenstadt",
132       "city": "Potsdam",
133       "state": "Brandenburg",
134       "postcode": "14467",
135       "country": "Germany",
136       "country_code": "de"
137     },
138     "extratags": {
139       "image": "http://commons.wikimedia.org/wiki/File:Potsdam_brandenburger_tor.jpg",
140       "wikidata": "Q695045",
141       "wikipedia": "de:Brandenburger Tor (Potsdam)",
142       "wheelchair": "yes",
143       "description": "Kleines Brandenburger Tor in Potsdam"
144     }
145   }
146 ]
147 ```