Skip to content

Geo Auto Complete

In this Tutorials you can see how to use geo auto complete. The GeoAutoCompletion (GAC) provides a list of resources identified by the following URL autocompletion and suggestion for the German part of the IS24 Geohierarchy as well as for German zip codes and German streets. We also support Austria (but not with all types of search parameters as in Germany)

The full documentation of GAC you can find here

Example 1

Request

Methode: GET
Request-URL:

1
https://rest.sandbox-immobilienscout24.de/restapi/api/gis/v2.0/geoautocomplete/DEU?i=Berl&l=10&t=quarterOrTown

Response

JSON:

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
[
  {
    "entity":{
      "type":"quarterOrTown",
      "id":"1276003001046",
      "label":"Berlin - Mitte (Mitte)",
      "geopath":{
        "uri":"/de/berlin/berlin/mitte-mitte"
      }

    },
    "matches":[
      {
        "offset":0,
        "length":4
      }
    ]

  },
  {
    "entity":{
      "type":"quarterOrTown",
      "id":"1276003001011",
      "label":"Berlin - Charlottenburg (Charlottenburg)",
      "geopath":{
        "uri":"/de/berlin/berlin/charlottenburg-charlottenburg"
      }

    },
    "matches":[
      {
        "offset":0,
        "length":4
      }
    ]

  },
  {
    "entity":{
      "type":"quarterOrTown",
      "id":"1276003001034",
      "label":"Berlin - Kreuzberg (Kreuzberg)",
      "geopath":{
        "uri":"/de/berlin/berlin/kreuzberg-kreuzberg"
      }

    },
    "matches":[
      {
        "offset":0,
        "length":4
      }
    ]

  },
  {
    "entity":{
      "type":"quarterOrTown",
      "id":"1276003001054",
      "label":"Berlin - Prenzlauer Berg (Prenzlauer Berg)",
      "geopath":{
        "uri":"/de/berlin/berlin/prenzlauer-berg-prenzlauer-berg"
      }

    },
    "matches":[
      {
        "offset":0,
        "length":4
      }
    ]

  },
  {
    "entity":{
      "type":"quarterOrTown",
      "id":"1276003001061",
      "label":"Berlin - Schöneberg (Schöneberg)",
      "geopath":{
        "uri":"/de/berlin/berlin/schoeneberg-schoeneberg"
      }

    },
    "matches":[
      {
        "offset":0,
        "length":4
      }
    ]

  },
  {
    "entity":{
      "type":"quarterOrTown",
      "id":"1276003001017",
      "label":"Berlin - Friedrichshain (Friedrichshain)",
      "geopath":{
        "uri":"/de/berlin/berlin/friedrichshain-friedrichshain"
      }

    },
    "matches":[
      {
        "offset":0,
        "length":4
      }
    ]

  },
  {
    "entity":{
      "type":"quarterOrTown",
      "id":"1276003001076",
      "label":"Berlin - Wilmersdorf (Wilmersdorf)",
      "geopath":{
        "uri":"/de/berlin/berlin/wilmersdorf-wilmersdorf"
      }

    },
    "matches":[
      {
        "offset":0,
        "length":4
      }
    ]

  },
  {
    "entity":{
      "type":"quarterOrTown",
      "id":"1276003001048",
      "label":"Berlin - Neukölln (Neukölln)",
      "geopath":{
        "uri":"/de/berlin/berlin/neukoelln-neukoelln"
      }

    },
    "matches":[
      {
        "offset":0,
        "length":4
      }
    ]

  },
  {
    "entity":{
      "type":"quarterOrTown",
      "id":"1276003001068",
      "label":"Berlin - Tiergarten (Tiergarten)",
      "geopath":{
        "uri":"/de/berlin/berlin/tiergarten-tiergarten"
      }

    },
    "matches":[
      {
        "offset":0,
        "length":4
      }
    ]

  },
  {
    "entity":{
      "type":"quarterOrTown",
      "id":"1276003001065",
      "label":"Berlin - Steglitz (Steglitz)",
      "geopath":{
        "uri":"/de/berlin/berlin/steglitz-steglitz"
      }

    },
    "matches":[
      {
        "offset":0,
        "length":4
      }
    ]
  }
]

Example 2

Request

Methode: GET
Request-URL:

1
https://rest.sandbox-immobilienscout24.de/restapi/api/gis/v2.0/geoautocomplete/DEU?i=104&l=10&t=postcode

Response

JSON:

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
[
  {
    "entity":{
      "type":"postcode",
      "id":"P276-10405-BERLIN",
      "label":"10405 Berlin",
      "value":"10405",
      "geopath":{
        "uri":"/de/10405/berlin"
      }

    },
    "matches":[
      {
        "offset":0,
        "length":3
      }
    ]

  },
  {
    "entity":{
      "type":"postcode",
      "id":"P276-10407-BERLIN",
      "label":"10407 Berlin",
      "value":"10407",
      "geopath":{
        "uri":"/de/10407/berlin"
      }

    },
    "matches":[
      {
        "offset":0,
        "length":3
      }
    ]

  },
  {
    "entity":{
      "type":"postcode",
      "id":"P276-10409-BERLIN",
      "label":"10409 Berlin",
      "value":"10409",
      "geopath":{
        "uri":"/de/10409/berlin"
      }

    },
    "matches":[
      {
        "offset":0,
        "length":3
      }
    ]

  },
  {
    "entity":{
      "type":"postcode",
      "id":"P276-10435-BERLIN",
      "label":"10435 Berlin",
      "value":"10435",
      "geopath":{
        "uri":"/de/10435/berlin"
      }

    },
    "matches":[
      {
        "offset":0,
        "length":3
      }
    ]

  },
  {
    "entity":{
      "type":"postcode",
      "id":"P276-10437-BERLIN",
      "label":"10437 Berlin",
      "value":"10437",
      "geopath":{
        "uri":"/de/10437/berlin"
      }

    },
    "matches":[
      {
        "offset":0,
        "length":3
      }
    ]

  },
  {
    "entity":{
      "type":"postcode",
      "id":"P276-10439-BERLIN",
      "label":"10439 Berlin",
      "value":"10439",
      "geopath":{
        "uri":"/de/10439/berlin"
      }

    },
    "matches":[
      {
        "offset":0,
        "length":3
      }
    ]
  }
]