{"info":{"_postman_id":"d465c3dd-f8d7-4b1e-a3fe-12f196711be5","name":"suedtirol.live - Public API","description":"<html><head></head><body><p>The suedtirol.live API (SL API) is your gateway to South Tyrol's largest database of POI, tour/activity and event data. It powers the website of suedtirol.live and other connected sites and partners.</p>\n<h2 id=\"events-api\">Events API</h2>\n<p>Get access to all events of South Tyrol's and its surrounding regions. The SL Event API for example powers South Tyrol's largest and most popular event calendar kultur.bz.it and connected partners.</p>\n<h2 id=\"places-api\">Places API</h2>\n<p>Get access to our database of POIs including accommodations, sights, stores, gastronomy and many more. The SL Places API powers for example South Tyrol's #1 gastronomy guide restaurants.st as well as South Tyrol's shopping guide shopping.st.</p>\n<p><strong>Right now the Places API is available for accommodations and stores with their own endpoint. Other types of POIs will be available at a future point in time.</strong></p>\n<h2 id=\"tours-api\">Tours API</h2>\n<p>Get access to all tours in South Tyrol and make your way through the most beautiful landscapes. The SL API provides you all the information you need like the difficulty, duration and distance of the tour.</p>\n<h2 id=\"activities-api\">Activities API</h2>\n<p>Get access to all activities in South Tyrol and its surrounding regions. Whether they are organized by a local artisan or any other provider for leisure activities, find all activities that are taking place in a single call.</p>\n<h2 id=\"search-api\">Search API</h2>\n<p>The Search API is a powerful tool granting you access to the whole database with a lot of possibilities to filter your results.</p>\n<h2 id=\"geography-api\">Geography API</h2>\n<p>Use the geography calls to look up any data related to any entity. In the SL API every entity is bound to a unified set of city, region, county and country data.</p>\n<h2 id=\"how-to-apply-for-an-api-key\">How to apply for an API key</h2>\n<p>To be able to use our endpoints please don't hesitate to apply for an API key. Based on your wish you will get access to exactly the endpoints you need.<br>Send an email to</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>support@firstavenue.it\n\n</code></pre><p>to apply and get your key today.</p>\n<h2 id=\"endpoint\">Endpoint</h2>\n<p>The API is accessed by making HTTP requests to the endpoint</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://api.suedtirol.live\n\n</code></pre><h2 id=\"sandbox-test-system\">Sandbox (Test System)</h2>\n<p>The endpoint for the SL API sandbox is</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://api-sandbox.suedtirol.live\n\n</code></pre><p>In case you need access to the sandbox please contact us.</p>\n<p>Note: IDs (e.g. for types and properties) can be different on our Sandbox. You should always make sure to use the specific GET calls to request the IDs valid for the environment.</p>\n<h2 id=\"requests\">Requests</h2>\n<p>The SL API is built with common techniques based on HTTP requests and JSON responses. To have access to the API you need to have an API key. Please use the following structure for your HTTP header with every call to the SL API:</p>\n<ul>\n<li>Authorization: APIKEY {{api_key}}</li>\n<li>Accept: application/x.sl.v1+json</li>\n<li>Content-Type: application/json</li>\n<li>Accept-Language: {{language}}</li>\n</ul>\n<p>Possible languages:</p>\n<ul>\n<li>de_DE</li>\n<li>it_IT</li>\n<li>en_EN</li>\n</ul>\n<h2 id=\"responses\">Responses</h2>\n<p>Each response will be delivered in the same language as given in the request's HTTP header.</p>\n<p>The response objects are wrapped in a data tag. This means that the main information for the requested objects will always be within a data field.</p>\n<p>The response can either consist of a single object or a list of objects. In the latter case the data field will be an array which contains the result objects and the response will look as follows:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"data\": [\n        {\n            \"id\": 1234,\n            \"class\": 1,\n            \"title\": \"Example Place\",\n            ...\n        },\n        {\n            \"id\": 2345,\n            \"class\": 1,\n            \"title\": \"Another Place\",\n            ...\n        }\n    ],\n    ...\n}\n\n</code></pre>\n<p><strong>If not mentioned otherwise the following rules apply</strong></p>\n<ul>\n<li>String/Character values that are not filled return \"\"</li>\n<li>Int/Decimal/Date values that are not filled return null</li>\n<li>Data objects that are not filled and can contain max 1 object return null</li>\n<li>Data objects that are not filled and can contain n objects return an empty array</li>\n</ul>\n<p><strong>Errors will return with a message telling you what went wrong as well as an HTTP status code:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"status_code\": 401,\n    \"message\": \"Failed to authenticate because of bad authorization header.\",\n    \"code\": 401,\n    \"errors\": [\n        {\n            \"code\": 401,\n            \"title\": \"Failed to authenticate because of bad authorization header.\"\n        }\n    ]\n}\n\n</code></pre>\n<h2 id=\"paging-results\">Paging Results</h2>\n<p>If your response contains a list of objects the SL API will provide you a pagination field within the response:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"data\": [\n        ...\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"total\": 100,\n            \"count\": 25,\n            \"per_page\": 25,\n            \"current_page\": 2,\n            \"total_pages\": 4,\n            \"links\": {\n                \"previous\": \"https://api.suedtirol.live/public/places?page=1\",\n                \"next\": \"https://api.suedtirol.live/public/places?page=3\"\n            }\n        }\n    }\n}\n\n</code></pre>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>total</td>\n<td>Overall number of found objects</td>\n</tr>\n<tr>\n<td>count</td>\n<td>Number of objects on the current page.</td>\n</tr>\n<tr>\n<td>per_page</td>\n<td>Number of max. objects on each page</td>\n</tr>\n<tr>\n<td>current_page</td>\n<td>Current page</td>\n</tr>\n<tr>\n<td>total_pages</td>\n<td>Total number of pages</td>\n</tr>\n<tr>\n<td>links</td>\n<td>Links to previous and next page if available</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>For navigating through the results you can use the following query string parameters:</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Query String Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>page</td>\n<td>optional</td>\n<td>Set the page number of the result set (default: 0)</td>\n</tr>\n<tr>\n<td>size</td>\n<td>optional</td>\n<td>Set the number of results per page (default: 50)</td>\n</tr>\n</tbody>\n</table>\n</div><p>Examples:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://api.suedtirol.live/public/events?page=2&amp;size=15\n\n</code></pre><h2 id=\"caching\">Caching</h2>\n<p>Please</p>\n<ul>\n<li>use a sensible caching concept for your use cases</li>\n<li>avoid similar and repetitive calls and avoid ad-hoc requests</li>\n</ul>\n<p>In case you need to use ad-hoc requests against the API, please contact us.</p>\n<h2 id=\"need-help\">Need Help?</h2>\n<p>Please contact us if you have any questions. Send your requests and questions to</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>support@firstavenue.it\n\n</code></pre><p>We are glad to help you.</p>\n<hr>\n<h1 id=\"update-history\">Update History</h1>\n<p>20.8.2020 Added functionality to POST and PATCH \"Events API &gt; Import API\" routes, that maps old IDs automatically to new IDs for: organizer_id, place_id (inside dategroups), sponsor_id. This means an API client does not necessarily need to update its mappings. The API also returns information about new mappings in a new \"meta\" return object. Please refer to the Import API specification for more details.</p>\n<p>17.8.2020 Added new routes PATCH and DELETE for \"Events API &gt; Import API\"</p>\n<p>17.02.2020 Updated the section \"Introduction\". The POI API for stores and accommodations and their calls are now located in the section \"Places API\".</p>\n<p>17.10.2019 GET /events(/:id): Added \"origin\" field (premium only)</p>\n<p>15.01.2019 In GET /events(/:id) you will find two more deeplinks to use and either link out to suedtirol.live, kultur.bz.it or cultura.tn.it</p>\n<p>01.10.2018 We have introduced an API sandbox in case you require or want to implement against a test system. This should only be necessary in very specific cases. If you believe you need access to the sandbox please contact us.</p>\n<p>27.09.2018 Added \"is_certified\" field in GET /events/:id. This field indicates that an event was reviewed by the kultur.bz.it editorial team.</p>\n<p>21.09.2018 Based on your feedback we have introduced an alternative, eventually more easy representation of the events date structure. Refer to the GET /events/:id call for more information.</p>\n<p>21.06.2018 Added filter \"organizer\" in GET /events</p>\n<p>17.04.2018 \"GET /events/:id\": \"sale_link\" was moved to the \"translation\" object as it can be different in multiple languages</p>\n<p>09.03.2018 Updated section \"Export API - Response\" with empty value rules</p>\n<p>12.02.2018 Added FAQ section</p>\n<p>05.02.2018 Updated Export and Import API developer information for all calls</p>\n<p>21.01.2018 Added Import API XML example file</p>\n<p>14.11.2017, We have improved the EVENTS API subscription model. The API will now return only events that are selected as per your subscription type and detail.</p>\n<p>21.09.2017, The Events API can now be accessed via https. We recommend doing so as we will disable http access in the future.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Update History","slug":"update-history"}],"owner":"2567447","collectionId":"d465c3dd-f8d7-4b1e-a3fe-12f196711be5","publishedId":"SVYrrxkg","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2019-08-06T11:35:44.000Z"},"item":[{"name":"Activities API","item":[{"name":"/activities/:id","id":"06ec6c51-5f25-4858-9c84-b86e0c636f48","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"APIKEY {{api_key}}"},{"key":"Accept","value":"application/x.sl.v1+json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"{{language}}"}],"url":"{{url}}/public/activities/:id","description":"<p>Get a specific activity</p>\n","urlObject":{"path":["public","activities",":id"],"host":["{{url}}"],"query":[{"disabled":true,"key":"display","value":"perday"},{"disabled":true,"key":"include","value":"translations"}],"variable":[{"description":{"content":"<p>Id of the activity</p>\n","type":"text/plain"},"type":"string","value":"","key":"id"}]}},"response":[{"id":"38f0ff41-dd0c-420e-841e-98b367e3875e","name":"Get a single event","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"APIKEY {{api_key}}"},{"key":"Accept","value":"application/x.sl.v1+json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"{{language}}"}],"url":{"raw":"{{url}}/public/events/75300?include=translations","host":["{{url}}"],"path":["public","events","75300"],"query":[{"key":"include","value":"translations"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"7941","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sat, 03 Feb 2018 09:48:47 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"Apache/2.2.16","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 75300,\n        \"is_eventserie\": 0,\n        \"eventserie_id\": null,\n        \"free_entry\": 1,\n        \"price\": null,\n        \"age_from\": 0,\n        \"age_to\": 0,\n        \"created_at\": \"2017-10-22T18:26:48+02:00\",\n        \"updated_at\": \"2017-10-22T18:26:48+02:00\",\n        \"organizer\": {\n            \"data\": {\n                \"address\": {\n                    \"data\": null\n                },\n                \"logo\": {\n                    \"data\": null\n                },\n                \"contact\": {\n                    \"data\": null\n                },\n                \"translations\": {\n                    \"de\": {\n                        \"name\": \"Victoria Dejaco\"\n                    },\n                    \"it\": {\n                        \"name\": \"Victoria Dejaco\"\n                    }\n                }\n            }\n        },\n        \"translations\": {\n            \"de\": {\n                \"title\": \"Bunker Now 3, Tarnrasen - Catrin Bolt\",\n                \"teaser\": \"Der Bunker 15 an der Autobahnausfahrt Süd/Ss12 gegenüber der Eni Tankstelle wird von Künstlerin Catrin Bolt mit Tarnmustern umgestaltet.\",\n                \"deeplink\": \"https://www.kultur.bz.it/index.php?mode=event&evtID=75300\",\n                \"description\": \"In Südtirol befinden sich über 450 Bunker, militärische Anlagen und Wehrbauten aus dem Zweiten Weltkrieg, die Italien gegen Deutschland, den eigenen Alliierten, schützen sollten. Dieser Krieg hat sich, durch die schwerwiegenderen Konsequenzen für die lokale Bevölkerung, tiefer in die Geschichte der Region eingeschrieben als der erste. Verständlich, dass die Öffentlichkeit mit verhaltener Begeisterung und offener Ablehnung diesem Erbe gegenübersteht.<br />Doch diese Güter in Vergessenheit geraten zu lassen, sie auszulöschen oder aus den Augen zu wünschen läuft Gefahr Geschichte zu beschönigen. Wir sehen uns vor einem ähnlichen Dilemma wie die Vereinigten Staaten mit den Denkmälern der Konföderierten. Es muss Wege geben, die abscheulichsten Momente der Geschichte in Erinnerung zu behalten, ohne sie zu verleugnen oder zu glorifizieren. Das passiert durch Kontextualisierung, Bildung und kritische Auseinandersetzung um Bewusstsein zu schaffen.<br />Die Kuratorin Victoria Dejaco wurde vom Verein Kasematte Bunkerforum eingeladen, zu diesem Thema einen Beitrag zu leisten. Dafür wurde als Ort der Bunker 15 an der Autobahnausfahrt Süd in Bozen wurde für eine Intervention der Künstlerin Catrin Bolt bereits 2016 ausgewählt. Die Künstlerin realisierte bereits Mahnmale in Graz (2013) und Wien (2914) zur jüdischen Geschichte dieser Städte im Zweiten Weltkrieg und war prädestiniert für diesen Auftrag. 2015 gewann sie den Otto Maurer Preis, den renommiertesten Preis für junge Kunst in Österreich.<br />Der Bunker 15 an der Autobahnausfahrt Süd bei der SS12 wurde in den 90er Jahren im Zuge der MeBo Bauarbeiten unter einem Erdhügel begraben. Er ist Teil von einem Gesamtgefüge. Sein Zwillingsbau ist noch unversehrt und freistehend einige Hundert Meter weiter östlich. Passend zum Umstand des Bunkers, der nun verschüttet ist, hat sich Catrin Bolt in ihrem Projekt mit Verstecken und Camouflage befasst. Das gesamte Areal wird mit Camouflagemustern aus Rasenmarkierungsfarben gestaltet werden, um die Blicke der Vorbeifahrenden auf sich zu ziehen. Die militärische Funktion des Versteckens wird somit ins Gegenteil verkehrt. Geplant ist den Hügel drei Mal umzugestalten in den nächsten Monaten. Einmal mit dem üblichen militärischen Camouflagemuster, einmal mit dem Dazzle-Effekt, einem Muster, das die Form von Objekten irritierend dekonstruiert und ein Muster der Tech-Ära: dem \\\"Auspixeln\\\" wie es von Google Maps benutzt wird um (militärische) Territorien unerkennbar zu machen. Die Intervention wird das bedeutendste Werk von Land Art, das in Südtirol je umgesetzt wurde.<br />\",\n                \"sale_description\": \"\",\n                \"sale_link\": \"\"\n            },\n            \"it\": {\n                \"title\": \"Bunker Now 3, Tarnrasen - Catrin Bolt\",\n                \"teaser\": \"Der Bunker 15 an der Autobahnausfahrt Süd/Ss12 gegenüber der Eni Tankstelle wird von Künstlerin Catrin Bolt mit Tarnmustern umgestaltet.\",\n                \"deeplink\": \"https://www.cultura.bz.it/index.php?mode=event&evtID=75300\",\n                \"description\": \"In Südtirol befinden sich über 450 Bunker, militärische Anlagen und Wehrbauten aus dem Zweiten Weltkrieg, die Italien gegen Deutschland, den eigenen Alliierten, schützen sollten. Dieser Krieg hat sich, durch die schwerwiegenderen Konsequenzen für die lokale Bevölkerung, tiefer in die Geschichte der Region eingeschrieben als der erste. Verständlich, dass die Öffentlichkeit mit verhaltener Begeisterung und offener Ablehnung diesem Erbe gegenübersteht.<br />Doch diese Güter in Vergessenheit geraten zu lassen, sie auszulöschen oder aus den Augen zu wünschen läuft Gefahr Geschichte zu beschönigen. Wir sehen uns vor einem ähnlichen Dilemma wie die Vereinigten Staaten mit den Denkmälern der Konföderierten. Es muss Wege geben, die abscheulichsten Momente der Geschichte in Erinnerung zu behalten, ohne sie zu verleugnen oder zu glorifizieren. Das passiert durch Kontextualisierung, Bildung und kritische Auseinandersetzung um Bewusstsein zu schaffen.<br />Die Kuratorin Victoria Dejaco wurde vom Verein Kasematte Bunkerforum eingeladen, zu diesem Thema einen Beitrag zu leisten. Dafür wurde als Ort der Bunker 15 an der Autobahnausfahrt Süd in Bozen wurde für eine Intervention der Künstlerin Catrin Bolt bereits 2016 ausgewählt. Die Künstlerin realisierte bereits Mahnmale in Graz (2013) und Wien (2914) zur jüdischen Geschichte dieser Städte im Zweiten Weltkrieg und war prädestiniert für diesen Auftrag. 2015 gewann sie den Otto Maurer Preis, den renommiertesten Preis für junge Kunst in Österreich.<br />Der Bunker 15 an der Autobahnausfahrt Süd bei der SS12 wurde in den 90er Jahren im Zuge der MeBo Bauarbeiten unter einem Erdhügel begraben. Er ist Teil von einem Gesamtgefüge. Sein Zwillingsbau ist noch unversehrt und freistehend einige Hundert Meter weiter östlich. Passend zum Umstand des Bunkers, der nun verschüttet ist, hat sich Catrin Bolt in ihrem Projekt mit Verstecken und Camouflage befasst. Das gesamte Areal wird mit Camouflagemustern aus Rasenmarkierungsfarben gestaltet werden, um die Blicke der Vorbeifahrenden auf sich zu ziehen. Die militärische Funktion des Versteckens wird somit ins Gegenteil verkehrt. Geplant ist den Hügel drei Mal umzugestalten in den nächsten Monaten. Einmal mit dem üblichen militärischen Camouflagemuster, einmal mit dem Dazzle-Effekt, einem Muster, das die Form von Objekten irritierend dekonstruiert und ein Muster der Tech-Ära: dem \\\"Auspixeln\\\" wie es von Google Maps benutzt wird um (militärische) Territorien unerkennbar zu machen. Die Intervention wird das bedeutendste Werk von Land Art, das in Südtirol je umgesetzt wurde.<br />\",\n                \"sale_description\": \"\",\n                \"sale_link\": \"\"\n            }\n        },\n        \"deadline\": null,\n        \"sale_hotline\": \"\",\n        \"types\": {\n            \"data\": [\n                {\n                    \"id\": 24,\n                    \"translations\": {\n                        \"de\": {\n                            \"name\": \"Ausstellungen\"\n                        },\n                        \"it\": {\n                            \"name\": \"Mostre\"\n                        }\n                    }\n                }\n            ]\n        },\n        \"picture\": {\n            \"data\": {\n                \"file\": \"https://img.kultur.bz.it/img.php?id=75300&img=imgUafqLr.jpg\",\n                \"type\": \"image\",\n                \"copyright\": \"Google\",\n                \"provider\": \"kbz\",\n                \"public_id\": \"85337e62b32c62faa6ccaa61f3fe5367\",\n                \"url_alt\": {\n                    \"l\": \"https://img.kultur.bz.it/img.php?id=75300&img=imgUafqLr.jpg&size=1300x0x0\",\n                    \"m\": \"https://img.kultur.bz.it/img.php?id=75300&img=imgUafqLr.jpg&size=900x0x0\",\n                    \"s\": \"https://img.kultur.bz.it/img.php?id=75300&img=imgUafqLr.jpg&size=500x0x0\"\n                },\n                \"translations\": {\n                    \"de\": {\n                        \"title\": \"Lageplan Bunker\"\n                    },\n                    \"it\": {\n                        \"title\": \"Lageplan Bunker\"\n                    }\n                }\n            }\n        },\n        \"media\": {\n            \"data\": []\n        },\n        \"targetgroups\": {\n            \"data\": []\n        },\n        \"dategroups\": {\n            \"data\": [\n                {\n                    \"place_id\": 13644,\n                    \"translations\": {\n                        \"de\": {\n                            \"description\": \"Art in public space, accesso illimitato, freier Zutritt zu allen Tageszeiten\"\n                        },\n                        \"it\": {\n                            \"description\": \"Art in public space, accesso illimitato, freier Zutritt zu allen Tageszeiten\"\n                        }\n                    },\n                    \"times\": {\n                        \"data\": [\n                            {\n                                \"starttime\": \"00:00:00\",\n                                \"endtime\": null\n                            }\n                        ]\n                    },\n                    \"dates\": [\n                        \"2017-10-28\",\n                        \"2017-10-29\",\n                        \"2017-10-30\",\n                        \"2017-10-31\",\n                        \"2017-11-01\",\n                        \"2017-11-02\",\n                        \"2017-11-03\",\n                        \"2017-11-04\",\n                        \"2017-11-05\",\n                        \"2017-11-06\",\n                        \"2017-11-07\",\n                        \"2017-11-08\",\n                        \"2017-11-09\",\n                        \"2017-11-10\",\n                        \"2017-11-11\",\n                        \"2017-11-12\",\n                        \"2017-11-13\",\n                        \"2017-11-14\",\n                        \"2017-11-15\",\n                        \"2017-11-16\",\n                        \"2017-11-17\",\n                        \"2017-11-18\",\n                        \"2017-11-19\",\n                        \"2017-11-20\",\n                        \"2017-11-21\",\n                        \"2017-11-22\",\n                        \"2017-11-23\",\n                        \"2017-11-24\",\n                        \"2017-11-25\",\n                        \"2017-11-26\",\n                        \"2017-11-27\",\n                        \"2017-11-28\",\n                        \"2017-11-29\",\n                        \"2017-11-30\",\n                        \"2017-12-01\",\n                        \"2017-12-02\",\n                        \"2017-12-03\",\n                        \"2017-12-04\",\n                        \"2017-12-05\",\n                        \"2017-12-06\",\n                        \"2017-12-07\",\n                        \"2017-12-08\",\n                        \"2017-12-09\",\n                        \"2017-12-10\",\n                        \"2017-12-11\",\n                        \"2017-12-12\",\n                        \"2017-12-13\",\n                        \"2017-12-14\",\n                        \"2017-12-15\",\n                        \"2017-12-16\",\n                        \"2017-12-17\",\n                        \"2017-12-18\",\n                        \"2017-12-19\",\n                        \"2017-12-20\",\n                        \"2017-12-21\",\n                        \"2017-12-22\",\n                        \"2017-12-23\",\n                        \"2017-12-24\",\n                        \"2017-12-25\",\n                        \"2017-12-26\",\n                        \"2017-12-27\",\n                        \"2017-12-28\",\n                        \"2017-12-29\",\n                        \"2017-12-30\",\n                        \"2017-12-31\",\n                        \"2018-01-01\",\n                        \"2018-01-02\",\n                        \"2018-01-03\",\n                        \"2018-01-04\",\n                        \"2018-01-05\",\n                        \"2018-01-06\",\n                        \"2018-01-07\",\n                        \"2018-01-08\",\n                        \"2018-01-09\",\n                        \"2018-01-10\",\n                        \"2018-01-11\",\n                        \"2018-01-12\",\n                        \"2018-01-13\",\n                        \"2018-01-14\",\n                        \"2018-01-15\",\n                        \"2018-01-16\",\n                        \"2018-01-17\",\n                        \"2018-01-18\",\n                        \"2018-01-19\",\n                        \"2018-01-20\",\n                        \"2018-01-21\",\n                        \"2018-01-22\",\n                        \"2018-01-23\",\n                        \"2018-01-24\",\n                        \"2018-01-25\",\n                        \"2018-01-26\",\n                        \"2018-01-27\",\n                        \"2018-01-28\",\n                        \"2018-01-29\",\n                        \"2018-01-30\",\n                        \"2018-01-31\",\n                        \"2018-02-01\",\n                        \"2018-02-02\",\n                        \"2018-02-03\",\n                        \"2018-02-04\",\n                        \"2018-02-05\",\n                        \"2018-02-06\",\n                        \"2018-02-07\",\n                        \"2018-02-08\",\n                        \"2018-02-09\",\n                        \"2018-02-10\",\n                        \"2018-02-11\",\n                        \"2018-02-12\",\n                        \"2018-02-13\",\n                        \"2018-02-14\",\n                        \"2018-02-15\",\n                        \"2018-02-16\",\n                        \"2018-02-17\",\n                        \"2018-02-18\",\n                        \"2018-02-19\",\n                        \"2018-02-20\",\n                        \"2018-02-21\",\n                        \"2018-02-22\",\n                        \"2018-02-23\",\n                        \"2018-02-24\",\n                        \"2018-02-25\",\n                        \"2018-02-26\",\n                        \"2018-02-27\",\n                        \"2018-02-28\",\n                        \"2018-03-01\",\n                        \"2018-03-02\",\n                        \"2018-03-03\",\n                        \"2018-03-04\",\n                        \"2018-03-05\",\n                        \"2018-03-06\",\n                        \"2018-03-07\",\n                        \"2018-03-08\",\n                        \"2018-03-09\",\n                        \"2018-03-10\",\n                        \"2018-03-11\",\n                        \"2018-03-12\",\n                        \"2018-03-13\",\n                        \"2018-03-14\",\n                        \"2018-03-15\",\n                        \"2018-03-16\",\n                        \"2018-03-17\",\n                        \"2018-03-18\",\n                        \"2018-03-19\",\n                        \"2018-03-20\",\n                        \"2018-03-21\",\n                        \"2018-03-22\",\n                        \"2018-03-23\",\n                        \"2018-03-24\",\n                        \"2018-03-25\",\n                        \"2018-03-26\",\n                        \"2018-03-27\",\n                        \"2018-03-28\",\n                        \"2018-03-29\",\n                        \"2018-03-30\",\n                        \"2018-03-31\",\n                        \"2018-04-01\",\n                        \"2018-04-02\",\n                        \"2018-04-03\",\n                        \"2018-04-04\",\n                        \"2018-04-05\",\n                        \"2018-04-06\",\n                        \"2018-04-07\",\n                        \"2018-04-08\",\n                        \"2018-04-09\",\n                        \"2018-04-10\",\n                        \"2018-04-11\",\n                        \"2018-04-12\",\n                        \"2018-04-13\",\n                        \"2018-04-14\",\n                        \"2018-04-15\",\n                        \"2018-04-16\",\n                        \"2018-04-17\",\n                        \"2018-04-18\",\n                        \"2018-04-19\",\n                        \"2018-04-20\",\n                        \"2018-04-21\",\n                        \"2018-04-22\",\n                        \"2018-04-23\",\n                        \"2018-04-24\",\n                        \"2018-04-25\",\n                        \"2018-04-26\",\n                        \"2018-04-27\",\n                        \"2018-04-28\",\n                        \"2018-04-29\",\n                        \"2018-04-30\",\n                        \"2018-05-01\"\n                    ],\n                    \"price_categories\": {\n                        \"data\": []\n                    },\n                    \"place\": {\n                        \"data\": {\n                            \"id\": 13644,\n                            \"created_at\": \"2017-10-22T17:56:00+02:00\",\n                            \"updated_at\": \"2017-10-22T17:56:00+02:00\",\n                            \"translations\": {\n                                \"de\": {\n                                    \"name\": \"Johannes-Kepler-Straße, 1 Ecke SS12\",\n                                    \"teaser\": \"\",\n                                    \"openinghoursnotes\": \"\"\n                                },\n                                \"it\": {\n                                    \"name\": \"Johannes-Kepler-Straße, 1 Ecke SS12\",\n                                    \"teaser\": \"\",\n                                    \"openinghoursnotes\": \"\"\n                                }\n                            },\n                            \"address\": {\n                                \"data\": {\n                                    \"city_id\": 12,\n                                    \"city_zip\": \"39100\",\n                                    \"translations\": {\n                                        \"de\": {\n                                            \"city_name\": \"Bozen\",\n                                            \"street_name\": \"\"\n                                        },\n                                        \"it\": {\n                                            \"city_name\": \"Bolzano\",\n                                            \"street_name\": \"\"\n                                        }\n                                    },\n                                    \"street_number\": \"\",\n                                    \"latitude\": null,\n                                    \"longitude\": null\n                                }\n                            },\n                            \"contact\": {\n                                \"data\": null\n                            },\n                            \"types\": {\n                                \"data\": []\n                            }\n                        }\n                    }\n                },\n                {\n                    \"place_id\": 13644,\n                    \"translations\": [],\n                    \"times\": {\n                        \"data\": [\n                            {\n                                \"starttime\": \"15:00:00\",\n                                \"endtime\": \"18:00:00\"\n                            }\n                        ]\n                    },\n                    \"dates\": [\n                        \"2017-10-28\"\n                    ],\n                    \"price_categories\": {\n                        \"data\": []\n                    },\n                    \"place\": {\n                        \"data\": {\n                            \"id\": 13644,\n                            \"created_at\": \"2017-10-22T17:56:00+02:00\",\n                            \"updated_at\": \"2017-10-22T17:56:00+02:00\",\n                            \"translations\": {\n                                \"de\": {\n                                    \"name\": \"Johannes-Kepler-Straße, 1 Ecke SS12\",\n                                    \"teaser\": \"\",\n                                    \"openinghoursnotes\": \"\"\n                                },\n                                \"it\": {\n                                    \"name\": \"Johannes-Kepler-Straße, 1 Ecke SS12\",\n                                    \"teaser\": \"\",\n                                    \"openinghoursnotes\": \"\"\n                                }\n                            },\n                            \"address\": {\n                                \"data\": {\n                                    \"city_id\": 12,\n                                    \"city_zip\": \"39100\",\n                                    \"translations\": {\n                                        \"de\": {\n                                            \"city_name\": \"Bozen\",\n                                            \"street_name\": \"\"\n                                        },\n                                        \"it\": {\n                                            \"city_name\": \"Bolzano\",\n                                            \"street_name\": \"\"\n                                        }\n                                    },\n                                    \"street_number\": \"\",\n                                    \"latitude\": null,\n                                    \"longitude\": null\n                                }\n                            },\n                            \"contact\": {\n                                \"data\": null\n                            },\n                            \"types\": {\n                                \"data\": []\n                            }\n                        }\n                    }\n                }\n            ]\n        },\n        \"properties\": {\n            \"data\": [\n                {\n                    \"id\": 128,\n                    \"translations\": {\n                        \"de\": {\n                            \"name\": \"Begrüßung\"\n                        },\n                        \"it\": {\n                            \"name\": \"Saluto\"\n                        }\n                    },\n                    \"value\": \"Victoria Dejaco\"\n                },\n                {\n                    \"id\": 129,\n                    \"translations\": {\n                        \"de\": {\n                            \"name\": \"Einführung\"\n                        },\n                        \"it\": {\n                            \"name\": \"Introduzione\"\n                        }\n                    },\n                    \"value\": \"Victoria Dejaco\"\n                },\n                {\n                    \"id\": 104,\n                    \"translations\": {\n                        \"de\": {\n                            \"name\": \"Künstler\"\n                        },\n                        \"it\": {\n                            \"name\": \"Artisti\"\n                        }\n                    },\n                    \"value\": \"Catrin Bolt\"\n                }\n            ]\n        }\n    },\n    \"meta\": []\n}"}],"_postman_id":"06ec6c51-5f25-4858-9c84-b86e0c636f48"}],"id":"63423b66-0e3a-496a-97f0-0af59fb50260","_postman_id":"63423b66-0e3a-496a-97f0-0af59fb50260","description":""},{"name":"Alpinemaps API","item":[{"name":"/alpinemaps/:id","id":"14c9aa26-aab6-4b7b-8ab0-c9edad737afb","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true}},"request":{"method":"GET","header":[{"key":"Authorization","value":"APIKEY {{api_key}}"},{"key":"Accept","value":"application/x.sl.v1+json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"{{language}}"}],"url":"{{url}}/public/alpinemaps/:id","description":"<p>Get a specific Alpinemap</p>\n","urlObject":{"path":["public","alpinemaps",":id"],"host":["{{url}}"],"query":[{"disabled":true,"key":"display","value":"perday"},{"disabled":true,"key":"include","value":"translations,entities.entity"}],"variable":[{"id":"ae9882d9-585f-4bd9-a0f2-21a536755476","description":{"content":"<p>Id of the alpinemap</p>\n","type":"text/plain"},"type":"string","value":"","key":"id"}]}},"response":[],"_postman_id":"14c9aa26-aab6-4b7b-8ab0-c9edad737afb"}],"id":"161488d4-95ca-4e66-bdec-b7dba11d347d","_postman_id":"161488d4-95ca-4e66-bdec-b7dba11d347d","description":""},{"name":"Events API","item":[{"name":"Export API","item":[{"name":"/events","id":"b068be72-be7b-4241-9d11-a139897d5812","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"APIKEY {{api_key}}"},{"key":"Accept","value":"application/x.sl.v1+json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"{{language}}"}],"url":"{{url}}/public/events","description":"<p>Get a list of events.</p>\n<h2 id=\"request\">Request</h2>\n<p>Possible parameters:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>include</td>\n<td>Use <em>details</em> to include all details of each event already in this call (alternatively use /events/:id). Use <em>translations</em> to include all translations at once (<code>premium only</code>)</td>\n</tr>\n<tr>\n<td>filter</td>\n<td>Please refer to the table below</td>\n</tr>\n</tbody>\n</table>\n</div><p>Examples</p>\n<ul>\n<li>?page=2</li>\n<li>?include=translations</li>\n<li>?include=translations,details&amp;page=2</li>\n<li>?include=translations,details&amp;size=300</li>\n</ul>\n<p>List of possible filters:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Filter</th>\n<th>Input</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>filter[county]</td>\n<td>County ID (Please refer to the Geography API)</td>\n<td>Returns the events located in the specified county</td>\n</tr>\n<tr>\n<td>filter[region]</td>\n<td>Region ID (Please refer to the Geography API)</td>\n<td>Returns the events located in the specified region</td>\n</tr>\n<tr>\n<td>filter[city]</td>\n<td>City ID (Please refer to the Geography API)</td>\n<td>Returns the events located in the specified city</td>\n</tr>\n<tr>\n<td>filter[type]</td>\n<td>Type ID (Please refer to the GET /events/types call)</td>\n<td>Returns the events matching the specified type, e.g. concerts, theatre etc.</td>\n</tr>\n<tr>\n<td>filter[place]</td>\n<td>Place ID (Please refer to the POI API)</td>\n<td>Returns the events taking place at the given POI</td>\n</tr>\n<tr>\n<td>filter[organizer]</td>\n<td>Organizer ID (Please refer to the POI API)</td>\n<td>Returns the events organized by the given organizer</td>\n</tr>\n<tr>\n<td>filter[datefrom]</td>\n<td>Timestamp with timezone offset (Format: 2019-01-01T00:00:00+02:00)</td>\n<td>Returns the events beginning from the given date</td>\n</tr>\n<tr>\n<td>filter[dateto]</td>\n<td>Timestamp with timezone offset (Format: 2019-12-12T23:59:59+02:00)</td>\n<td>Returns the events taking place till the given date</td>\n</tr>\n<tr>\n<td>filter[lastmodified]</td>\n<td>Timestamp with timezone offset (Format: 2019-12-12T23:59:59+02:00)</td>\n<td>Returns the events were modified since the given date</td>\n</tr>\n<tr>\n<td>filter[q]</td>\n<td>Search string</td>\n<td>Returns the events containing the given search string, e.g. matching the name or description</td>\n</tr>\n<tr>\n<td>filter[only_apikey_account]</td>\n<td>1</td>\n<td>Returns only the events for account the API key is connected to</td>\n</tr>\n</tbody>\n</table>\n</div><p>Examples</p>\n<ul>\n<li>?filter[region]=1003</li>\n<li>?filter[region]=1003,1010</li>\n<li>?filter[city]=1000&amp;filter[county]=1</li>\n</ul>\n<p>If you do not specify any parameters you'll get all events for<br />the current day.</p>\n<p>To understand which region, city or county IDs you can use, please refer to one of the <em>Geopgraphy</em> calls.</p>\n<h2 id=\"response\">Response</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>The event ID</td>\n<td>int</td>\n</tr>\n<tr>\n<td>updated_at</td>\n<td>Time of last modification</td>\n<td>string</td>\n</tr>\n</tbody>\n</table>\n</div><p>Possible outcomes:</p>\n<ul>\n<li>200</li>\n<li>401</li>\n</ul>\n","urlObject":{"path":["public","events"],"host":["{{url}}"],"query":[{"disabled":true,"key":"include","value":"details"},{"disabled":true,"key":"display","value":"perday"}],"variable":[]}},"response":[{"id":"fa3886e1-2e5c-44b7-a6ec-41240a5fee89","name":"A list of events in a specific region and time frame (one day)","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"APIKEY {{api_key}}"},{"key":"Accept","value":"application/x.sl.v1+json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"{{language}}"}],"url":{"raw":"{{url}}/public/events?filter[region]=20008&filter[datefrom]=2018-10-16T00:00:00%2B02:00&filter[dateto]=2018-10-17T00:00:00%2B02:00","host":["{{url}}"],"path":["public","events"],"query":[{"key":"filter[region]","value":"20008"},{"key":"filter[datefrom]","value":"2018-10-16T00:00:00%2B02:00"},{"key":"filter[dateto]","value":"2018-10-17T00:00:00%2B02:00"}]}},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 75300,\n            \"updated_at\": \"2017-10-22T18:26:48+02:00\"\n        },\n        {\n            \"id\": 75561,\n            \"updated_at\": \"2017-11-02T12:18:14+01:00\"\n        },\n        {\n            \"id\": 40358,\n            \"updated_at\": \"2017-10-30T10:38:53+01:00\"\n        },\n        {\n            \"id\": 75609,\n            \"updated_at\": \"2017-11-13T09:53:07+01:00\"\n        },\n        {\n            \"id\": 58648,\n            \"updated_at\": \"2017-08-03T09:53:27+02:00\"\n        },\n        {\n            \"id\": 75086,\n            \"updated_at\": \"2017-10-13T18:11:25+02:00\"\n        },\n        {\n            \"id\": 75335,\n            \"updated_at\": \"2017-10-24T10:18:58+02:00\"\n        },\n        {\n            \"id\": 76186,\n            \"updated_at\": \"2017-11-23T14:52:52+01:00\"\n        },\n        {\n            \"id\": 76211,\n            \"updated_at\": \"2017-11-23T14:38:12+01:00\"\n        },\n        {\n            \"id\": 76765,\n            \"updated_at\": \"2017-12-16T14:23:46+01:00\"\n        },\n        {\n            \"id\": 76612,\n            \"updated_at\": \"2017-12-11T22:48:55+01:00\"\n        },\n        {\n            \"id\": 75217,\n            \"updated_at\": \"2017-10-19T09:53:03+02:00\"\n        },\n        {\n            \"id\": 76548,\n            \"updated_at\": \"2017-12-05T15:19:31+01:00\"\n        },\n        {\n            \"id\": 74586,\n            \"updated_at\": \"2017-12-04T16:13:03+01:00\"\n        },\n        {\n            \"id\": 73657,\n            \"updated_at\": \"2017-10-12T11:48:07+02:00\"\n        },\n        {\n            \"id\": 60354,\n            \"updated_at\": \"2016-12-05T14:49:09+01:00\"\n        },\n        {\n            \"id\": 75970,\n            \"updated_at\": \"2017-11-22T11:14:05+01:00\"\n        },\n        {\n            \"id\": 73259,\n            \"updated_at\": \"2017-07-18T14:29:19+02:00\"\n        },\n        {\n            \"id\": 74340,\n            \"updated_at\": \"2017-09-12T09:54:47+02:00\"\n        },\n        {\n            \"id\": 76599,\n            \"updated_at\": \"2017-12-07T15:36:48+01:00\"\n        },\n        {\n            \"id\": 76716,\n            \"updated_at\": \"2017-12-14T11:27:10+01:00\"\n        },\n        {\n            \"id\": 75657,\n            \"updated_at\": \"2018-01-12T12:04:58+01:00\"\n        },\n        {\n            \"id\": 76953,\n            \"updated_at\": \"2017-12-31T13:18:56+01:00\"\n        },\n        {\n            \"id\": 76712,\n            \"updated_at\": \"2017-12-14T12:44:38+01:00\"\n        },\n        {\n            \"id\": 76132,\n            \"updated_at\": \"2017-11-27T11:32:43+01:00\"\n        },\n        {\n            \"id\": 24334,\n            \"updated_at\": \"2018-02-02T14:00:01+01:00\"\n        },\n        {\n            \"id\": 76188,\n            \"updated_at\": \"2017-11-23T14:53:11+01:00\"\n        },\n        {\n            \"id\": 76212,\n            \"updated_at\": \"2017-11-23T14:38:45+01:00\"\n        },\n        {\n            \"id\": 23875,\n            \"updated_at\": \"2017-12-27T09:25:55+01:00\"\n        },\n        {\n            \"id\": 76713,\n            \"updated_at\": \"2017-12-14T12:43:30+01:00\"\n        },\n        {\n            \"id\": 77001,\n            \"updated_at\": \"2018-01-03T17:19:02+01:00\"\n        },\n        {\n            \"id\": 73263,\n            \"updated_at\": \"2017-09-20T10:44:23+02:00\"\n        },\n        {\n            \"id\": 76545,\n            \"updated_at\": \"2017-12-05T12:55:08+01:00\"\n        },\n        {\n            \"id\": 76816,\n            \"updated_at\": \"2017-12-20T10:22:22+01:00\"\n        },\n        {\n            \"id\": 74280,\n            \"updated_at\": \"2017-09-07T18:07:43+02:00\"\n        },\n        {\n            \"id\": 73907,\n            \"updated_at\": \"2017-08-22T12:01:50+02:00\"\n        },\n        {\n            \"id\": 74546,\n            \"updated_at\": \"2017-11-30T17:12:38+01:00\"\n        },\n        {\n            \"id\": 76289,\n            \"updated_at\": \"2017-11-27T15:36:21+01:00\"\n        },\n        {\n            \"id\": 77069,\n            \"updated_at\": \"2018-01-12T12:09:50+01:00\"\n        },\n        {\n            \"id\": 76746,\n            \"updated_at\": \"2018-01-04T09:02:58+01:00\"\n        },\n        {\n            \"id\": 75520,\n            \"updated_at\": \"2017-10-29T10:36:11+01:00\"\n        },\n        {\n            \"id\": 72502,\n            \"updated_at\": \"2017-09-20T10:51:24+02:00\"\n        },\n        {\n            \"id\": 76215,\n            \"updated_at\": \"2017-11-23T15:48:19+01:00\"\n        },\n        {\n            \"id\": 76954,\n            \"updated_at\": \"2017-12-31T13:21:45+01:00\"\n        },\n        {\n            \"id\": 75288,\n            \"updated_at\": \"2017-11-10T09:50:57+01:00\"\n        },\n        {\n            \"id\": 74444,\n            \"updated_at\": \"2017-09-13T16:50:42+02:00\"\n        },\n        {\n            \"id\": 77091,\n            \"updated_at\": \"2018-01-09T15:23:32+01:00\"\n        },\n        {\n            \"id\": 77009,\n            \"updated_at\": \"2018-01-10T10:07:38+01:00\"\n        },\n        {\n            \"id\": 72805,\n            \"updated_at\": \"2018-01-08T11:53:21+01:00\"\n        },\n        {\n            \"id\": 76359,\n            \"updated_at\": \"2018-01-20T00:50:02+01:00\"\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"total\": 130,\n            \"count\": 50,\n            \"per_page\": 50,\n            \"current_page\": 1,\n            \"total_pages\": 3\n        }\n    }\n}"}],"_postman_id":"b068be72-be7b-4241-9d11-a139897d5812"},{"name":"/events/:id","id":"afcd627b-aeef-4594-85f1-979f2ff3bc19","request":{"method":"GET","header":[{"key":"Authorization","value":"APIKEY {{api_key}}"},{"key":"Accept","value":"application/x.sl.v1+json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"{{language}}"}],"url":"{{url}}/public/events/:id","description":"<p>Get a specific event.</p>\n<h2 id=\"request\">Request</h2>\n<p>Possible parameters:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>include</td>\n<td>Use <em>translations</em> to include all translations at once (<code>premium only</code>).</td>\n</tr>\n<tr>\n<td>display</td>\n<td>Use an alternative way to display dates and times for events</td>\n</tr>\n</tbody>\n</table>\n</div><p>Example:</p>\n<ul>\n<li>?include=translations</li>\n<li>?display=perday (alternative event date structure)</li>\n</ul>\n<h2 id=\"response\">Response</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Unique ID of the event</td>\n<td>int</td>\n</tr>\n<tr>\n<td>origin</td>\n<td>(<code>premium only</code>) Origin of the event</td>\n<td>string</td>\n</tr>\n<tr>\n<td>is_eventserie</td>\n<td>(<code>premium only</code>) Indicates if the event is part of an event series</td>\n<td>boolean</td>\n</tr>\n<tr>\n<td>eventserie_id</td>\n<td>(<code>premium only</code>) The ID of the event series</td>\n<td>int</td>\n</tr>\n<tr>\n<td>free_entry</td>\n<td>(<code>premium only</code>) Indicates if the event is free of admission</td>\n<td>boolean</td>\n</tr>\n<tr>\n<td>price</td>\n<td>(<code>premium only</code>) Indicates the cheapest price of the event, e.g. if tickets are available for 20, 30 and 40 EUR, value will be 20.</td>\n<td>number</td>\n</tr>\n<tr>\n<td>age_from</td>\n<td>(<code>premium only</code>) Minimum age an event visitor may be. If 0, there is no age restriction.</td>\n<td>int</td>\n</tr>\n<tr>\n<td>age_to</td>\n<td>(<code>premium only</code>) Maximum age an event visitor may be. If 0, there is no max age given.</td>\n<td>int</td>\n</tr>\n<tr>\n<td>created_at</td>\n<td>(<code>premium only</code>) Creation time of the event in ISO 8601 format</td>\n<td>string</td>\n</tr>\n<tr>\n<td>updated_at</td>\n<td>Update time of the event in ISO 8601 format</td>\n<td>string</td>\n</tr>\n<tr>\n<td>organizer</td>\n<td>The organizer of the event. Does not necessarily mean it's the place where the event happens.</td>\n<td>Organizer Object</td>\n</tr>\n<tr>\n<td>title</td>\n<td>The title of the event</td>\n<td>string</td>\n</tr>\n<tr>\n<td>teaser</td>\n<td>The teaser of the event</td>\n<td>string</td>\n</tr>\n<tr>\n<td>deeplink</td>\n<td>The deeplink of the event leading to suedtirol.live. Please link back.</td>\n<td>string</td>\n</tr>\n<tr>\n<td>deeplink_kbz</td>\n<td>The deeplink of the event leading to kultur.bz.it. Please link back.</td>\n<td>string</td>\n</tr>\n<tr>\n<td>deeplink_ctn</td>\n<td>The deeplink of the event leading to cultura.tn.it. Please link back.</td>\n<td>string</td>\n</tr>\n<tr>\n<td>sale_description</td>\n<td>(<code>premium only</code>) Description of the place where one can buy tickets</td>\n<td>string</td>\n</tr>\n<tr>\n<td>deadline</td>\n<td>(<code>premium only</code>) The deadline to buy tickets</td>\n<td>string</td>\n</tr>\n<tr>\n<td>sale_link</td>\n<td>(<code>premium only</code>) A web link to where one can buy tickets</td>\n<td>string</td>\n</tr>\n<tr>\n<td>sale_hotline</td>\n<td>(<code>premium only</code>) Usually a phone number where one can buy tickets</td>\n<td>string</td>\n</tr>\n<tr>\n<td>is_certified</td>\n<td>(<code>premium only</code>) Indicates if this event has been reviewed by the kultur.bz.it editorial team</td>\n<td>boolean</td>\n</tr>\n<tr>\n<td>description</td>\n<td>(<code>premium only</code>) The description of the event. It returns HTML that is restricted to \"br\" and \"strong\" tags.</td>\n<td>string</td>\n</tr>\n<tr>\n<td>types</td>\n<td>The types of the event. Although an event can have multiple types, usually just one type is used. If you feel more comfortable to use just one type, go ahead, you'll be fine in 99,9% of the cases.</td>\n<td>Type Object</td>\n</tr>\n<tr>\n<td>picture</td>\n<td>The main picture of the event</td>\n<td>Media Object</td>\n</tr>\n<tr>\n<td>media</td>\n<td>(<code>premium only</code>) A collection of more images or videos of the event</td>\n<td>Media Object Collection</td>\n</tr>\n<tr>\n<td>targetgroups</td>\n<td>(<code>premium only</code>) A collection of target groups, e.g. students</td>\n<td>Target Group Object</td>\n</tr>\n<tr>\n<td>dategroups</td>\n<td>A collection of date groups, which indicate when the event will happen. This is NOT returned when the <em>display</em> parameter is set to <em>perday</em></td>\n<td>Date Group Object</td>\n</tr>\n<tr>\n<td>dates</td>\n<td>A collection of all dates the event takes place at. This is only returned when the <em>display</em> parameter is set to <em>perday</em></td>\n<td>Date object</td>\n</tr>\n<tr>\n<td>locations</td>\n<td>A collection of all locations the event takes place at. Each location is referenced from an object in the <em>dates</em> array. This is only returned when the <em>display</em> parameter is set to <em>perday</em></td>\n<td>Location object</td>\n</tr>\n<tr>\n<td>pricegroups</td>\n<td>A collection of all pricegroups relevant for the event. Each pricegroup is referenced from an object in the <em>dates</em> array. This is only returned when the <em>display</em> parameter is set to <em>perday</em></td>\n<td>Pricegroup object</td>\n</tr>\n<tr>\n<td>properties</td>\n<td>(<code>premium only</code>) Properties of the event, e.g. \"children friendly\"</td>\n<td>Property Object</td>\n</tr>\n<tr>\n<td>meta</td>\n<td>Currently not used.</td>\n<td>Object</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"organizer-object\">Organizer Object</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>address</td>\n<td>(<code>premium only</code>) The address of the organizer</td>\n<td>Address Object</td>\n</tr>\n<tr>\n<td>logo</td>\n<td>(<code>premium only</code>) The logo of the organizer.</td>\n<td>Media Object</td>\n</tr>\n<tr>\n<td>contact</td>\n<td>(<code>premium only</code>) The contact information of the organizer</td>\n<td>Contact Object</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Name of the organizer</td>\n<td>string</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"address-object\">Address Object</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>city_id</td>\n<td>The city ID</td>\n<td>id</td>\n</tr>\n<tr>\n<td>city_zip</td>\n<td>City postal code</td>\n<td>string</td>\n</tr>\n<tr>\n<td>city_name</td>\n<td>Name of the city</td>\n<td>string</td>\n</tr>\n<tr>\n<td>street_name</td>\n<td>Street name</td>\n<td>string</td>\n</tr>\n<tr>\n<td>street_number</td>\n<td>Street number</td>\n<td>string</td>\n</tr>\n<tr>\n<td>latitude</td>\n<td>Lat coordinate</td>\n<td>decimal</td>\n</tr>\n<tr>\n<td>longitude</td>\n<td>Lng coordinate</td>\n<td>decimal</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"contact-object\">Contact Object</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>phone</td>\n<td>Public phone number</td>\n<td>string</td>\n</tr>\n<tr>\n<td>email</td>\n<td>Public Email</td>\n<td>string</td>\n</tr>\n<tr>\n<td>website</td>\n<td>Public website address</td>\n<td>string</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"type-object\">Type Object</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>The type ID.</td>\n<td>int</td>\n</tr>\n<tr>\n<td>name</td>\n<td>The name of the type</td>\n<td>string</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"media-object\">Media Object</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>file</td>\n<td>The base URL of the image</td>\n<td>string</td>\n</tr>\n<tr>\n<td>type</td>\n<td>Type of the media, either <em>image</em> or <em>video</em></td>\n<td>string</td>\n</tr>\n<tr>\n<td>copyright</td>\n<td>The copyright information you have to display if it's given.</td>\n<td>string</td>\n</tr>\n<tr>\n<td>provider</td>\n<td>The media provider</td>\n<td>string</td>\n</tr>\n<tr>\n<td>public_id</td>\n<td>The public ID of the media object. Just makes sense for you if it is a Youtube video, as it will then hold the Youtube ID.</td>\n<td>string</td>\n</tr>\n<tr>\n<td>url_alt</td>\n<td>An object of alternative media sizes coming in small, medium and large sizes. Only populated for images.</td>\n<td>Object containing strings</td>\n</tr>\n<tr>\n<td>description</td>\n<td>The description of the media.</td>\n<td>string</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"target-group-object\">Target Group Object</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>The ID of the target group</td>\n<td>int</td>\n</tr>\n<tr>\n<td>name</td>\n<td>The name of the target group, e.g. \"families\", \"children\", \"students\", ...</td>\n<td>string</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"date-group-object\">Date Group Object</h3>\n<p>Date Groups are groups of (a positive list of) dates an event takes place at. A date group is a combination of dates, times and the location the event takes place at. A combination of these is always unique.</p>\n<p><strong>Note</strong>: If this structure does not suit you, refer to the <em>display</em> parameter for an alternative event dates structure.</p>\n<p>Example date group for \"Event X\":</p>\n<ul>\n<li>Dategroup 1: 2018-04-01 - 2018-04-30 with two start times 8am and 2pm at Location 1.</li>\n<li>Dategroup 2: 2018-05-01 - 2018-05-01 with one start time 8am at Location 1.</li>\n<li>Dategroup 3: 2018-05-01 - 2018-05-01 with one start time 2pm at Location 2.</li>\n<li>Dategroup 4: 2018-05-02 - 2018-05-31 with one start time 9am at Location 1.</li>\n<li>Dategroup 5: 2018-05-02 - 2018-05-31 with one start time 1pm at Location 2.</li>\n</ul>\n<p>Recommendation: Depending on your frontend use case and visualisation needs it might be a good idea to get all date groups of an event into your database and then select the data as to your needs.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>place_id</td>\n<td>The ID of the place the event takes place at.</td>\n<td>int</td>\n</tr>\n<tr>\n<td>description</td>\n<td>A description of the date group.</td>\n<td>string</td>\n</tr>\n<tr>\n<td>times</td>\n<td>A collection of start and end times for a date group. E.g. if the event takes place every day at 8am an 2pm it will contain two objects.</td>\n<td>Times Object</td>\n</tr>\n<tr>\n<td>dates</td>\n<td>A list of dates for the date group, format yyyy-mm-dd</td>\n<td>string</td>\n</tr>\n<tr>\n<td>price_categories</td>\n<td>(<code>premium only</code>) A collection of price categories for the date group. E.g. Block 1, 20 EUR - Block 2, 10 EUR</td>\n<td>Price Category Object</td>\n</tr>\n<tr>\n<td>place</td>\n<td>The place this date group takes place at.</td>\n<td>Place Object</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"dates-object\">Dates Object</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>location_id</td>\n<td>The location this date takes place at</td>\n<td>int</td>\n</tr>\n<tr>\n<td>pricegroup_id</td>\n<td>The referenced price group that is valid for this date</td>\n<td>int</td>\n</tr>\n<tr>\n<td>starttime</td>\n<td>Start time of the event date in <em>HH:mm:ii</em> format</td>\n<td>string</td>\n</tr>\n<tr>\n<td>endtime</td>\n<td>End time of the event date in <em>HH:mm:ii</em> format</td>\n<td>string</td>\n</tr>\n<tr>\n<td>timezone</td>\n<td>The timezone the time is given in</td>\n<td>Timezone</td>\n</tr>\n<tr>\n<td>description</td>\n<td>An optional description of the date</td>\n<td>string</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"times-object\">Times Object</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>starttime</td>\n<td>Start time in hh:mm:ii format</td>\n<td>string</td>\n</tr>\n<tr>\n<td>endtime</td>\n<td>Start time in hh:mm:ii format</td>\n<td>string</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"price-group-object\">Price Group Object</h3>\n<p>A price group is a set of price categories that are valid for an event date. E.g. a movie starts on a certain day at 5pm and 8pm. Different price groups might apply per start time. For each start time there might also be different prices available. \nE.g. August 20, 5pm, 5 EUR for children, 7 EUR for adults. </p>\n<p>These are referred to as price categories.  </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>ID of the price group</td>\n<td>int</td>\n</tr>\n<tr>\n<td>categories</td>\n<td>A collection of price categories that apply</td>\n<td>Price Category Object</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"price-category-object\">Price Category Object</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>title</td>\n<td>The title of the price category</td>\n<td>string</td>\n</tr>\n<tr>\n<td>prices</td>\n<td>The prices that apply for this category</td>\n<td>Price Object</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"price-object\">Price Object</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>type_id</td>\n<td>Optional type of a price (1=Adults,2=Children,3=Students,4=Pupils). Leave this empty if the price is valid for all types.</td>\n<td>id</td>\n</tr>\n<tr>\n<td>age_from</td>\n<td>The minimum age valid for this price</td>\n<td>int</td>\n</tr>\n<tr>\n<td>age_to</td>\n<td>The maximum age valid for this price</td>\n<td>int</td>\n</tr>\n<tr>\n<td>price</td>\n<td>The actual price</td>\n<td>number</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"place-object\">Place Object</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>The ID of the place</td>\n<td></td>\n</tr>\n<tr>\n<td>created_at</td>\n<td>Creation time of the place in ISO 8601 format</td>\n<td>string</td>\n</tr>\n<tr>\n<td>updated_at</td>\n<td>Update time of the place in ISO 8601 format</td>\n<td>string</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Name of the place</td>\n<td>string</td>\n</tr>\n<tr>\n<td>teaser</td>\n<td>Short teaser of the place</td>\n<td>string</td>\n</tr>\n<tr>\n<td>openinghoursnotes</td>\n<td>A text note on the opening hours of the place</td>\n<td>string</td>\n</tr>\n<tr>\n<td>address</td>\n<td>The address of the place.</td>\n<td>Address Object</td>\n</tr>\n<tr>\n<td>contact</td>\n<td>The contact data of the place.</td>\n<td>Contact Object</td>\n</tr>\n<tr>\n<td>types</td>\n<td></td>\n<td>The type of the place.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"locations-object\">Locations Object</h3>\n<p>Refer to Place Object.</p>\n<h3 id=\"property-object\">Property Object</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>The ID of the property</td>\n<td>int</td>\n</tr>\n<tr>\n<td>name</td>\n<td>The name of the property</td>\n<td>int</td>\n</tr>\n<tr>\n<td>value</td>\n<td>The value of the property.</td>\n<td>string</td>\n</tr>\n<tr>\n<td>unit</td>\n<td>The unit of the property. One of CHECK (1</td>\n<td>0 meaning yes</td>\n</tr>\n</tbody>\n</table>\n</div><p>Possible outcomes:</p>\n<ul>\n<li>200</li>\n<li>401</li>\n</ul>\n","urlObject":{"path":["public","events",":id"],"host":["{{url}}"],"query":[{"disabled":true,"key":"display","value":"perday"},{"disabled":true,"key":"include","value":"translations"}],"variable":[{"type":"string","value":"","key":"id"}]}},"response":[{"id":"11541f95-9def-4c8a-9ed4-da4374dffbcb","name":"Get a single event","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"APIKEY {{api_key}}"},{"key":"Accept","value":"application/x.sl.v1+json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"{{language}}"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{url}}/public/events/75300?include=translations","host":["{{url}}"],"path":["public","events","75300"],"query":[{"key":"include","value":"translations"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"7941","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sat, 03 Feb 2018 09:48:47 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"Apache/2.2.16","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 75300,\n        \"is_eventserie\": 0,\n        \"eventserie_id\": null,\n        \"free_entry\": 1,\n        \"price\": null,\n        \"age_from\": 0,\n        \"age_to\": 0,\n        \"created_at\": \"2017-10-22T18:26:48+02:00\",\n        \"updated_at\": \"2017-10-22T18:26:48+02:00\",\n        \"organizer\": {\n            \"data\": {\n                \"address\": {\n                    \"data\": null\n                },\n                \"logo\": {\n                    \"data\": null\n                },\n                \"contact\": {\n                    \"data\": null\n                },\n                \"translations\": {\n                    \"de\": {\n                        \"name\": \"Victoria Dejaco\"\n                    },\n                    \"it\": {\n                        \"name\": \"Victoria Dejaco\"\n                    }\n                }\n            }\n        },\n        \"translations\": {\n            \"de\": {\n                \"title\": \"Bunker Now 3, Tarnrasen - Catrin Bolt\",\n                \"teaser\": \"Der Bunker 15 an der Autobahnausfahrt Süd/Ss12 gegenüber der Eni Tankstelle wird von Künstlerin Catrin Bolt mit Tarnmustern umgestaltet.\",\n                \"deeplink\": \"https://www.kultur.bz.it/index.php?mode=event&evtID=75300\",\n                \"description\": \"In Südtirol befinden sich über 450 Bunker, militärische Anlagen und Wehrbauten aus dem Zweiten Weltkrieg, die Italien gegen Deutschland, den eigenen Alliierten, schützen sollten. Dieser Krieg hat sich, durch die schwerwiegenderen Konsequenzen für die lokale Bevölkerung, tiefer in die Geschichte der Region eingeschrieben als der erste. Verständlich, dass die Öffentlichkeit mit verhaltener Begeisterung und offener Ablehnung diesem Erbe gegenübersteht.<br />Doch diese Güter in Vergessenheit geraten zu lassen, sie auszulöschen oder aus den Augen zu wünschen läuft Gefahr Geschichte zu beschönigen. Wir sehen uns vor einem ähnlichen Dilemma wie die Vereinigten Staaten mit den Denkmälern der Konföderierten. Es muss Wege geben, die abscheulichsten Momente der Geschichte in Erinnerung zu behalten, ohne sie zu verleugnen oder zu glorifizieren. Das passiert durch Kontextualisierung, Bildung und kritische Auseinandersetzung um Bewusstsein zu schaffen.<br />Die Kuratorin Victoria Dejaco wurde vom Verein Kasematte Bunkerforum eingeladen, zu diesem Thema einen Beitrag zu leisten. Dafür wurde als Ort der Bunker 15 an der Autobahnausfahrt Süd in Bozen wurde für eine Intervention der Künstlerin Catrin Bolt bereits 2016 ausgewählt. Die Künstlerin realisierte bereits Mahnmale in Graz (2013) und Wien (2914) zur jüdischen Geschichte dieser Städte im Zweiten Weltkrieg und war prädestiniert für diesen Auftrag. 2015 gewann sie den Otto Maurer Preis, den renommiertesten Preis für junge Kunst in Österreich.<br />Der Bunker 15 an der Autobahnausfahrt Süd bei der SS12 wurde in den 90er Jahren im Zuge der MeBo Bauarbeiten unter einem Erdhügel begraben. Er ist Teil von einem Gesamtgefüge. Sein Zwillingsbau ist noch unversehrt und freistehend einige Hundert Meter weiter östlich. Passend zum Umstand des Bunkers, der nun verschüttet ist, hat sich Catrin Bolt in ihrem Projekt mit Verstecken und Camouflage befasst. Das gesamte Areal wird mit Camouflagemustern aus Rasenmarkierungsfarben gestaltet werden, um die Blicke der Vorbeifahrenden auf sich zu ziehen. Die militärische Funktion des Versteckens wird somit ins Gegenteil verkehrt. Geplant ist den Hügel drei Mal umzugestalten in den nächsten Monaten. Einmal mit dem üblichen militärischen Camouflagemuster, einmal mit dem Dazzle-Effekt, einem Muster, das die Form von Objekten irritierend dekonstruiert und ein Muster der Tech-Ära: dem \\\"Auspixeln\\\" wie es von Google Maps benutzt wird um (militärische) Territorien unerkennbar zu machen. Die Intervention wird das bedeutendste Werk von Land Art, das in Südtirol je umgesetzt wurde.<br />\",\n                \"sale_description\": \"\",\n                \"sale_link\": \"\"\n            },\n            \"it\": {\n                \"title\": \"Bunker Now 3, Tarnrasen - Catrin Bolt\",\n                \"teaser\": \"Der Bunker 15 an der Autobahnausfahrt Süd/Ss12 gegenüber der Eni Tankstelle wird von Künstlerin Catrin Bolt mit Tarnmustern umgestaltet.\",\n                \"deeplink\": \"https://www.cultura.bz.it/index.php?mode=event&evtID=75300\",\n                \"description\": \"In Südtirol befinden sich über 450 Bunker, militärische Anlagen und Wehrbauten aus dem Zweiten Weltkrieg, die Italien gegen Deutschland, den eigenen Alliierten, schützen sollten. Dieser Krieg hat sich, durch die schwerwiegenderen Konsequenzen für die lokale Bevölkerung, tiefer in die Geschichte der Region eingeschrieben als der erste. Verständlich, dass die Öffentlichkeit mit verhaltener Begeisterung und offener Ablehnung diesem Erbe gegenübersteht.<br />Doch diese Güter in Vergessenheit geraten zu lassen, sie auszulöschen oder aus den Augen zu wünschen läuft Gefahr Geschichte zu beschönigen. Wir sehen uns vor einem ähnlichen Dilemma wie die Vereinigten Staaten mit den Denkmälern der Konföderierten. Es muss Wege geben, die abscheulichsten Momente der Geschichte in Erinnerung zu behalten, ohne sie zu verleugnen oder zu glorifizieren. Das passiert durch Kontextualisierung, Bildung und kritische Auseinandersetzung um Bewusstsein zu schaffen.<br />Die Kuratorin Victoria Dejaco wurde vom Verein Kasematte Bunkerforum eingeladen, zu diesem Thema einen Beitrag zu leisten. Dafür wurde als Ort der Bunker 15 an der Autobahnausfahrt Süd in Bozen wurde für eine Intervention der Künstlerin Catrin Bolt bereits 2016 ausgewählt. Die Künstlerin realisierte bereits Mahnmale in Graz (2013) und Wien (2914) zur jüdischen Geschichte dieser Städte im Zweiten Weltkrieg und war prädestiniert für diesen Auftrag. 2015 gewann sie den Otto Maurer Preis, den renommiertesten Preis für junge Kunst in Österreich.<br />Der Bunker 15 an der Autobahnausfahrt Süd bei der SS12 wurde in den 90er Jahren im Zuge der MeBo Bauarbeiten unter einem Erdhügel begraben. Er ist Teil von einem Gesamtgefüge. Sein Zwillingsbau ist noch unversehrt und freistehend einige Hundert Meter weiter östlich. Passend zum Umstand des Bunkers, der nun verschüttet ist, hat sich Catrin Bolt in ihrem Projekt mit Verstecken und Camouflage befasst. Das gesamte Areal wird mit Camouflagemustern aus Rasenmarkierungsfarben gestaltet werden, um die Blicke der Vorbeifahrenden auf sich zu ziehen. Die militärische Funktion des Versteckens wird somit ins Gegenteil verkehrt. Geplant ist den Hügel drei Mal umzugestalten in den nächsten Monaten. Einmal mit dem üblichen militärischen Camouflagemuster, einmal mit dem Dazzle-Effekt, einem Muster, das die Form von Objekten irritierend dekonstruiert und ein Muster der Tech-Ära: dem \\\"Auspixeln\\\" wie es von Google Maps benutzt wird um (militärische) Territorien unerkennbar zu machen. Die Intervention wird das bedeutendste Werk von Land Art, das in Südtirol je umgesetzt wurde.<br />\",\n                \"sale_description\": \"\",\n                \"sale_link\": \"\"\n            }\n        },\n        \"deadline\": null,\n        \"sale_hotline\": \"\",\n        \"types\": {\n            \"data\": [\n                {\n                    \"id\": 24,\n                    \"translations\": {\n                        \"de\": {\n                            \"name\": \"Ausstellungen\"\n                        },\n                        \"it\": {\n                            \"name\": \"Mostre\"\n                        }\n                    }\n                }\n            ]\n        },\n        \"picture\": {\n            \"data\": {\n                \"file\": \"https://img.kultur.bz.it/img.php?id=75300&img=imgUafqLr.jpg\",\n                \"type\": \"image\",\n                \"copyright\": \"Google\",\n                \"provider\": \"kbz\",\n                \"public_id\": \"85337e62b32c62faa6ccaa61f3fe5367\",\n                \"url_alt\": {\n                    \"l\": \"https://img.kultur.bz.it/img.php?id=75300&img=imgUafqLr.jpg&size=1300x0x0\",\n                    \"m\": \"https://img.kultur.bz.it/img.php?id=75300&img=imgUafqLr.jpg&size=900x0x0\",\n                    \"s\": \"https://img.kultur.bz.it/img.php?id=75300&img=imgUafqLr.jpg&size=500x0x0\"\n                },\n                \"translations\": {\n                    \"de\": {\n                        \"title\": \"Lageplan Bunker\"\n                    },\n                    \"it\": {\n                        \"title\": \"Lageplan Bunker\"\n                    }\n                }\n            }\n        },\n        \"media\": {\n            \"data\": []\n        },\n        \"targetgroups\": {\n            \"data\": []\n        },\n        \"dategroups\": {\n            \"data\": [\n                {\n                    \"place_id\": 13644,\n                    \"translations\": {\n                        \"de\": {\n                            \"description\": \"Art in public space, accesso illimitato, freier Zutritt zu allen Tageszeiten\"\n                        },\n                        \"it\": {\n                            \"description\": \"Art in public space, accesso illimitato, freier Zutritt zu allen Tageszeiten\"\n                        }\n                    },\n                    \"times\": {\n                        \"data\": [\n                            {\n                                \"starttime\": \"00:00:00\",\n                                \"endtime\": null\n                            }\n                        ]\n                    },\n                    \"dates\": [\n                        \"2017-10-28\",\n                        \"2017-10-29\",\n                        \"2017-10-30\",\n                        \"2017-10-31\",\n                        \"2017-11-01\",\n                        \"2017-11-02\",\n                        \"2017-11-03\",\n                        \"2017-11-04\",\n                        \"2017-11-05\",\n                        \"2017-11-06\",\n                        \"2017-11-07\",\n                        \"2017-11-08\",\n                        \"2017-11-09\",\n                        \"2017-11-10\",\n                        \"2017-11-11\",\n                        \"2017-11-12\",\n                        \"2017-11-13\",\n                        \"2017-11-14\",\n                        \"2017-11-15\",\n                        \"2017-11-16\",\n                        \"2017-11-17\",\n                        \"2017-11-18\",\n                        \"2017-11-19\",\n                        \"2017-11-20\",\n                        \"2017-11-21\",\n                        \"2017-11-22\",\n                        \"2017-11-23\",\n                        \"2017-11-24\",\n                        \"2017-11-25\",\n                        \"2017-11-26\",\n                        \"2017-11-27\",\n                        \"2017-11-28\",\n                        \"2017-11-29\",\n                        \"2017-11-30\",\n                        \"2017-12-01\",\n                        \"2017-12-02\",\n                        \"2017-12-03\",\n                        \"2017-12-04\",\n                        \"2017-12-05\",\n                        \"2017-12-06\",\n                        \"2017-12-07\",\n                        \"2017-12-08\",\n                        \"2017-12-09\",\n                        \"2017-12-10\",\n                        \"2017-12-11\",\n                        \"2017-12-12\",\n                        \"2017-12-13\",\n                        \"2017-12-14\",\n                        \"2017-12-15\",\n                        \"2017-12-16\",\n                        \"2017-12-17\",\n                        \"2017-12-18\",\n                        \"2017-12-19\",\n                        \"2017-12-20\",\n                        \"2017-12-21\",\n                        \"2017-12-22\",\n                        \"2017-12-23\",\n                        \"2017-12-24\",\n                        \"2017-12-25\",\n                        \"2017-12-26\",\n                        \"2017-12-27\",\n                        \"2017-12-28\",\n                        \"2017-12-29\",\n                        \"2017-12-30\",\n                        \"2017-12-31\",\n                        \"2018-01-01\",\n                        \"2018-01-02\",\n                        \"2018-01-03\",\n                        \"2018-01-04\",\n                        \"2018-01-05\",\n                        \"2018-01-06\",\n                        \"2018-01-07\",\n                        \"2018-01-08\",\n                        \"2018-01-09\",\n                        \"2018-01-10\",\n                        \"2018-01-11\",\n                        \"2018-01-12\",\n                        \"2018-01-13\",\n                        \"2018-01-14\",\n                        \"2018-01-15\",\n                        \"2018-01-16\",\n                        \"2018-01-17\",\n                        \"2018-01-18\",\n                        \"2018-01-19\",\n                        \"2018-01-20\",\n                        \"2018-01-21\",\n                        \"2018-01-22\",\n                        \"2018-01-23\",\n                        \"2018-01-24\",\n                        \"2018-01-25\",\n                        \"2018-01-26\",\n                        \"2018-01-27\",\n                        \"2018-01-28\",\n                        \"2018-01-29\",\n                        \"2018-01-30\",\n                        \"2018-01-31\",\n                        \"2018-02-01\",\n                        \"2018-02-02\",\n                        \"2018-02-03\",\n                        \"2018-02-04\",\n                        \"2018-02-05\",\n                        \"2018-02-06\",\n                        \"2018-02-07\",\n                        \"2018-02-08\",\n                        \"2018-02-09\",\n                        \"2018-02-10\",\n                        \"2018-02-11\",\n                        \"2018-02-12\",\n                        \"2018-02-13\",\n                        \"2018-02-14\",\n                        \"2018-02-15\",\n                        \"2018-02-16\",\n                        \"2018-02-17\",\n                        \"2018-02-18\",\n                        \"2018-02-19\",\n                        \"2018-02-20\",\n                        \"2018-02-21\",\n                        \"2018-02-22\",\n                        \"2018-02-23\",\n                        \"2018-02-24\",\n                        \"2018-02-25\",\n                        \"2018-02-26\",\n                        \"2018-02-27\",\n                        \"2018-02-28\",\n                        \"2018-03-01\",\n                        \"2018-03-02\",\n                        \"2018-03-03\",\n                        \"2018-03-04\",\n                        \"2018-03-05\",\n                        \"2018-03-06\",\n                        \"2018-03-07\",\n                        \"2018-03-08\",\n                        \"2018-03-09\",\n                        \"2018-03-10\",\n                        \"2018-03-11\",\n                        \"2018-03-12\",\n                        \"2018-03-13\",\n                        \"2018-03-14\",\n                        \"2018-03-15\",\n                        \"2018-03-16\",\n                        \"2018-03-17\",\n                        \"2018-03-18\",\n                        \"2018-03-19\",\n                        \"2018-03-20\",\n                        \"2018-03-21\",\n                        \"2018-03-22\",\n                        \"2018-03-23\",\n                        \"2018-03-24\",\n                        \"2018-03-25\",\n                        \"2018-03-26\",\n                        \"2018-03-27\",\n                        \"2018-03-28\",\n                        \"2018-03-29\",\n                        \"2018-03-30\",\n                        \"2018-03-31\",\n                        \"2018-04-01\",\n                        \"2018-04-02\",\n                        \"2018-04-03\",\n                        \"2018-04-04\",\n                        \"2018-04-05\",\n                        \"2018-04-06\",\n                        \"2018-04-07\",\n                        \"2018-04-08\",\n                        \"2018-04-09\",\n                        \"2018-04-10\",\n                        \"2018-04-11\",\n                        \"2018-04-12\",\n                        \"2018-04-13\",\n                        \"2018-04-14\",\n                        \"2018-04-15\",\n                        \"2018-04-16\",\n                        \"2018-04-17\",\n                        \"2018-04-18\",\n                        \"2018-04-19\",\n                        \"2018-04-20\",\n                        \"2018-04-21\",\n                        \"2018-04-22\",\n                        \"2018-04-23\",\n                        \"2018-04-24\",\n                        \"2018-04-25\",\n                        \"2018-04-26\",\n                        \"2018-04-27\",\n                        \"2018-04-28\",\n                        \"2018-04-29\",\n                        \"2018-04-30\",\n                        \"2018-05-01\"\n                    ],\n                    \"price_categories\": {\n                        \"data\": []\n                    },\n                    \"place\": {\n                        \"data\": {\n                            \"id\": 13644,\n                            \"created_at\": \"2017-10-22T17:56:00+02:00\",\n                            \"updated_at\": \"2017-10-22T17:56:00+02:00\",\n                            \"translations\": {\n                                \"de\": {\n                                    \"name\": \"Johannes-Kepler-Straße, 1 Ecke SS12\",\n                                    \"teaser\": \"\",\n                                    \"openinghoursnotes\": \"\"\n                                },\n                                \"it\": {\n                                    \"name\": \"Johannes-Kepler-Straße, 1 Ecke SS12\",\n                                    \"teaser\": \"\",\n                                    \"openinghoursnotes\": \"\"\n                                }\n                            },\n                            \"address\": {\n                                \"data\": {\n                                    \"city_id\": 12,\n                                    \"city_zip\": \"39100\",\n                                    \"translations\": {\n                                        \"de\": {\n                                            \"city_name\": \"Bozen\",\n                                            \"street_name\": \"\"\n                                        },\n                                        \"it\": {\n                                            \"city_name\": \"Bolzano\",\n                                            \"street_name\": \"\"\n                                        }\n                                    },\n                                    \"street_number\": \"\",\n                                    \"latitude\": null,\n                                    \"longitude\": null\n                                }\n                            },\n                            \"contact\": {\n                                \"data\": null\n                            },\n                            \"types\": {\n                                \"data\": []\n                            }\n                        }\n                    }\n                },\n                {\n                    \"place_id\": 13644,\n                    \"translations\": [],\n                    \"times\": {\n                        \"data\": [\n                            {\n                                \"starttime\": \"15:00:00\",\n                                \"endtime\": \"18:00:00\"\n                            }\n                        ]\n                    },\n                    \"dates\": [\n                        \"2017-10-28\"\n                    ],\n                    \"price_categories\": {\n                        \"data\": []\n                    },\n                    \"place\": {\n                        \"data\": {\n                            \"id\": 13644,\n                            \"created_at\": \"2017-10-22T17:56:00+02:00\",\n                            \"updated_at\": \"2017-10-22T17:56:00+02:00\",\n                            \"translations\": {\n                                \"de\": {\n                                    \"name\": \"Johannes-Kepler-Straße, 1 Ecke SS12\",\n                                    \"teaser\": \"\",\n                                    \"openinghoursnotes\": \"\"\n                                },\n                                \"it\": {\n                                    \"name\": \"Johannes-Kepler-Straße, 1 Ecke SS12\",\n                                    \"teaser\": \"\",\n                                    \"openinghoursnotes\": \"\"\n                                }\n                            },\n                            \"address\": {\n                                \"data\": {\n                                    \"city_id\": 12,\n                                    \"city_zip\": \"39100\",\n                                    \"translations\": {\n                                        \"de\": {\n                                            \"city_name\": \"Bozen\",\n                                            \"street_name\": \"\"\n                                        },\n                                        \"it\": {\n                                            \"city_name\": \"Bolzano\",\n                                            \"street_name\": \"\"\n                                        }\n                                    },\n                                    \"street_number\": \"\",\n                                    \"latitude\": null,\n                                    \"longitude\": null\n                                }\n                            },\n                            \"contact\": {\n                                \"data\": null\n                            },\n                            \"types\": {\n                                \"data\": []\n                            }\n                        }\n                    }\n                }\n            ]\n        },\n        \"properties\": {\n            \"data\": [\n                {\n                    \"id\": 128,\n                    \"translations\": {\n                        \"de\": {\n                            \"name\": \"Begrüßung\"\n                        },\n                        \"it\": {\n                            \"name\": \"Saluto\"\n                        }\n                    },\n                    \"value\": \"Victoria Dejaco\"\n                },\n                {\n                    \"id\": 129,\n                    \"translations\": {\n                        \"de\": {\n                            \"name\": \"Einführung\"\n                        },\n                        \"it\": {\n                            \"name\": \"Introduzione\"\n                        }\n                    },\n                    \"value\": \"Victoria Dejaco\"\n                },\n                {\n                    \"id\": 104,\n                    \"translations\": {\n                        \"de\": {\n                            \"name\": \"Künstler\"\n                        },\n                        \"it\": {\n                            \"name\": \"Artisti\"\n                        }\n                    },\n                    \"value\": \"Catrin Bolt\"\n                }\n            ]\n        }\n    },\n    \"meta\": []\n}"}],"_postman_id":"afcd627b-aeef-4594-85f1-979f2ff3bc19"},{"name":"/events/types","id":"06b614da-58a9-4156-8d96-b30b5bb8ef7a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"APIKEY {{api_key}}"},{"key":"Accept","value":"application/x.sl.v1+json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"{{language}}"}],"url":"{{url}}/public/events/types","description":"<p>Get a list of event types</p>\n<h2 id=\"request\">Request</h2>\n<p>Possible parameters:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>include</td>\n<td>Use <em>translations</em> to include all translations at once (<code>premium only</code>)</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response\">Response</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>The event ID</td>\n<td>int</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Name of the event type</td>\n<td>string</td>\n</tr>\n<tr>\n<td>parent_id</td>\n<td>Indicates type ID of parent type (null, if no furhter levels above)</td>\n<td>int</td>\n</tr>\n<tr>\n<td>translations</td>\n<td>Name of event type in each language</td>\n<td>Object</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["public","events","types"],"host":["{{url}}"],"query":[{"disabled":true,"key":"include","value":"translations"}],"variable":[]}},"response":[{"id":"426f0fba-d287-42b2-b19b-4706fb075b50","name":"/events/types","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"APIKEY {{api_key}}"},{"key":"Accept","value":"application/x.sl.v1+json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"{{language}}"}],"url":{"raw":"{{url}}/public/events/types","host":["{{url}}"],"path":["public","events","types"],"query":[{"key":"include","value":"translations","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Mon, 02 Dec 2019 09:55:42 GMT"},{"key":"ETag","value":"W/\"ee1991ae3a81ed6718fdfef9f4886c445df1dddb\""},{"key":"Server","value":"nginx/1.11.9"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Length","value":"277"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 20002,\n            \"name\": \"Musik & Konzerte\",\n            \"parent_id\": null\n        },\n        {\n            \"id\": 20003,\n            \"name\": \"Tanz\",\n            \"parent_id\": null\n        },\n        {\n            \"id\": 20004,\n            \"name\": \"Theater\",\n            \"parent_id\": null\n        },\n        {\n            \"id\": 20005,\n            \"name\": \"Literatur\",\n            \"parent_id\": null\n        },\n        {\n            \"id\": 20006,\n            \"name\": \"Ausstellungen\",\n            \"parent_id\": null\n        },\n        {\n            \"id\": 20007,\n            \"name\": \"Film\",\n            \"parent_id\": null\n        },\n        {\n            \"id\": 20008,\n            \"name\": \"Feste\",\n            \"parent_id\": null\n        },\n        {\n            \"id\": 20009,\n            \"name\": \"Nightlife\",\n            \"parent_id\": null\n        },\n        {\n            \"id\": 20010,\n            \"name\": \"Essen & Trinken\",\n            \"parent_id\": null\n        },\n        {\n            \"id\": 20011,\n            \"name\": \"Führung\",\n            \"parent_id\": null\n        },\n        {\n            \"id\": 20012,\n            \"name\": \"Vorträge & Tagungen\",\n            \"parent_id\": null\n        },\n        {\n            \"id\": 20013,\n            \"name\": \"Kurse & Workshops\",\n            \"parent_id\": null\n        },\n        {\n            \"id\": 20014,\n            \"name\": \"Sport & Freizeit\",\n            \"parent_id\": null\n        },\n        {\n            \"id\": 20015,\n            \"name\": \"Märkte & Messen\",\n            \"parent_id\": null\n        },\n        {\n            \"id\": 20017,\n            \"name\": \"Eventserie\",\n            \"parent_id\": null\n        },\n        {\n            \"id\": 21309,\n            \"name\": \"Sonstiges\",\n            \"parent_id\": null\n        }\n    ]\n}"}],"_postman_id":"06b614da-58a9-4156-8d96-b30b5bb8ef7a"},{"name":"/events/targetgroups","id":"52fd6dc1-304c-4834-9f28-3688dc1d6084","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"APIKEY {{api_key}}"},{"key":"Accept","value":"application/x.sl.v1+json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"{{language}}"}],"url":"{{url}}/public/events/targetgroups","description":"<p>Get a list of event target groups</p>\n<h2 id=\"request\">Request</h2>\n<p>Possible parameters:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>include</td>\n<td>Use <em>translations</em> to include all translations at once (<code>premium only</code>)</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response\">Response</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>The targetgroup ID</td>\n<td>int</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Name of the targetgroup</td>\n<td>string</td>\n</tr>\n<tr>\n<td>parent_id</td>\n<td>Indicates type ID of parent type (null, if no furhter levels above)</td>\n<td>int</td>\n</tr>\n<tr>\n<td>translations</td>\n<td>Name of targetgroup in each language</td>\n<td>Object</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["public","events","targetgroups"],"host":["{{url}}"],"query":[{"disabled":true,"key":"include","value":"translations"}],"variable":[]}},"response":[{"id":"038c9dce-1e7c-4846-ae55-316045ebc2db","name":"/events/targetgroups","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"APIKEY {{api_key}}"},{"key":"Accept","value":"application/x.sl.v1+json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"{{language}}"}],"url":{"raw":"{{url}}/public/events/targetgroups","host":["{{url}}"],"path":["public","events","targetgroups"],"query":[{"key":"include","value":"translations","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Mon, 02 Dec 2019 09:59:09 GMT"},{"key":"ETag","value":"W/\"01721bf8732de96a210832a4d4c824825e542769\""},{"key":"Server","value":"nginx/1.11.9"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Length","value":"181"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 50001,\n            \"name\": \"Alle\",\n            \"parent_id\": null\n        },\n        {\n            \"id\": 50002,\n            \"name\": \"Familien\",\n            \"parent_id\": null\n        },\n        {\n            \"id\": 50003,\n            \"name\": \"Kinder\",\n            \"parent_id\": null\n        },\n        {\n            \"id\": 50004,\n            \"name\": \"Schüler\",\n            \"parent_id\": null\n        },\n        {\n            \"id\": 50005,\n            \"name\": \"Studenten\",\n            \"parent_id\": null\n        },\n        {\n            \"id\": 50006,\n            \"name\": \"Unterrichtende\",\n            \"parent_id\": null\n        },\n        {\n            \"id\": 50007,\n            \"name\": \"Nur für Mitglieder\",\n            \"parent_id\": null\n        },\n        {\n            \"id\": 50008,\n            \"name\": \"Senioren\",\n            \"parent_id\": null\n        },\n        {\n            \"id\": 50009,\n            \"name\": \"Erwachsene\",\n            \"parent_id\": null\n        }\n    ]\n}"}],"_postman_id":"52fd6dc1-304c-4834-9f28-3688dc1d6084"},{"name":"/events/pricegroups","id":"bf30c5cc-13eb-47a6-8b0e-2caed59dcefb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"APIKEY {{api_key}}"},{"key":"Accept","value":"application/x.sl.v1+json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"{{language}}"}],"url":"{{url}}/public/events/pricegroups","description":"<p>Get a list of price groups</p>\n<h2 id=\"request\">Request</h2>\n<p>Possible parameters:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>include</td>\n<td>Use <em>translations</em> to include all translations at once (<code>premium only</code>)</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response\">Response</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>The pricegroup ID</td>\n<td>int</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Name of the pricegroup</td>\n<td>string</td>\n</tr>\n<tr>\n<td>parent_id</td>\n<td>Indicates type ID of parent type (null, if no furhter levels above)</td>\n<td>int</td>\n</tr>\n<tr>\n<td>translations</td>\n<td>Name of pricegroup in each language</td>\n<td>Object</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["public","events","pricegroups"],"host":["{{url}}"],"query":[{"disabled":true,"key":"include","value":"translations"}],"variable":[]}},"response":[{"id":"198b74c4-e28a-4df7-9882-2a7e6a1b3a2a","name":"/events/pricegroups","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"APIKEY {{api_key}}"},{"key":"Accept","value":"application/x.sl.v1+json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"{{language}}"}],"url":{"raw":"{{url}}/public/events/pricegroups","host":["{{url}}"],"path":["public","events","pricegroups"],"query":[{"key":"include","value":"translations","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Mon, 02 Dec 2019 10:02:41 GMT"},{"key":"ETag","value":"W/\"6d4ef893f2c9e50d2827432725079376a6cfa590\""},{"key":"Server","value":"nginx/1.11.9"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Length","value":"175"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 40001,\n            \"name\": \"Pro Person\",\n            \"parent_id\": null\n        },\n        {\n            \"id\": 40002,\n            \"name\": \"Familien\",\n            \"parent_id\": null\n        },\n        {\n            \"id\": 40003,\n            \"name\": \"Kinder\",\n            \"parent_id\": null\n        },\n        {\n            \"id\": 40004,\n            \"name\": \"Schüler\",\n            \"parent_id\": null\n        },\n        {\n            \"id\": 40005,\n            \"name\": \"Studenten\",\n            \"parent_id\": null\n        },\n        {\n            \"id\": 40006,\n            \"name\": \"Unterrichtende\",\n            \"parent_id\": null\n        },\n        {\n            \"id\": 40007,\n            \"name\": \"Mitglieder\",\n            \"parent_id\": null\n        },\n        {\n            \"id\": 40008,\n            \"name\": \"Senioren\",\n            \"parent_id\": null\n        },\n        {\n            \"id\": 40009,\n            \"name\": \"Erwachsene\",\n            \"parent_id\": null\n        }\n    ]\n}"}],"_postman_id":"bf30c5cc-13eb-47a6-8b0e-2caed59dcefb"}],"id":"c884fe96-746a-42de-8c61-cae8fd198142","description":"<h2 id=\"export-api\">Export API</h2>\n<h2 id=\"your-subscription\">Your subscription</h2>\n<p>There are various options to access the event data that depend on your chosen subscription.</p>\n<h4 id=\"only-your-events-and-the-events-of-your-connected-members\">Only your events and the events of your connected members</h4>\n<p>In case you chose to access only your events and the events of your connected members, this is exactly what the API will return for you.</p>\n<p>You will not see or be able to access any other event data.</p>\n<h4 id=\"all-events\">All events</h4>\n<p>In case you chose to access all existing events, you might be able only to access events that are within your selected cities (\"Gemeinden\"). Please refer to your subscription preferences.</p>\n<p>In case you selected \"all events\", these two levels of data details are available:</p>\n<h4 id=\"basic\">Basic</h4>\n<p>Get access to the most important information of all events including dates and times. </p>\n<h4 id=\"premium\">Premium</h4>\n<p>Get access to the all information of all events including dates and times. With the Premium API you can also request all languages for an event at once.</p>\n<p>In case your subscription is valid only for your own events and the events of your members, premium is set as default.</p>\n","event":[{"listen":"prerequest","script":{"id":"e240222f-fc28-42c5-ae3a-5ec416fd647a","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"0d51e842-b053-45f4-afb7-506698c175b9","type":"text/javascript","exec":[""]}}],"_postman_id":"c884fe96-746a-42de-8c61-cae8fd198142"},{"name":"Import API","item":[{"name":"/events","id":"7ab27d20-19ed-4752-b62f-4fc7b4a52c8f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"APIKEY {{api_key}}"},{"key":"Accept","value":"application/x.sl.v1+json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"{{language}}"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/public/events","description":"<p>Create a new event</p>\n<p>See the example JSON body in order to understand how to create an event. This is already our most current structure which you can develop against.</p>\n<h4 id=\"an-important-note-on-places\">An important note on Places</h4>\n<p>When using the Import API please note that you have to provide <strong>Place IDs</strong> for locations, organizers and sponsors. These ids are referencing the actual place objects<br />which are already included in our database. In this way places can be kept consistent with the most recent information and can be reused easily.</p>\n<p>There are three scenarios to take into account:</p>\n<ol>\n<li>The event takes place at your own place and is organzied by yourself so that you already know the Place ID. -&gt; Use this ID for the fields that require a Place ID.</li>\n<li>The location and the organizers are different sometimes. -&gt; Please search for the place with the help of the SL API. You can also create a local mapping of all the places you use regularly to avoid searching each time.</li>\n<li>The event takes place at an unkown location and you can't find the correct place with the SL API. -&gt; Please contact us so that you can be granted access to create places on your own.</li>\n</ol>\n<p>ONLY in the Sandbox you can use the following test POI IDs:</p>\n<ul>\n<li>Organizer POI: 79441</li>\n<li>POI an events takes place at: 79442</li>\n</ul>\n<h4 id=\"what-happens-if-a-place-id-changes\">What happens if a place ID changes?</h4>\n<p>Once you map an organizer_id, place_id or sponsor_id on your end you can use it forever. However, it might occur that places are merged with other places internally so that the ID changes. In this case, if you send an old ID, the API will automatically map your ID to the latest one and store the event accordingly. It's optional for you to update your mappings via the \"meta &gt; place_ids_changed\" return object.</p>\n<p>Please also consider the explanations below to get an overview of the request body structure.</p>\n<h2 id=\"structure-of-json-body\">Structure of JSON Body</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>title</td>\n<td>string</td>\n<td>The title of the event</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>type_id</td>\n<td>int</td>\n<td>The type of the event. Please refer to the \"GET /public/events/types\" call to get the id of the type for your event, e.g. \"Music &amp; Concert, Theatre, Exhibitions etc.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>organizer_id</td>\n<td>int</td>\n<td>The ID of the organizer POI of the event. If you import an event and are the organizer, please use your own POI ID. Please also refer to the \"important note on places\" aboove to understand how to set them properly.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>teaser</td>\n<td>string</td>\n<td>The teaser of the event</td>\n<td>No</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>The description of the event</td>\n<td>No</td>\n</tr>\n<tr>\n<td>targetgroups</td>\n<td>array of integers</td>\n<td>Add targetgroups to your event. Please refer to the \"GET /publc/events/targetgroups\" call to get the ids of all possible targetgroups</td>\n<td>No</td>\n</tr>\n<tr>\n<td>age_from</td>\n<td>int</td>\n<td>Define age groups for the event</td>\n<td>No</td>\n</tr>\n<tr>\n<td>age_to</td>\n<td>int</td>\n<td>Define age groups for the event</td>\n<td>No</td>\n</tr>\n<tr>\n<td>sale_hotline</td>\n<td>string</td>\n<td>Hotline for ticket sales</td>\n<td>No</td>\n</tr>\n<tr>\n<td>sale_link</td>\n<td>string</td>\n<td>Online link for ticket sales</td>\n<td>No</td>\n</tr>\n<tr>\n<td>sale_description</td>\n<td>string</td>\n<td>Tell your visitors where they can get their tickets and if there is anything else that should be noted.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>eventserie_id</td>\n<td>int</td>\n<td>The event series id that your event is connected to</td>\n<td>No</td>\n</tr>\n<tr>\n<td>is_certified</td>\n<td>boolean (1</td>\n<td>0)</td>\n<td>Set to 1 if your event is certified</td>\n</tr>\n<tr>\n<td>sponsors</td>\n<td>int</td>\n<td>Include your partners &amp; sponsors by using their ids. Please refer to the note on places to understand how to set them properly.</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"picture--media\">Picture &amp; Media</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>file</td>\n<td>sting</td>\n<td>The link to the media file</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>title</td>\n<td>string</td>\n<td>Title of the media file</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>copyright</td>\n<td>string</td>\n<td>Optional. Add a copyright to your file</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"properties\">Properties</h2>\n<p>You can include as many properties as you wish when you create a new event.</p>\n<p>To get to know which properties you can assign to your event please refer to the call \"GET /public/events/types/:id/properties\".<br />Please note that the types and the properties are related to each other and that the call will return only the properties that are possible with the type you chose.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>int</td>\n<td>The ID of the property you want to add to your event</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>value</td>\n<td>boolean or string</td>\n<td>Based on the specific property you can either enable the property by setting it to 1 (-&gt;true) or by providing a further description</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"dategroups\">Dategroups</h2>\n<p>The dategroup object contains nested objects. To understand how the dategroups object has to be structured please see the examples below and refer<br />to the explanations.</p>\n<p>There are several ways to assign dategroups to an event and you can combine<br />them as you like:</p>\n<h4 id=\"event-takes-place-at-several-days-at-the-same-time-at-the-same-location\">Event takes place at several days at the same time at the same location</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">\"dategroups\": [\n    {\n        \"place_id\": 933,\n        \"description\": \"Main hall\",\n        \"dates\": [\n            \"2020-01-24\",\n            \"2020-01-25\",\n            \"2020-01-26\",\n            \"2020-01-27\",\n            \"2020-01-28\",\n        ],\n        \"times\": [\n            {\n                \"starttime\": \"09:00:00\",\n                \"endtime\": \"14:00:00\"\n            }\n        ],\n        \"price_categories\": [...]\n    }\n]\n\n</code></pre>\n<h4 id=\"event-takes-place-at-several-days-at-several-times-at-the-same-location\">Event takes place at several days at several times at the same location</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">\"dategroups\": [\n    {\n        \"place_id\": 933,\n        \"description\": \"Main hall\",\n        \"dates\": [\n            \"2020-01-24\",\n            \"2020-01-25\",\n            \"2020-01-26\",\n            \"2020-01-27\",\n            \"2020-01-28\",\n        ],\n        \"times\": [\n            {\n                \"starttime\": \"08:00:00\",\n                \"endtime\": \"10:00:00\"\n            },\n            {\n                \"starttime\": \"12:00:00\",\n                \"endtime\": \"14:00:00\"\n            },\n            {\n                \"starttime\": \"16:00:00\",\n                \"endtime\": \"18:00:00\"\n            }\n        ],\n        \"price_categories\": [...]\n    }\n]\n\n</code></pre>\n<h4 id=\"event-takes-place-at-different-times-on-different-days-at-different-locations\">Event takes place at different times on different days at different locations</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">\"dategroups\": [\n    {\n        \"place_id\": 933,\n        \"title\": \"Premiere\",\n        \"description\": \"Main hall\",\n        \"dates\": [\n            \"2020-01-24\",\n        ],\n        \"times\": [\n            {\n                \"starttime\": \"18:00:00\",\n                \"endtime\": \"20:00:00\"\n            }\n        ],\n        \"price_categories\": [...]\n    },\n    {\n        \"place_id\": 934,\n        \"dates\": [\n            \"2020-01-25\",\n            \"2020-01-26\",\n            \"2020-01-27\",\n        ],\n        \"times\": [\n            {\n                \"starttime\": \"14:00:00\",\n                \"endtime\": \"16:00:00\"\n            },\n            {\n                \"starttime\": \"18:00:00\",\n                \"endtime\": \"20:00:00\"\n            }\n        ],\n        \"price_categories\": [...]\n    },\n    {\n        \"place_id\": 933,\n        \"description\": \"Small Hall\",\n        \"dates\": [\n            \"2020-01-28\",\n            \"2020-01-29\",\n            \"2020-01-30\",\n            \"2020-01-31\",\n            \"2020-02-01\",\n        ],\n        \"times\": [\n            {\n                \"starttime\": \"12:00:00\",\n                \"endtime\": \"14:00:00\"\n            }\n        ],\n        \"price_categories\": [...]\n    },\n]\n\n</code></pre>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Value</th>\n<th>Description</th>\n<th>Requried</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>place_id</td>\n<td>int</td>\n<td>The location of the event. Please refer to the \"important note on places\" above to understand how to set them properly.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>dates</td>\n<td>array of dates</td>\n<td>The dates at which your event is taking place</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>times</td>\n<td>array of times</td>\n<td>Specify the time at which the event starts and ends. You can add multiple time frames by adding more objects to the same array</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>title</td>\n<td>string</td>\n<td>Additional information on the date</td>\n<td>No</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>Additional information on the location</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><p>Price categories are also part of the dategroups object. They are nested inside the dategroups object and have the following structure:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">\"price_categories\": [\n    {\n        \"title\": \"Admission\",\n        \"prices\": [\n            {\n                \"price\": 4.50,\n                \"age_from\": 0,\n                \"age_to\": 18,\n                \"type_id\": 40004\n            },\n            {\n                \"price\": 40,\n                \"age_from\": 18,\n                \"age_to\": 99,\n                \"type_id\": 40009\n            }\n        ]\n    }\n]\n\n</code></pre>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>title</td>\n<td>String</td>\n<td>The name of the price category</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>prices.price</td>\n<td>number</td>\n<td>Price for the specific category</td>\n<td>No</td>\n</tr>\n<tr>\n<td>prices.age_from</td>\n<td>int</td>\n<td>Define the age groups</td>\n<td>No</td>\n</tr>\n<tr>\n<td>prices.age_to</td>\n<td>int</td>\n<td>Define the age groups</td>\n<td>No</td>\n</tr>\n<tr>\n<td>prices.type_id</td>\n<td>int</td>\n<td>Refer to the call \"GET /events/pricegroups\" to get the possible pricegroups for your event, e.g \"Per Person\", \"Families\" etc.</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"translations\">Translations</h2>\n<p>Translations are a very important feature that you can simply integrate to your event.<br />The SL API supports the following languages:</p>\n<ul>\n<li>german</li>\n<li>italian</li>\n<li>english</li>\n</ul>\n<p>Providing translated information is done by wrapping a translations object around the fields that can be translated.</p>\n<p>The following fields can be translated at any part of the request body.</p>\n<ul>\n<li>title</li>\n<li>teaser</li>\n<li>description</li>\n<li>sale_link</li>\n<li>sale_description</li>\n<li>copyright</li>\n</ul>\n<p>Refer to the example below to understand how to use the translations object</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">\"translations\": {\n        \"de\": {\n            \"title\": \"Beispiel Event\",\n            \"teaser\": \"Kurzbeschreibung des Events\",\n            \"description\": \"Beschreibung des Events...\",\n            ...\n        },\n        \"it\": {\n            \"title\": \"Un evento di esempio\",\n            \"teaser\": \"Breve descrizione dell'evento\",\n            \"description\": \"La descrizione dell'evento...\",\n            ...\n        },\n        \"en\": {\n            \"title\": \"Example Event\",\n            \"teaser\": \"Teaser of the event\",\n            \"description\": \"The description of the event...\",\n           ...\n        }\n\n</code></pre>\n","urlObject":{"path":["public","events"],"host":["{{url}}"],"query":[{"disabled":true,"key":"include","value":"details"},{"disabled":true,"key":"display","value":"perday"}],"variable":[]}},"response":[{"id":"404f0d32-2c26-42f3-b0e9-3394b7454f45","name":"Add an event","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"APIKEY {{api_key}}"},{"key":"Accept","value":"application/x.sl.v1+json"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept-Language","value":"{{language}}"}],"body":{"mode":"raw","raw":"{\n    \"eventserie_id\": 9904,\n    \"is_certified\": 1,\n    \"translations\": {\n        \"de\": {\n            \"title\": \"Tiroler Jazzfest\",\n            \"teaser\": \"Jazzmusik aus aller Welt DE\",\n            \"description\": \"Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua...\",\n            \"sale_link\": \"http://www.ticket.de\",\n            \"sale_description\": \"Reisebüros DE\"\n        },\n        \"it\": {\n            \"title\": \"Tiroler Jazzfest IT\",\n            \"teaser\": \"Jazzmusik aus aller Welt IT\",\n            \"description\": \"Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua...\",\n            \"sale_link\": \"http://www.ticket.it\",\n            \"sale_description\": \"Reisebüros IT\"\n        },\n        \"en\": {\n            \"title\": \"Tiroler Jazzfest EN\",\n            \"teaser\": \"Jazzmusik aus aller Welt EN\",\n            \"description\": \"Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua...\",\n            \"sale_description\": \"Reisebüros EN\"\n        }\n    },\n    \"picture\": {\n        \"file\": \"https://sl-1.cdn-stg.suedtirol.live/pics/302912/20200120020704_302912.jpg\",\n        \"translations\": {\n            \"de\": {\n                \"title\": \"Title DE\",\n                \"copyright\": \"Copyright DE\"\n            },\n            \"it\": {\n                \"title\": \"Title IT\",\n                \"copyright\": \"Copyright IT\"\n            },\n            \"en\": {\n                \"title\": \"Title EN\",\n                \"copyright\": \"Copyright EN\"\n            }\n        }\n    },\n    \"media\": [\n        {\n            \"file\": \"https://cdn.suedtirol.live/assets/sldefault.png\",\n            \"translations\": {\n                \"de\": {\n                    \"title\": \"Title DE\",\n                    \"copyright\": \"Copyright DE\"\n                },\n                \"it\": {\n                    \"title\": \"Title IT\",\n                    \"copyright\": \"Copyright IT\"\n                },\n                \"en\": {\n                    \"title\": \"Title EN\",\n                    \"copyright\": \"Copyright EN\"\n                }\n            }\n        },\n        {\n            \"provider\": \"youtube\",\n            \"file\": \"https://www.youtube.com/watch?v=neV3EPgvZ3g\",\n            \"type\": \"video\",\n            \"copyright\": \"All rights reserved\",\n            \"title\": \"Jazz\"\n        }\n    ],\n    \"properties\": [\n        {\n            \"id\": 12090,\n            \"unit\": \"CHECK\",\n            \"name\": \"Anmeldung erforderlich\",\n            \"value\": \"Ja, bitte beachten Sie die Fristen.\"\n        },\n        {\n            \"id\": 12091,\n            \"unit\": \"CHECK\",\n            \"name\": \"Barrierefrei\",\n            \"value\": \"1\"\n        },\n        {\n            \"id\": 11954,\n            \"unit\": \"CHECK\",\n            \"name\": \"Bei schlechtem Wetter möglich\",\n            \"value\": \"1\"\n        },\n        {\n            \"id\": 158,\n            \"unit\": \"CHECK\",\n            \"name\": \"Blues/Soul/Funk\",\n            \"value\": \"1\"\n        }\n    ],\n    \"targetgroups\": [\t\n        50002,\n        50003,\n        50004,\n        50005,\n        50006,\n        50007,\n        50008,\n        50009\n    ],\n    \"dategroups\": [\n        {\n            \"place_id\": 933,\n            \"translations\": {\n                \"de\": {\n                    \"title\": \"Premiere\",\n                    \"description\": \"Eingang Vorne\"\n                },\n                \"it\": {\n                    \"title\": \"Premiere\",\n                    \"description\": \"l´ingresso è di fronte\"\n                },\n                \"en\": {\n                    \"title\": \"Premiere\",\n                    \"description\": \"the entrance is in front\"\n                }\n            },\n            \"dates\": [\n                \"2020-01-24\",\n                \"2020-01-25\",\n                \"2020-01-26\",\n                \"2020-01-27\",\n                \"2020-01-23\"\n            ],\n            \"times\": [\n                {\n                    \"starttime\": \"09:00:00\",\n                    \"endtime\": \"14:00:00\"\n                },\n                {\n                    \"starttime\": \"16:00:00\",\n                    \"endtime\": \"20:30:00\"\n                }\n            ],\n            \"price_categories\": [\n                {\n                    \"translations\": {\n                        \"de\": {\n                            \"title\": \"Eintritt\"\n                        },\n                        \"it\": {\n                            \"title\": \"Eintritt\"\n                        },\n                        \"en\": {\n                            \"title\": \"Eintritt\"\n                        }\n                    },\n                    \"prices\": [\n                        {\n                            \"price\": 4.50,\n                            \"age_from\": 0,\n                            \"age_to\": 18,\n                            \"type_id\": 40004\n                        },\n                        {\n                            \"price\": 40,\n                            \"age_from\": 18,\n                            \"age_to\": 99,\n                            \"type_id\": 40009\n                        }\n                    ]\n                }\n            ]\n        }\n    ],\n    \"organizer_id\": 6843,\n    \"sponsors\": [\n        41066,\n        12477\n    ],\n    \"type_id\": 20002\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{url}}/public/events","host":["{{url}}"],"path":["public","events"],"query":[{"key":"include","value":"details","disabled":true},{"key":"display","value":"perday","disabled":true}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"eeaa6f7d-8c39-426d-8fe9-e54de4df9805","name":"/events","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"APIKEY {{api_key}}"},{"key":"Accept","value":"application/x.sl.v1+json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"{{language}}"}],"body":{"mode":"raw","raw":""},"url":{"raw":"{{url}}/public/events","host":["{{url}}"],"path":["public","events"],"query":[{"key":"include","value":"details","disabled":true},{"key":"display","value":"perday","disabled":true}]}},"status":"Unprocessable Entity","code":422,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Headers","value":"*"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, PUT, DELETE"},{"key":"Access-Control-Allow-Origin","value":""},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Language","value":"de"},{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Tue, 30 Aug 2022 10:21:16 GMT"},{"key":"Server","value":"nginx/1.17.3"},{"key":"Content-Length","value":"592"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"status_code\": 422,\n    \"message\": \"Validation Error\",\n    \"code\": 1000,\n    \"errors\": {\n        \"0\": {\n            \"code\": 1051,\n            \"source\": \"types\",\n            \"title\": \"The types field is required when type id is not present.\"\n        },\n        \"1\": {\n            \"code\": 1051,\n            \"source\": \"type_id\",\n            \"title\": \"The type id field is required when types is not present.\"\n        },\n        \"2\": {\n            \"code\": 1045,\n            \"source\": \"organizer_id\",\n            \"title\": \"The organizer id field is required.\"\n        },\n        \"types\": [\n            \"types muss angegeben werden, wenn type id nicht ausgefüllt wurde.\"\n        ],\n        \"type_id\": [\n            \"type id muss angegeben werden, wenn types nicht ausgefüllt wurde.\"\n        ],\n        \"organizer_id\": [\n            \"organizer id muss ausgefüllt sein.\"\n        ]\n    }\n}"}],"_postman_id":"7ab27d20-19ed-4752-b62f-4fc7b4a52c8f"},{"name":"/events/:id","id":"ad0cca29-5882-46e9-b931-884fdebcc738","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","value":"APIKEY {{api_key}}"},{"key":"Accept","value":"application/x.sl.v1+json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"{{language}}"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/public/events/:id","description":"<p>Edit an existing event. You can only patch events which you have created.</p>\n<h2 id=\"structure-of-json-body\">Structure of JSON Body</h2>\n<p>See POST /events</p>\n","urlObject":{"path":["public","events",":id"],"host":["{{url}}"],"query":[{"disabled":true,"key":"include","value":"details"},{"disabled":true,"key":"display","value":"perday"}],"variable":[{"type":"string","value":"","key":"id"}]}},"response":[],"_postman_id":"ad0cca29-5882-46e9-b931-884fdebcc738"},{"name":"/events/:id","id":"f49363b3-62af-4ed7-ba24-37d1b86956c5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"APIKEY {{api_key}}"},{"key":"Accept","value":"application/x.sl.v1+json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"{{language}}"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/public/events/:id","description":"<p>Delete an existing event</p>\n","urlObject":{"path":["public","events",":id"],"host":["{{url}}"],"query":[{"disabled":true,"key":"include","value":"details"},{"disabled":true,"key":"display","value":"perday"}],"variable":[{"type":"string","value":"","key":"id"}]}},"response":[],"_postman_id":"f49363b3-62af-4ed7-ba24-37d1b86956c5"}],"id":"c6a75585-ed34-44b2-bcda-4c988d0751a5","description":"<h2 id=\"how-to-import-events-to-kulturbzit-and-other-portals\">How to import events to kultur.bz.it and other portals?</h2>\n<p>To import events you need to use the suedtirol.live Events Import API.</p>\n<p>If you import an event, it will be visible here:</p>\n<ul>\n<li>kultur.bz.it</li>\n<li>suedtirol.live</li>\n<li>TIPPTHEK Hotel Gästeinformationssystem (tippthek.com)</li>\n<li>restaurants.st (in gastronomy POIs where an event takes place)</li>\n<li>shopping.st (in shopping POIs where an event takes place)</li>\n<li>stol.it</li>\n<li>altoadige.it</li>\n<li>giornaletrentino.it</li>\n</ul>\n<p>This requires an API key and will most likely require development work, which can either be done by yourself or your IT department/support/agency.</p>\n<p>Please follow these steps:</p>\n<ol>\n<li>Create an account on <a href=\"https://partner.firstavenue.it\">https://partner.firstavenue.it</a></li>\n<li>Transform your events to our JSON format and contact us</li>\n<li>We'll check and test your file. We'll come back to you if changes are necessary</li>\n</ol>\n<p>In case you need more technical help, you can of course contact us.</p>\n<p>We will then most likely refer you to one of our First Avenue Certified Development Partners (additional costs might apply):</p>\n<p><a href=\"https://www.johnnybytes.com/\">Johnny Bytes GmbH</a></p>\n<p>Im Klapperhof 33<br />50670 Köln (DE)</p>\n<p><a href=\"https://endo7.com/\">endo7 GmbH Srl</a></p>\n<p>Goethe-Straße 34a<br />39100 Bozen (IT)</p>\n","event":[{"listen":"prerequest","script":{"id":"73681a89-922f-445c-a556-4817b428c9b1","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"cbab9033-b1d7-44d2-b0bb-1779af64ef03","type":"text/javascript","exec":[""]}}],"_postman_id":"c6a75585-ed34-44b2-bcda-4c988d0751a5"}],"id":"5d12b511-6961-49ce-88b3-39777abced36","description":"<p>Get access to all events of South Tyrol's and its surrounding regions' largest event calendar with the suedtirol.live API.</p>\n<p>It is the same API that drives South Tyrol's largest and most popular events portal.</p>\n<h2 id=\"import-api\">Import API</h2>\n<p>Use the Import API to import your events to kultur.bz.it/cultura.bz.it and promote them to South Tyrol's biggest event community.</p>\n<p>Currently the import API is XML only. It will be updated to REST/JSON at a later point in time.</p>\n<h4 id=\"should-you-wait-until-then\"><em>Should you wait until then?</em></h4>\n<p>No. If you decide to implement the API via XML now, it will be supported even after the start of the REST/JSON API. So go ahead and don't hesitate to promote your events now.</p>\n<p>&gt; To continue select the \"Import API\" in the menu.</p>\n<h2 id=\"export-api\">Export API</h2>\n<p>Use the Export API to receive events from kultur.bz.it/cultura.bz.it as per your subscription level.</p>\n<p>&gt; To continue select the \"Export API\" in the menu.</p>\n<h2 id=\"frequently-asked-questions-faq\">Frequently asked questions (FAQ)</h2>\n<p><em>Can I use the event API together with open source CMS systems (Wordpress, Joomla, Typo3 etc.)?</em></p>\n<p>In general: Yes. However, the Event API provides you with one way to import or export your data. It is your responsibilty to transform the data format of your CMS into the required formats (or the other way around). Please refer to one of our certified development partners if you need help.</p>\n<p><em>Do you support Facebook Events?</em></p>\n<p>We are currently working on importing your events that are already present in Facebook. Posting events from kultur.bz.it to Facebook is not possible, as it is not supported by Facebook.</p>\n","event":[{"listen":"prerequest","script":{"id":"a634acef-4731-4cfa-9975-2d22fa885c40","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"958fc841-ba09-4cd2-a4f7-09deb42f20fa","type":"text/javascript","exec":[""]}}],"_postman_id":"5d12b511-6961-49ce-88b3-39777abced36"},{"name":"Geography","item":[{"name":"/regions","id":"efba2ec7-5962-4c73-8886-69c04173bd7d","request":{"method":"GET","header":[{"key":"Authorization","value":"APIKEY {{api_key}}"},{"key":"Accept","value":"application/x.sl.v1+json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"{{language}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{url}}/public/geo/regions","description":"<p>Get a list of regions.</p>\n<h2 id=\"request\">Request</h2>\n<p>Possible parameters:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>include</td>\n<td>Use <em>translations</em> to include all translations at once (<code>premium only</code>).</td>\n</tr>\n<tr>\n<td>filter</td>\n<td>Possible filters: <em>county</em></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"examples---includetranslations---filtercounty1\">Examples:\n- ?include=translations\n- ?filter[county]=1</h2>\n<h2 id=\"response\">Response</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>The region ID</td>\n<td>int</td>\n</tr>\n<tr>\n<td>county_id</td>\n<td>ID of the county the region is located in</td>\n<td>int</td>\n</tr>\n<tr>\n<td>meta</td>\n<td>Not used. Always empty.</td>\n<td>Object</td>\n</tr>\n<tr>\n<td>translations</td>\n<td>Translations of the region data. Only returned if you use the <em>include=translation</em> parameter. Returns three objects <em>de</em>, <em>it</em>, <em>en</em> containing the <em>name</em> parameter</td>\n<td>Object</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Name of the region. Returned in the language as defined in yout request header. Only returned if you do not include translations.</td>\n<td>string</td>\n</tr>\n</tbody>\n</table>\n</div><p>Possible outcomes:</p>\n<ul>\n<li>200</li>\n<li>401</li>\n</ul>\n","urlObject":{"path":["public","geo","regions"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"86a79902-550f-46e8-87b8-ec79bb21fb57","name":"All regions of the county of South Tyrol without translations","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"APIKEY {{api_key}}"},{"key":"Accept","value":"application/x.sl.v1+json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"{{language}}"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{url}}/public/geo/regions?filter[county]=1","host":["{{url}}"],"path":["public","geo","regions"],"query":[{"key":"filter[county]","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 1001,\n            \"county_id\": 1,\n            \"name\": \"Gadertal\"\n        },\n        {\n            \"id\": 1002,\n            \"county_id\": 1,\n            \"name\": \"Antholzertal\"\n        }\n    ],\n    \"meta\": []\n}"}],"_postman_id":"efba2ec7-5962-4c73-8886-69c04173bd7d"},{"name":"/cities","id":"25ff112c-819d-48e9-8987-041fc5a9ba5f","request":{"method":"GET","header":[{"key":"Authorization","value":"APIKEY {{api_key}}"},{"key":"Accept","value":"application/x.sl.v1+json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"{{language}}"}],"url":"{{url}}/public/geo/cities?filter[region_id]=30003&filter[county_id]=1","description":"<p>Get a list of cities.</p>\n<h2 id=\"request\">Request</h2>\n<p>Possible parameters:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>include</td>\n<td>Use <em>translations</em> to include all translations at once (<code>premium only</code>).</td>\n</tr>\n<tr>\n<td>filter</td>\n<td>Possible filters: <em>county</em>, <em>region</em>, <em>id</em></td>\n</tr>\n</tbody>\n</table>\n</div><p>Examples:</p>\n<ul>\n<li>?include=translations</li>\n<li>?filter[county]=1</li>\n<li>?filter[id]=12</li>\n<li>?filter[county]=1&amp;filter[region]=1003</li>\n</ul>\n<h2 id=\"response\">Response</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>The city ID</td>\n<td>int</td>\n</tr>\n<tr>\n<td>type</td>\n<td>Indicates if a city is a \"Gemeinde\" (1) or a \"Fraktion\" (2)</td>\n<td>int</td>\n</tr>\n<tr>\n<td>regions</td>\n<td>A city can be located in multiple regions.</td>\n<td>Object</td>\n</tr>\n<tr>\n<td>regions.data</td>\n<td>Each region object is included in the <em>data</em> container</td>\n<td>Object</td>\n</tr>\n<tr>\n<td>regions.data[].id</td>\n<td>The ID of the region</td>\n<td>int</td>\n</tr>\n<tr>\n<td>translations</td>\n<td>Translations of the city data. Only returned if you use the <em>include=translation</em> parameter. Returns three objects <em>de</em>, <em>it</em>, <em>en</em> containing the <em>name</em> parameter</td>\n<td>Object</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Name of the city. Returned in the language as defined in yout request header. Only returned if you do not include translations.</td>\n<td>string</td>\n</tr>\n</tbody>\n</table>\n</div><p>Possible outcomes:</p>\n<ul>\n<li>200</li>\n<li>401</li>\n</ul>\n","urlObject":{"path":["public","geo","cities"],"host":["{{url}}"],"query":[{"key":"filter[region_id]","value":"30003"},{"key":"filter[county_id]","value":"1"}],"variable":[]}},"response":[{"id":"4675ab5b-dabb-4917-8385-4e1387db82cc","name":"Get all cities filtered by region including translations","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"APIKEY {{api_key}}"},{"key":"Accept","value":"application/x.sl.v1+json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"{{language}}"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{url}}/public/geo/cities?filter[region]=1003","host":["{{url}}"],"path":["public","geo","cities"],"query":[{"key":"filter[region]","value":"1003"},{"key":"filter[county]","value":"","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"close","name":"Connection","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 01 Sep 2017 09:40:51 GMT","name":"Date","description":""},{"key":"Server","value":"Apache/2.2.16","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"Vary","value":"Authorization","name":"Vary","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 2,\n            \"county_id\": 0,\n            \"type\": 1,\n            \"zip\": \"39010\",\n            \"regions\": {\n                \"data\": [\n                    {\n                        \"id\": 1003\n                    }\n                ]\n            },\n            \"translations\": {\n                \"de\": {\n                    \"name\": \"Andrian\"\n                },\n                \"it\": {\n                    \"name\": \"Andriano\"\n                },\n                \"en\": {\n                    \"name\": \"Andrian / Andriano\"\n                }\n            }\n        },\n        {\n            \"id\": 12,\n            \"county_id\": 0,\n            \"type\": 1,\n            \"zip\": \"39100\",\n            \"regions\": {\n                \"data\": [\n                    {\n                        \"id\": 1003\n                    }\n                ]\n            },\n            \"translations\": {\n                \"de\": {\n                    \"name\": \"Bozen\"\n                },\n                \"it\": {\n                    \"name\": \"Bolzano\"\n                },\n                \"en\": {\n                    \"name\": \"Bozen / Bolzano\"\n                }\n            }\n        }\n    ],\n    \"meta\": []\n}"}],"_postman_id":"25ff112c-819d-48e9-8987-041fc5a9ba5f"},{"name":"/static/cities","id":"4b94d642-41d1-4208-93c1-cdb9b41eeead","request":{"method":"GET","header":[{"key":"Authorization","value":"APIKEY {{api_key}}"},{"key":"Accept","value":"application/x.sl.v1+json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"{{language}}"}],"url":"{{url}}/public/geo/static/cities","description":"<p>Get a list of cities.</p>\n<h2 id=\"request\">Request</h2>\n<p>Possible parameters:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>include</td>\n<td>Use <em>translations</em> to include all translations at once (<code>premium only</code>).</td>\n</tr>\n<tr>\n<td>filter</td>\n<td>Possible filters: <em>county</em>, <em>region</em>, <em>id</em></td>\n</tr>\n</tbody>\n</table>\n</div><p>Examples:</p>\n<ul>\n<li>?include=translations</li>\n<li>?filter[county]=1</li>\n<li>?filter[id]=12</li>\n<li>?filter[county]=1&amp;filter[region]=1003</li>\n</ul>\n<h2 id=\"response\">Response</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>The city ID</td>\n<td>int</td>\n</tr>\n<tr>\n<td>type</td>\n<td>Indicates if a city is a \"Gemeinde\" (1) or a \"Fraktion\" (2)</td>\n<td>int</td>\n</tr>\n<tr>\n<td>regions</td>\n<td>A city can be located in multiple regions.</td>\n<td>Object</td>\n</tr>\n<tr>\n<td>regions.data</td>\n<td>Each region object is included in the <em>data</em> container</td>\n<td>Object</td>\n</tr>\n<tr>\n<td>regions.data[].id</td>\n<td>The ID of the region</td>\n<td>int</td>\n</tr>\n<tr>\n<td>translations</td>\n<td>Translations of the city data. Only returned if you use the <em>include=translation</em> parameter. Returns three objects <em>de</em>, <em>it</em>, <em>en</em> containing the <em>name</em> parameter</td>\n<td>Object</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Name of the city. Returned in the language as defined in yout request header. Only returned if you do not include translations.</td>\n<td>string</td>\n</tr>\n</tbody>\n</table>\n</div><p>Possible outcomes:</p>\n<ul>\n<li>200</li>\n<li>401</li>\n</ul>\n","urlObject":{"path":["public","geo","static","cities"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"73f7b8e4-3d98-4b42-a73c-e142d4bfcdec","name":"Get all cities filtered by region including translations","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"APIKEY {{api_key}}"},{"key":"Accept","value":"application/x.sl.v1+json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"{{language}}"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{url}}/public/geo/cities?filter[region]=1003","host":["{{url}}"],"path":["public","geo","cities"],"query":[{"key":"filter[region]","value":"1003"},{"key":"filter[county]","value":"","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"close","name":"Connection","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 01 Sep 2017 09:40:51 GMT","name":"Date","description":""},{"key":"Server","value":"Apache/2.2.16","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"Vary","value":"Authorization","name":"Vary","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 2,\n            \"county_id\": 0,\n            \"type\": 1,\n            \"zip\": \"39010\",\n            \"regions\": {\n                \"data\": [\n                    {\n                        \"id\": 1003\n                    }\n                ]\n            },\n            \"translations\": {\n                \"de\": {\n                    \"name\": \"Andrian\"\n                },\n                \"it\": {\n                    \"name\": \"Andriano\"\n                },\n                \"en\": {\n                    \"name\": \"Andrian / Andriano\"\n                }\n            }\n        },\n        {\n            \"id\": 12,\n            \"county_id\": 0,\n            \"type\": 1,\n            \"zip\": \"39100\",\n            \"regions\": {\n                \"data\": [\n                    {\n                        \"id\": 1003\n                    }\n                ]\n            },\n            \"translations\": {\n                \"de\": {\n                    \"name\": \"Bozen\"\n                },\n                \"it\": {\n                    \"name\": \"Bolzano\"\n                },\n                \"en\": {\n                    \"name\": \"Bozen / Bolzano\"\n                }\n            }\n        }\n    ],\n    \"meta\": []\n}"}],"_postman_id":"4b94d642-41d1-4208-93c1-cdb9b41eeead"},{"name":"/counties","id":"59520e8a-f9f1-4e9c-ab93-7ba1088d1317","request":{"method":"GET","header":[{"key":"Authorization","value":"APIKEY {{api_key}}"},{"key":"Accept","value":"application/x.sl.v1+json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"{{language}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{url}}/public/geo/counties","description":"<p>Get a list of counties.</p>\n<h2 id=\"request\">Request</h2>\n<p>Possible parameters:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>include</td>\n<td>Use <em>translations</em> to include all translations at once (<code>premium only</code>).</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"examples---includetranslations\">Examples:\n- ?include=translations</h2>\n<h2 id=\"response\">Response</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>The county ID</td>\n<td>int</td>\n</tr>\n<tr>\n<td>country_id</td>\n<td>ID of the country the county is located in</td>\n<td>int</td>\n</tr>\n<tr>\n<td>meta</td>\n<td>Not used. Always empty.</td>\n<td>Object</td>\n</tr>\n<tr>\n<td>translations</td>\n<td>Translations of the region data. Only returned if you use the <em>include=translation</em> parameter. Returns three objects <em>de</em>, <em>it</em>, <em>en</em> containing the <em>name</em> parameter</td>\n<td>Object</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Name of the county. Returned in the language as defined in yout request header. Only returned if you do not include translations.</td>\n<td>string</td>\n</tr>\n</tbody>\n</table>\n</div><p>Possible outcomes:</p>\n<ul>\n<li>200</li>\n<li>401</li>\n</ul>\n","urlObject":{"path":["public","geo","counties"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"712d8883-6a35-46f5-bd38-80f33d6efe9c","name":"Get a list of counties","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"APIKEY {{api_key}}"},{"key":"Accept","value":"application/x.sl.v1+json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"{{language}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{url}}/public/geo/counties"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"close","name":"Connection","description":""},{"key":"Content-Length","value":"247","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 04 Feb 2018 15:33:48 GMT","name":"Date","description":""},{"key":"Server","value":"Apache/2.2.16","name":"Server","description":""},{"key":"Vary","value":"Authorization","name":"Vary","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 1,\n            \"country_id\": 95,\n            \"name\": \"Südtirol\"\n        },\n        {\n            \"id\": 2,\n            \"country_id\": 95,\n            \"name\": \"Trentino\"\n        }\n    ],\n    \"meta\": []\n}"}],"_postman_id":"59520e8a-f9f1-4e9c-ab93-7ba1088d1317"}],"id":"fb9db02a-d02e-4964-85a0-2508859212de","description":"<p>Use the geography calls to look up any data related to any entity. In the SL API every entity is bound to a unified set of city, region, county and country data.</p>\n","event":[{"listen":"prerequest","script":{"id":"e99a90ef-df1f-4fbc-bbce-ce215c3debcd","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"54323728-aa51-4372-9bc8-d5f02c846f03","type":"text/javascript","exec":[""]}}],"_postman_id":"fb9db02a-d02e-4964-85a0-2508859212de"},{"name":"Places API","item":[{"name":"Accommodations","item":[{"name":"/accommodations","id":"ac716762-f215-4f1c-b6bd-a406f8c97751","request":{"method":"GET","header":[{"key":"Authorization","value":"APIKEY {{api_key}}"},{"key":"Accept","value":"application/x.sl.v1+json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"{{language}}"}],"url":"{{url}}/public/accommodations","description":"<p>Get a list of accommodations.</p>\n<h2 id=\"request\">Request</h2>\n<p>Possible parameters:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>include</td>\n<td>Use <em>translations</em> to include all translations at once (<code>premium only</code>).</td>\n</tr>\n<tr>\n<td>filter</td>\n<td>Please refer to the table below</td>\n</tr>\n</tbody>\n</table>\n</div><p>List of possible filters:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Filter</th>\n<th>Input</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>filter[county]</td>\n<td>County ID (Please refer to the Geography API)</td>\n<td>Returns the accommodations located in the specified county</td>\n</tr>\n<tr>\n<td>filter[region]</td>\n<td>Region ID (Please refer to the Geography API)</td>\n<td>Returns the accommodations located in the specified region</td>\n</tr>\n<tr>\n<td>filter[city]</td>\n<td>City ID   (Please refer to the Geography API)</td>\n<td>Returns the accommodations located in the specified city</td>\n</tr>\n<tr>\n<td>filter[accommodationtype]</td>\n<td>Accommodation type ID   (Please refer to the GET /accommodations/types call)</td>\n<td>Returns the accommodations matching the specified type</td>\n</tr>\n<tr>\n<td>filter[lastmodified]</td>\n<td>Timestamp with timezone offset (Format: 2019-12-12T23:59:59%2B02:00)</td>\n<td>Returns the accommodations were modified since the given date</td>\n</tr>\n<tr>\n<td>filter[q]</td>\n<td>Search string</td>\n<td>Returns the accommodations containing the given search string, e.g. matching the name or description</td>\n</tr>\n</tbody>\n</table>\n</div><p>Examples</p>\n<ul>\n<li>?include=translations</li>\n<li>?filter[region]=1003,1010</li>\n<li>?filter[city]=1000&amp;filter[county]=1</li>\n<li>?filter[accommodationtype]=10020 </li>\n<li>?filter[q]=hotel</li>\n</ul>\n<p>To understand which region, city or county IDs you can use, please refer to one of the <em>Geopgraphy</em> calls.</p>\n<h2 id=\"response\">Response</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Unique ID of the accommodation</td>\n<td>int</td>\n</tr>\n<tr>\n<td>account_id</td>\n<td>Indicates the account to which the accommodation belongs</td>\n<td>int</td>\n</tr>\n<tr>\n<td>origin</td>\n<td>Origin of the accommodation</td>\n<td>string</td>\n</tr>\n<tr>\n<td>address_id</td>\n<td>ID of the address to which the accommodation belongs</td>\n<td>int</td>\n</tr>\n<tr>\n<td>contact_id</td>\n<td>ID of the associated contact_id</td>\n<td>int</td>\n</tr>\n<tr>\n<td>logo_id</td>\n<td>ID of the logo</td>\n<td>int</td>\n</tr>\n<tr>\n<td>picture_id</td>\n<td>ID of the picture</td>\n<td>int</td>\n</tr>\n<tr>\n<td>picture_winter_id</td>\n<td>ID of the winter picture. If provided the winter picture will be set during the winter time between November 1st and March 31st</td>\n<td>int</td>\n</tr>\n<tr>\n<td>in_revision</td>\n<td>Indicates whether the accommodation is in revision or not</td>\n<td>boolean</td>\n</tr>\n<tr>\n<td>class</td>\n<td>Class to which the specific object belongs to (accommodation = 1)</td>\n<td>int</td>\n</tr>\n<tr>\n<td>rating</td>\n<td>Average rating from 1(=low) to 5(=high)</td>\n<td>int</td>\n</tr>\n<tr>\n<td>rating_count</td>\n<td>Number of ratings</td>\n<td>int</td>\n</tr>\n<tr>\n<td>corporate_color</td>\n<td>HexCode Color</td>\n<td>string</td>\n</tr>\n<tr>\n<td>established</td>\n<td>Year of establishment</td>\n<td>int</td>\n</tr>\n<tr>\n<td>closedate</td>\n<td>Close date of the accommodation</td>\n<td>int</td>\n</tr>\n<tr>\n<td>show_address</td>\n<td>Indicates whether the address should be showed</td>\n<td>boolean</td>\n</tr>\n<tr>\n<td>aroundtheclock</td>\n<td>Indicates if the accommodation is open 24/7</td>\n<td>boolean</td>\n</tr>\n<tr>\n<td>bookable_hgv</td>\n<td>Indicates if the accommodation is bookable via bookingsuedtirol.com</td>\n<td>boolean</td>\n</tr>\n<tr>\n<td>status</td>\n<td>Indicates whether the accommodation is enabled or disabled</td>\n<td>boolean</td>\n</tr>\n<tr>\n<td>cippy_auto_connect</td>\n<td>Indicates if the accommodation is automatically connected to cippy</td>\n<td>boolean</td>\n</tr>\n<tr>\n<td>reportmail_statistics</td>\n<td>Indicates if the owner of the accommodation will receive reportmails</td>\n<td>boolean</td>\n</tr>\n<tr>\n<td>internal_notes</td>\n<td>Internal notes regarding the accommodation</td>\n<td>string</td>\n</tr>\n<tr>\n<td>created_by</td>\n<td>Refers to the account that created the accommodation</td>\n<td>int</td>\n</tr>\n<tr>\n<td>updated_by</td>\n<td>Refers to the account that updated the accommodation lastly</td>\n<td>int</td>\n</tr>\n<tr>\n<td>created_at</td>\n<td>Creation time of the accommodation in ISO 8601 format</td>\n<td>string</td>\n</tr>\n<tr>\n<td>updated_at</td>\n<td>Last Time the accommodation was updated</td>\n<td>string</td>\n</tr>\n<tr>\n<td>place_id</td>\n<td>ID of the place</td>\n<td>int</td>\n</tr>\n<tr>\n<td>langavl</td>\n<td>Flag that shows if languages (DE, EN, IT) are available</td>\n<td>boolean</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Name of the accommodation</td>\n<td>string</td>\n</tr>\n<tr>\n<td>teaser</td>\n<td>Short teaser of the accommodation</td>\n<td>string</td>\n</tr>\n<tr>\n<td>description</td>\n<td>Description of the accommodation</td>\n<td>string</td>\n</tr>\n<tr>\n<td>openinghoursnotes</td>\n<td>Additional information about the opening hours</td>\n<td>string</td>\n</tr>\n<tr>\n<td>member_of</td>\n<td>Name of the association that the accommodation is a member of</td>\n<td>string</td>\n</tr>\n<tr>\n<td>keywords</td>\n<td>Keywords for the accommodation</td>\n<td>string</td>\n</tr>\n<tr>\n<td>url</td>\n<td>URL of the accommodation</td>\n<td>string</td>\n</tr>\n<tr>\n<td>url_origin</td>\n<td>URL of accommodation on bookingsuedtirol.live</td>\n<td>string</td>\n</tr>\n<tr>\n<td>pricelevel</td>\n<td>Pricelevel of the accomodation</td>\n<td>integer</td>\n</tr>\n<tr>\n<td>seo_index</td>\n<td>Indicates if the accomodation is indexed by search engines</td>\n<td>boolean</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["public","accommodations"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"32233826-4871-4354-a03c-293f7341a48a","name":"/accommodations","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"APIKEY {{api_key}}"},{"key":"Accept","value":"application/x.sl.v1+json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"{{language}}"}],"url":"{{url}}/public/accommodations"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Mon, 02 Dec 2019 11:51:46 GMT"},{"key":"ETag","value":"W/\"f4b9a99fcc36c617aac8de2224e95123412ecdc9\""},{"key":"Server","value":"nginx/1.11.9"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"transfer-encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 664,\n            \"account_id\": 1089,\n            \"origin\": \"hgv\",\n            \"address_id\": 5181,\n            \"contact_id\": 674,\n            \"logo_id\": 357,\n            \"picture_id\": 83710,\n            \"status\": 1,\n            \"is_claimed\": 1,\n            \"seo_index\": 1,\n            \"in_revision\": 0,\n            \"class\": 1,\n            \"rating\": 0,\n            \"rating_count\": 0,\n            \"corporate_color\": \"\",\n            \"pricelevel\": 0,\n            \"established\": 0,\n            \"closedate\": null,\n            \"show_address\": 1,\n            \"aroundtheclock\": 0,\n            \"bookable_hgv\": 1,\n            \"cippy_auto_connect\": 1,\n            \"reportmail_statistics\": 0,\n            \"internal_notes\": \"06.03.19 LIS: UaB (Urlaub auf dem Bauernhof)\\nsentres deaktiviert.\",\n            \"created_by\": 3,\n            \"updated_by\": 4207,\n            \"created_at\": \"2017-03-23T15:46:20+00:00\",\n            \"updated_at\": \"2019-03-12T14:23:43+00:00\",\n            \"place_id\": 664,\n            \"langavl\": 1,\n            \"name\": \"Feldbauer\",\n            \"teaser\": \"In Holzbauweise 2010 neu erbauter Bauernhof inmitten von Obstwiesen, ruhig und idyllisch mit herrlichem Panorama.\",\n            \"description\": \"Urlaub auf dem Bauernhof mit drei Ferienwohnungen, ausgestattet mit Wohnk&uuml;che und Terrasse, zwei getrennten Schlafzimmern und&nbsp;2 FeWo verf&uuml;gen auch &uuml;ber&nbsp;2 B&auml;der.\\r\\n\\r\\nDie Panoramalage mit Liegewiese und Kinderspielplatz sorgt f&uuml;r Erholung und Entspannung vom ersten Moment an.\",\n            \"openinghoursnotes\": \"\",\n            \"member_of\": \"\",\n            \"keywords\": \"\",\n            \"url\": \"feldbauer-tisens\",\n            \"url_origin\": \"https://www.bookingsuedtirol.com/index.php?action=view&id=12229\"\n        },\n        {\n            \"id\": 678,\n            \"account_id\": 337,\n            \"origin\": \"hgv\",\n            \"address_id\": 5195,\n            \"contact_id\": 688,\n            \"logo_id\": 61605,\n            \"picture_id\": 61606,\n            \"status\": 1,\n            \"is_claimed\": 1,\n            \"seo_index\": 1,\n            \"in_revision\": 0,\n            \"class\": 1,\n            \"rating\": 0,\n            \"rating_count\": 0,\n            \"corporate_color\": \"\",\n            \"pricelevel\": 0,\n            \"established\": 0,\n            \"closedate\": null,\n            \"show_address\": 1,\n            \"aroundtheclock\": 0,\n            \"bookable_hgv\": 1,\n            \"cippy_auto_connect\": 1,\n            \"reportmail_statistics\": 0,\n            \"internal_notes\": \"190307 lis import versucht. ncith richtig gelaufen?\",\n            \"created_by\": 3,\n            \"updated_by\": 4207,\n            \"created_at\": \"2017-03-23T15:46:40+00:00\",\n            \"updated_at\": \"2019-03-07T17:54:39+00:00\",\n            \"place_id\": 678,\n            \"langavl\": 1,\n            \"name\": \"Hotel Dolomiten\",\n            \"teaser\": \"Und Sie fühlen sich wohl!.. Herzlich Willkommen in unserem gemütlichen Hotel Dolomiten und in Toblach, die Nr. 1 wenn es um Ihren Urlaub geht.\",\n            \"description\": \"Hotel Dolomiten,\\r\\nein kulinarisches Erlebnis. Wir bieten neben der traditionellen und internationalen Küche für alle Pizzafreunde eine eigene Pizzeria an. Frisch aus dem Holzofen auf den gedeckten Tisch.\\r\\nDie entspannte Atmosphäre, die komfortable Wohnlichkeit und unsere vorzügliche Küche mit Menüauswahl werden dazu beitragen, dass Ihr Urlaub zu einer Erholung wird.\",\n            \"openinghoursnotes\": \"\",\n            \"member_of\": \"\",\n            \"keywords\": \"\",\n            \"url\": \"hotel-dolomiten-toblach\",\n            \"url_origin\": \"https://www.bookingsuedtirol.com/index.php?action=view&id=10652\"\n        },\n        {\n            \"id\": 697,\n            \"account_id\": 1100,\n            \"origin\": \"hgv\",\n            \"address_id\": 5214,\n            \"contact_id\": 707,\n            \"logo_id\": null,\n            \"picture_id\": 57408,\n            \"status\": 1,\n            \"is_claimed\": 1,\n            \"seo_index\": 1,\n            \"in_revision\": 0,\n            \"class\": 1,\n            \"rating\": 0,\n            \"rating_count\": 1,\n            \"corporate_color\": \"\",\n            \"pricelevel\": 0,\n            \"established\": 0,\n            \"closedate\": null,\n            \"show_address\": 1,\n            \"aroundtheclock\": 0,\n            \"bookable_hgv\": 1,\n            \"cippy_auto_connect\": 1,\n            \"reportmail_statistics\": 0,\n            \"internal_notes\": \"\",\n            \"created_by\": 3,\n            \"updated_by\": 4207,\n            \"created_at\": \"2017-03-23T15:47:08+00:00\",\n            \"updated_at\": \"2019-03-07T17:59:18+00:00\",\n            \"place_id\": 697,\n            \"langavl\": 1,\n            \"name\": \"Dolomitenblick alps boutique hotel\",\n            \"teaser\": \"Hotel Dolomitenblick in Terenten!\\r\\nUrlaub im Sonnenparadies...\",\n            \"description\": \"Ob zum Wandern und Bergsteigen in der warmen Jahreszeit oder zum Skifahren oder Langlaufen im Winter – das Sonnendorf Terenten ist das ganze Jahr über ein Urlaubshit!\\r\\n\\r\\nAuf dem sonnigen Hochplateau von Terenten liegt auch das Hotel Dolomitenblick, geführt von Familie Lechner. \\r\\n Sie haben richtig gewählt! Wir haben für Sie 2013 umfangreich erneuert und wir werden Sie in Ihren Urlaubstagen im Sonnendorf verwöhnen. \\r\\nWir befinden uns in östlicher Richtung in fantastischer und ruhiger Panoramalage circa 1 km vom Zentrum entfernt. \\r\\n\\r\\n\\r\\nDer Kronplatz, Südtirols Skiberg Nr. 1, liegt nur 20 Kilometer entfernt. Hier erwarten Sie 100 Pistenkilometer und spektakuläre Talabfahrten.\\r\\n\\r\\nDie Wanderregion rund um Terenten und das Hotel Dolomitenblick erfüllt alle Wünsche. Die Wanderwege führen über sanfte Wiesenlandschaften, vorbei an den bekannten Erdpyramiden, hinauf in die Almenregionen mit ihren gemütlichen Hütten zum Einkehren. Die nahen Pfunderer Berge sind bekannt für die vielen, aussichtsreichen Gipfel- und Hüttentouren, wo sie auf so manchen stillen Bergsee treffen.\\r\\n\\r\\nKommen Sie vorbei und besuchen uns.... \\r\\nIhre Familie Lechner\",\n            \"openinghoursnotes\": \"\",\n            \"member_of\": \"\",\n            \"keywords\": \"\",\n            \"url\": \"dolomitenblick-alps-boutique-hotel-terenten\",\n            \"url_origin\": \"https://www.bookingsuedtirol.com/index.php?action=view&id=10404\"\n        },\n        {\n            \"id\": 706,\n            \"account_id\": 132,\n            \"origin\": \"hgv\",\n            \"address_id\": 5223,\n            \"contact_id\": 716,\n            \"logo_id\": null,\n            \"picture_id\": 63013,\n            \"status\": 1,\n            \"is_claimed\": 1,\n            \"seo_index\": 1,\n            \"in_revision\": 0,\n            \"class\": 1,\n            \"rating\": 0,\n            \"rating_count\": 0,\n            \"corporate_color\": \"\",\n            \"pricelevel\": 0,\n            \"established\": 0,\n            \"closedate\": null,\n            \"show_address\": 1,\n            \"aroundtheclock\": 0,\n            \"bookable_hgv\": 1,\n            \"cippy_auto_connect\": 1,\n            \"reportmail_statistics\": 0,\n            \"internal_notes\": \"\",\n            \"created_by\": 3,\n            \"updated_by\": 3,\n            \"created_at\": \"2017-03-23T15:47:16+00:00\",\n            \"updated_at\": \"2019-03-12T14:25:44+00:00\",\n            \"place_id\": 706,\n            \"langavl\": 1,\n            \"name\": \"Hotel Tolderhof\",\n            \"teaser\": \"Hotel &amp; Restaurant Tolderhof***s in Innichen/Winnebach in S&uuml;dtirol in der Region der 3 Zinnen, Dolomiten f&uuml;r Familien, Aktive, Skifahrer, Naturfreunde.\",\n            \"description\": \"Unser familiengef&uuml;hrtes 3s-Sterne-Hotel befindet sich inmitten der Natur am Waldrand in Innichen/Winnebach. Durch unsere g&uuml;nstige Lage sind wir die ideale Unterkunft f&uuml;r Familien, Wanderer, Naturliebhaber und Sportfreaks. Hier finden Sie Ruhe und Entspannung, ohne jedoch auf Komfort und Service verzichten zu m&uuml;ssen. Wir bieten komfortable Hotelzimmer im Landhausstil, eine ausgezeichnete, vielf&auml;ltige K&uuml;che, einen Wellnessbereich zum relaxen, ein eigenes Hirschgehege mit unseren Toldis, eigenen Shuttle zum Skigebiet 3 Zinnen, Skidepot uvm. F&uuml;r unsere kleinen G&auml;ste haben wir jede Menge zu bieten: Spielplatz indoor und outdoor, Kindermen&uuml;s, Stempelparkours zu den Toldis. Neu: gem&uuml;tliche J&auml;gerstube f&uuml;r gutes Essen in gem&uuml;tlicher Atmosph&auml;re. Wir freuen uns auf Sie.\",\n            \"openinghoursnotes\": \"\",\n            \"member_of\": \"\",\n            \"keywords\": \"\",\n            \"url\": \"hotel-tolderhof-winnebach\",\n            \"url_origin\": \"https://www.bookingsuedtirol.com/index.php?action=view&id=10744\"\n        },\n        {\n            \"id\": 708,\n            \"account_id\": 305,\n            \"origin\": \"hgv\",\n            \"address_id\": 5225,\n            \"contact_id\": 718,\n            \"logo_id\": 68124,\n            \"picture_id\": 68125,\n            \"status\": 1,\n            \"is_claimed\": 1,\n            \"seo_index\": 1,\n            \"in_revision\": 0,\n            \"class\": 1,\n            \"rating\": 0,\n            \"rating_count\": 0,\n            \"corporate_color\": \"\",\n            \"pricelevel\": 0,\n            \"established\": 0,\n            \"closedate\": null,\n            \"show_address\": 1,\n            \"aroundtheclock\": 0,\n            \"bookable_hgv\": 1,\n            \"cippy_auto_connect\": 1,\n            \"reportmail_statistics\": 0,\n            \"internal_notes\": \"\",\n            \"created_by\": 3,\n            \"updated_by\": 3,\n            \"created_at\": \"2017-03-23T15:47:18+00:00\",\n            \"updated_at\": \"2019-09-03T09:32:52+00:00\",\n            \"place_id\": 708,\n            \"langavl\": 1,\n            \"name\": \"Hotel Restaurant Fischerwirt\",\n            \"teaser\": \"Bekannt ist der Durnholzer See für seine Schönheit, die natürliche Idylle und die wunderbare Ruhe. Dieses Naturschauspiel lässt sich jetzt noch besser genießen, im neu erbauten Fischerwirt direkt am See. Kaffee und Kuchen, köstliche Eisbecher auf de\",\n            \"description\": \"Wer im Fischerwirt wohnt, entspannt im hauseigenen Wellness-Bereich. Schwitzen in der finnischen Sauna oder ein Dampfbad genießen; im Ruheraum die Seele baumeln lassen oder im Wasserbett ruhen: Erholung wird im Fischerwirt leicht gemacht. \\r\\nAuch Tagesgäste sind auf Vormerkung im Wellness-Bereich herzlich willkommen. \\r\\nFamilie Helene und Andreas Premstaller führt den Fischerwirt am Durnholzersee mit Freude. Gemütlichkeit und Gastfreundschaft sind hier zuhause. Gemeinsam mit den Kindern und einem Team von motivierten Mitarbeitern gelingt es den Gastgebern, gewohnte Qualität zu bieten und trotzdem mit einem immer neuen Angebot zu überraschen. So ist eine Einkehr beim Fischerwirt ein immer neues Erlebnis mit der Garantie zum Wohlfühlen.\\r\\n\\r\\nDer Blick auf den See bestimmt auch das Wohnen im Fischerwirt. Fünf Appartements erwarten die Gäste mit einem einzigen Ziel: wohlfühlen. \\r\\nNur mit natürlichen Materialien ausgestattet, komfortabel eingerichtet und liebevoll geplant bis ins letzte Detail kommt man im Fischerwirt zur Ruhe. Alle Appartements haben einen Balkon mit Blick auf den See, Dusche und WC, eine moderne Küche mit Ceran-Kochfeld und Spülmaschine, Satelliten-Fernsehen und Telefon. Die größeren Wohnungen bieten Entspannung auch in der Badewanne. \\r\\nDer Gast kann wählen: nur Übernachtung, Frühstück im Fischerwirt oder Halbpension. Auf die Gäste wartet ein herzliches Frühstück, abgestimmt nach den persönlichen Vorzügen und abends ein Vier-Gänge-Menü. Gerne berücksichtigt Chef Andreas auch hier nach Möglichkeit persönliche Wünsche. Jederzeit haben die Gäste im Fischerwirt die Möglichkeit die Vorzüge der À-la-Carte-Küche zu genießen.\",\n            \"openinghoursnotes\": \"\",\n            \"member_of\": \"\",\n            \"keywords\": \"\",\n            \"url\": \"hotel-restaurant-fischerwirt-durnholz\",\n            \"url_origin\": \"https://www.bookingsuedtirol.com/index.php?action=view&id=11084\"\n        },\n        {\n            \"id\": 710,\n            \"account_id\": 1126,\n            \"origin\": \"hgv\",\n            \"address_id\": 5227,\n            \"contact_id\": 720,\n            \"logo_id\": 69852,\n            \"picture_id\": 69853,\n            \"status\": 1,\n            \"is_claimed\": 1,\n            \"seo_index\": 1,\n            \"in_revision\": 0,\n            \"class\": 1,\n            \"rating\": 0,\n            \"rating_count\": 0,\n            \"corporate_color\": \"\",\n            \"pricelevel\": 0,\n            \"established\": 0,\n            \"closedate\": null,\n            \"show_address\": 1,\n            \"aroundtheclock\": 0,\n            \"bookable_hgv\": 1,\n            \"cippy_auto_connect\": 1,\n            \"reportmail_statistics\": 0,\n            \"internal_notes\": \"\",\n            \"created_by\": 3,\n            \"updated_by\": 4207,\n            \"created_at\": \"2017-03-23T15:47:20+00:00\",\n            \"updated_at\": \"2019-03-12T09:19:32+00:00\",\n            \"place_id\": 710,\n            \"langavl\": 1,\n            \"name\": \"Sporthotel Griesfeld & Residenz\",\n            \"teaser\": \"Hotel Griesfeld in Sankt Johann im Ahrntal / Südtirol \\r\\n\\r\\nGrüß Gott und herzlich Willkommen im Hotel Griesfeld. Wir sind ein familiengeführtes Hotel und liegen inmitten einer wunderschönen Bergwelt in den Alpen. Das liebevoll geführte Haus mit seine\",\n            \"description\": \"Hotel Griesfeld in Sankt Johann im Ahrntal / Südtirol \\r\\n\\r\\nGrüß Gott und herzlich Willkommen im Hotel Griesfeld. Wir sind ein familiengeführtes Hotel und liegen inmitten einer wunderschönen Bergwelt in den Alpen. Das liebevoll geführte Haus mit seiner heimeligen Atmosphäre ist das ideale Umfeld für Ihre Traumferien.\\r\\n\\r\\nGenießen Sie Ihren Urlaub zu jeder Jahreszeit mit allen Sinnen. Um Ihnen den Aufenthalt in unseren Häusern zu verschönern, haben wir Griesfelds Verwöhnpension geschaffen. Im Hotel wurden die neuen Bäder alle mit Bidet ausgestattet und vergrößert.\\r\\n\\r\\nDie Skigebiete Klausberg und Speikboden, aber auch die Winterwanderwege im Ahrntal, erwarten Sie ab Dezember. Für Unterhaltung im Hotel sowie auf den Berg ist bestens gesorgt. Was gibt es schöneres als wenn man unsere Kinder glücklich im Schnee herumtoben sieht?\\r\\n\\r\\nWir begrüßen Sie in den Bergen!\\r\\nHannelore, Peppi, Patrizia und Emily Prenn\",\n            \"openinghoursnotes\": \"\",\n            \"member_of\": \"\",\n            \"keywords\": \"\",\n            \"url\": \"sporthotel-griesfeld-residenz-st-johann-ahrntal\",\n            \"url_origin\": \"https://www.bookingsuedtirol.com/index.php?action=view&id=11199\"\n        },\n        {\n            \"id\": 714,\n            \"account_id\": 2179,\n            \"origin\": \"hgv\",\n            \"address_id\": 5231,\n            \"contact_id\": 724,\n            \"logo_id\": 357,\n            \"picture_id\": 55963,\n            \"status\": 1,\n            \"is_claimed\": 1,\n            \"seo_index\": 1,\n            \"in_revision\": 0,\n            \"class\": 1,\n            \"rating\": 0,\n            \"rating_count\": 0,\n            \"corporate_color\": \"\",\n            \"pricelevel\": 0,\n            \"established\": 0,\n            \"closedate\": null,\n            \"show_address\": 1,\n            \"aroundtheclock\": 0,\n            \"bookable_hgv\": 1,\n            \"cippy_auto_connect\": 1,\n            \"reportmail_statistics\": 0,\n            \"internal_notes\": \"\",\n            \"created_by\": 3,\n            \"updated_by\": 4207,\n            \"created_at\": \"2017-03-23T15:47:25+00:00\",\n            \"updated_at\": \"2019-08-06T15:10:30+00:00\",\n            \"place_id\": 714,\n            \"langavl\": 1,\n            \"name\": \"Hotel Mirabel\",\n            \"teaser\": \"Herzliches Willkommen im Hotel Mirabel !Verbringen Sie entspannte Urlaubstage in der gepflegten Atmosph&auml;re unseres komfortablen Hauses und finden Sie Erholung in der reizvollen Landschaft der Dolomiten - Unesco\",\n            \"description\": \"Unsere Preise beinhalten: Internationale und italienische K&uuml;che mit Men&uuml;s nach Wahl dazu Salat und Gem&uuml;sebuffet Reichhaltiges Fr&uuml;hst&uuml;cksbuffet Nachmittags kleines Kuchenbuffet (nur Winter) Grillparty ( nur Sommer ) Finnische Sauna, Infrarotsauna, t&uuml;rkisches Kr&auml;uterdampfbad, Erlebnisduschen, Whirlpool Personenaufzug Fahrradverleih + Ping Poing ( nur Sommer ) Spielraum f&uuml;r Kinder mit Nintendo Wii Privater Parkplatz Garten mit Liegest&uuml;hle ( nur Sommer ) Internetzugang mit eigenem Pc ist kostenlos Gegen Bezahlung: Garage - Massagebett St. Vigil liegt auf 1.201 m Meeresh&ouml;he in einem Seitental des Gadertales, Alta Badia, im Herzen der Dolomiten. Die ladinische Kultur ist in den Traditionen und Gebr&auml;uchen S&uuml;dtirol tief verwurzelt. St. Vigil in Enneberg geh&ouml;rt zum Skigebiet Kronplatz, das jedes Jahr unz&auml;hlige Skifahrer und Touristen anzieht. Das Hotel Mirabel befindet sich direkt an der Talstation, Snowboard, Alpinschi, Langlaufen, Schneeschuhe wandern, hier ist alles m&ouml;glich. Das Dorf ist versunken in die Bergwelt der Dolomiten und umgeben von unber&uuml;hrter Natur.\",\n            \"openinghoursnotes\": \"\",\n            \"member_of\": \"\",\n            \"keywords\": \"\",\n            \"url\": \"hotel-mirabel-st-vigil-in-enneberg\",\n            \"url_origin\": \"https://www.bookingsuedtirol.com/index.php?action=view&id=10321\"\n        },\n        {\n            \"id\": 716,\n            \"account_id\": 1088,\n            \"origin\": \"hgv\",\n            \"address_id\": 5233,\n            \"contact_id\": 726,\n            \"logo_id\": 221533,\n            \"picture_id\": 68551,\n            \"status\": 1,\n            \"is_claimed\": 1,\n            \"seo_index\": 1,\n            \"in_revision\": 0,\n            \"class\": 1,\n            \"rating\": 0,\n            \"rating_count\": 0,\n            \"corporate_color\": \"\",\n            \"pricelevel\": 0,\n            \"established\": 0,\n            \"closedate\": null,\n            \"show_address\": 1,\n            \"aroundtheclock\": 0,\n            \"bookable_hgv\": 1,\n            \"cippy_auto_connect\": 1,\n            \"reportmail_statistics\": 0,\n            \"internal_notes\": \"\",\n            \"created_by\": 3,\n            \"updated_by\": 331,\n            \"created_at\": \"2017-03-23T15:47:29+00:00\",\n            \"updated_at\": \"2019-07-30T14:28:49+00:00\",\n            \"place_id\": 716,\n            \"langavl\": 1,\n            \"name\": \"Hotel Therme Meran\",\n            \"teaser\": \"Das Hotel Therme Meran im Stadtzentrum Merans, direkt am Thermenpark gelegen, begeistert durch modernes Design, seinem Sky Spa und den direkten Bademanteltunnel zur Therme Meran.\",\n            \"description\": \"Vom Südtiroler Stararchitekten Matteo Thun gestaltet gilt das Hotel Therme Meran mit seiner zeitgemäßen Architektur als zentrales Aushängeschild für das neue Meran. An der wohl schönsten Piazza der Stadt liegt das lifestylige Wellnesshotel, das mit farbenfrohen Accessoires und natürlichen Baumaterialien wie Holz, Glas und Stein zeugen. Kuhfelle und Hirschkopf-Leuchter treffen auf edle Stoffe in Weinrot und Gold und verleihen so dem alpinen Stil Südtirols einen modernen Touch. Dank der zentralen Lage können viele Ausflüge zu Fuß unternommen werden. In nur wenigen Schritten erreicht man die Altstadt der einstigen Kurstadt, die gerade in den letzten Jahren mit vielen neuen Restaurants und Cafès überzeugte. Open-Air-Events und zahlreiche Veranstaltungen über das Jahr verteilt bringen Abwechslung und sorgen zusätzlich zum milden Meraner Klima für italienisches Flair. Auch das neu eröffnete „Palmen Lounge“ des Hotel Therme Meran unterstreicht das Südländische Flair – ganz zu schweigen von der mediterran geprägten Küche. Im hoteleigenen „Sky Spa“, mit einem gorßen Angebot an  Beauty- und Entspannungsanwendungen, mit beheizten Infinitypool, drei Whirlpools, drei Saunen und nicht zuletzt dem atemberaubenden Blick auf die Bergwelt Südtirols, werden Gäste rundum verwöhnt. Ein Highlight ist auch der „Bademanteltunnel“ der das Hotel direkt mit den Bädern der Therme Meran verbindet. Der Eintritt und die Nutzung der Pools sind bereits im Übernachtungspreis des Hotels inbegriffen.\",\n            \"openinghoursnotes\": \"\",\n            \"member_of\": \"\",\n            \"keywords\": \"\",\n            \"url\": \"hotel-therme-meran-meran\",\n            \"url_origin\": \"https://www.bookingsuedtirol.com/index.php?action=view&id=11115\"\n        },\n        {\n            \"id\": 723,\n            \"account_id\": 2965,\n            \"origin\": \"hgv\",\n            \"address_id\": 5240,\n            \"contact_id\": 733,\n            \"logo_id\": null,\n            \"picture_id\": 76109,\n            \"status\": 1,\n            \"is_claimed\": 1,\n            \"seo_index\": 1,\n            \"in_revision\": 0,\n            \"class\": 1,\n            \"rating\": 0,\n            \"rating_count\": 0,\n            \"corporate_color\": \"\",\n            \"pricelevel\": 0,\n            \"established\": 0,\n            \"closedate\": null,\n            \"show_address\": 1,\n            \"aroundtheclock\": 0,\n            \"bookable_hgv\": 1,\n            \"cippy_auto_connect\": 1,\n            \"reportmail_statistics\": 0,\n            \"internal_notes\": \"\",\n            \"created_by\": 3,\n            \"updated_by\": 4207,\n            \"created_at\": \"2017-03-23T15:47:39+00:00\",\n            \"updated_at\": \"2019-08-27T13:08:07+00:00\",\n            \"place_id\": 723,\n            \"langavl\": 1,\n            \"name\": \"Hotel Maraias\",\n            \"teaser\": \"Lassen Sie sich einladen zu einem Wohlf&uuml;hlurlaub der besonderen Art im Herzen der faszinierenden und idyllischen Bergwelt des oberen Vinschgaus!\",\n            \"description\": \"Lassen Sie sich einladen zu einem Wohlf&uuml;hlurlaub der besonderen Art im Herzen der faszinierenden und idyllischen Bergwelt des oberen Vinschgaus! Unser Hotel pr&auml;sentiert sich als herzlicher und gastfreundlicher Familienbetrieb in stilvollem Ambiente am oberen Ortsrand von Burgeis und dennoch nahe am Zentrum gelegen.\\r\\n\\r\\nLassen Sie sich mit auserlesenen kulinarischen K&ouml;stlichkeiten verw&ouml;hnen und genie&szlig;en Sie die Vielfalt unserer K&uuml;che.\\r\\n\\r\\nUnsere stilvoll eingerichteten und behaglichen Zimmer laden zum Wohlf&uuml;hlen und Entspannen ein! Gem&uuml;tlichkeit wird gro&szlig;geschrieben! Bestaunen Sie den herrlichen Panoramablick auf die wei&szlig;en Gipfel der majest&auml;tischen Ortlergruppe, sowie den Talblick in den weiten oberen Vinschgau.\\r\\n\\r\\nRund ums Haus laden unsere Wiesen und G&auml;rten zum Verweilen ein &ndash; Raum und Platz zum Wohlf&uuml;hlen f&uuml;r die ganze Familie.\\r\\n\\r\\nDer obere Vinschgau ist ein einzigartiges Wanderparadies. Die b&auml;uerlich gepr&auml;gte Landschaft, Seen, Berge, Wiesen mit Bergblumen, Waalwege, H&ouml;henwege, Erlebnispfade, Almen, Schutzh&uuml;tten, Nationalparke und Berggipfel warten darauf, besucht und entdeckt zu werden.\\r\\n\\r\\nBurgeis liegt in einer g&uuml;nstigen Lage f&uuml;r Wintersportler und ist auch ein idealer Ausgangspunkt f&uuml;r Schneeschuhwanderungen. Erleben Sie die Faszination Schitouren und besteigen Sie Aussichtspunkte des oberen Vinschgaus. Unser Hausberg, der Watles, ist ein Schigebiet mit modernen Anlagen, das sein famili&auml;res Flair bewahrt hat.\",\n            \"openinghoursnotes\": \"\",\n            \"member_of\": \"\",\n            \"keywords\": \"\",\n            \"url\": \"hotel-maraias-burgeis\",\n            \"url_origin\": \"https://www.bookingsuedtirol.com/index.php?action=view&id=11633\"\n        },\n        {\n            \"id\": 767,\n            \"account_id\": 1,\n            \"origin\": \"hgv\",\n            \"address_id\": 5284,\n            \"contact_id\": 777,\n            \"logo_id\": 357,\n            \"picture_id\": 81258,\n            \"status\": 1,\n            \"is_claimed\": 0,\n            \"seo_index\": 1,\n            \"in_revision\": 0,\n            \"class\": 1,\n            \"rating\": 0,\n            \"rating_count\": 0,\n            \"corporate_color\": \"\",\n            \"pricelevel\": 0,\n            \"established\": 0,\n            \"closedate\": null,\n            \"show_address\": 1,\n            \"aroundtheclock\": 0,\n            \"bookable_hgv\": 1,\n            \"cippy_auto_connect\": 1,\n            \"reportmail_statistics\": 0,\n            \"internal_notes\": \"\",\n            \"created_by\": 3,\n            \"updated_by\": 3,\n            \"created_at\": \"2017-03-23T15:48:30+00:00\",\n            \"updated_at\": \"2019-09-03T02:51:55+00:00\",\n            \"place_id\": 767,\n            \"langavl\": 1,\n            \"name\": \"Hotel Armin\",\n            \"teaser\": \"Hotel im Dorfzentrum mit famili&auml;rer F&uuml;hrung. Freundliche Atmosph&auml;re, gehobener Wohnkonfort. Bekannt gute K&uuml;che mit einheimischen und internationalen Spezialit&auml;ten und grosses Weinsortiment. Neuer Wellnesbereich.\",\n            \"description\": \"Das Hotel liegt im Zentrum von Wolkenstein, ca. 300 m von den Skipisten und 100 m vom Nivesplatz (Hauptplatz).\\r\\nParkm&ouml;glichkeiten gibt es kostenfrei vor dem Hotel oder auf Bezahlung in der Parkgarage Nives.\\r\\n\\r\\nAlle Zimmer sind in einen alpenl&auml;ndischen Stil eingerichtet und sind mit Flachbildschirm TV, nationale und internationale Satellitenkan&auml;le, Safe, Wifi Verbindung, Bad mit Dusche und/oder Badewanne ausgestattet. Fast alle Zimmer haben ein Balkon.\\r\\nDas Hotel verf&uuml;gt &uuml;ber ein Wellnessbereich mit finnischer Sauna, Dampfbad, Niedrigtemperatursauna, Whirlpool, Kneippbecken, Erlebnisdusche, Solarium und zwei Relaxzonen.\\r\\nIm Speisesaal wird am Abend ein f&uuml;nf-G&auml;nge Men&uuml; zur Auswahl serviert, dazu gibt es eine gro&szlig;e Auswahl an nationalen und internationalen Weine. Einmal pro Woche wird ein Tirolerabend organisiert wo heimische Spezlialit&auml;ten serviert werden und einmal pro Woche wird ein Gala Abend mit Aperitif organisiert.\\r\\nAm Morgen gibt es ein reichhaltiges Fr&uuml;hst&uuml;cksb&uuml;ffet, Nachmittags werden jeden Tag ab 15 Uhr frische hausgemachte Kuchen an der Bar angeboten.\\r\\nF&uuml;r die Wintersaison findet man im Untergescho&szlig; einen Skiraum mit Skischuhheizung.\\r\\nDas Hotel hat in der Wintersaison einen eigenen Shuttle der die G&auml;ste kostenlos zu den Pisten f&uuml;hrt.\\r\\nIm Hotel befindet sich auch die &bdquo;Armin&rsquo;s Grillstube&ldquo;, ein &ouml;ffentliches a la carte Restaurant was im Jahr 2014 von der Michelin Guide engetragen wurde.\\r\\n\\r\\nDas Hotel wurde seit 2006 bis heute komplett renoviert.\",\n            \"openinghoursnotes\": \"\",\n            \"member_of\": \"\",\n            \"keywords\": \"\",\n            \"url\": \"hotel-armin-wolkenstein-in-groeden\",\n            \"url_origin\": \"https://www.bookingsuedtirol.com/index.php?action=view&id=12014\"\n        },\n        {\n            \"id\": 774,\n            \"account_id\": 3029,\n            \"origin\": \"hgv\",\n            \"address_id\": 5291,\n            \"contact_id\": 784,\n            \"logo_id\": 67453,\n            \"picture_id\": 67454,\n            \"status\": 1,\n            \"is_claimed\": 1,\n            \"seo_index\": 1,\n            \"in_revision\": 0,\n            \"class\": 1,\n            \"rating\": 0,\n            \"rating_count\": 0,\n            \"corporate_color\": \"\",\n            \"pricelevel\": 0,\n            \"established\": 0,\n            \"closedate\": null,\n            \"show_address\": 1,\n            \"aroundtheclock\": 0,\n            \"bookable_hgv\": 1,\n            \"cippy_auto_connect\": 1,\n            \"reportmail_statistics\": 0,\n            \"internal_notes\": \"\",\n            \"created_by\": 3,\n            \"updated_by\": 4207,\n            \"created_at\": \"2017-03-23T15:48:42+00:00\",\n            \"updated_at\": \"2019-08-29T06:20:52+00:00\",\n            \"place_id\": 774,\n            \"langavl\": 1,\n            \"name\": \"Hotel Bergschlössl\",\n            \"teaser\": \"Das 4 Sterne Wander- Wellnesshotel Südtirol mit interessantem Aktivprogramm\\r\\nund der sagenhaften Schlössl- Unterhaltungsbühne in den Dolomiten\",\n            \"description\": \"Das 4 Sterne Naturidyllhotel Bergschlössl liegt im ruhigen Lüsnertal am Eingang zu den Dolomiten.\\r\\n Ein familiär geführtes Wander- Wellnesshotel mit vielen märchenhaften Extras lässt den Alltagsstress\\r\\n leicht vergessen und bringt Genuss und Erholung.\\r\\n Täglich geführte Wanderungen in die einzigartige Natur der Dolomiten gehören zum abwechslungsreichen Schlössl- Aktivprogramm\\r\\n Der zarte Duft einheimischer Hölzer durchzieht die Zimmer und Suiten im Wander- Wellnesshotel,\\r\\n die genussvoll-leichte Küche basiert auf besten frischen Südtiroler Produkten, in der alpinen \\r\\nSchlössl- Wellnesswelt wirken Wald und Kräuter aus der Natur wohltuend auf Körper und Geist,\\r\\n und abwechslungsreiche Musik- und Kunstveranstaltungen bringen Leben und Kultur in die Schlösslmauern.\",\n            \"openinghoursnotes\": \"\",\n            \"member_of\": \"\",\n            \"keywords\": \"\",\n            \"url\": \"hotel-bergschloessl-luesen\",\n            \"url_origin\": \"https://www.bookingsuedtirol.com/index.php?action=view&id=11037\"\n        },\n        {\n            \"id\": 775,\n            \"account_id\": 1,\n            \"origin\": \"hgv\",\n            \"address_id\": 5292,\n            \"contact_id\": 785,\n            \"logo_id\": null,\n            \"picture_id\": 63400,\n            \"status\": 1,\n            \"is_claimed\": 0,\n            \"seo_index\": 1,\n            \"in_revision\": 0,\n            \"class\": 1,\n            \"rating\": 0,\n            \"rating_count\": 0,\n            \"corporate_color\": \"\",\n            \"pricelevel\": 0,\n            \"established\": 0,\n            \"closedate\": null,\n            \"show_address\": 1,\n            \"aroundtheclock\": 0,\n            \"bookable_hgv\": 1,\n            \"cippy_auto_connect\": 1,\n            \"reportmail_statistics\": 0,\n            \"internal_notes\": \"\",\n            \"created_by\": 3,\n            \"updated_by\": 3,\n            \"created_at\": \"2017-03-23T15:48:44+00:00\",\n            \"updated_at\": \"2019-09-03T02:40:08+00:00\",\n            \"place_id\": 775,\n            \"langavl\": 1,\n            \"name\": \"Vitalpina & Wanderhotel Europa\",\n            \"teaser\": \"Vitalpina Basecamp Hotel. Aktiv. Gourmet. Alpine Wellness. Unser Schlafsystem: Die Weisheit der B&auml;ume. Eco-Label. Michelin Guide. Golf. Klettersteig. Gepr&uuml;fte Wanderguides. Atemwandern&reg; und Waldbaden &quot;shinrin yoku&quot;.\",\n            \"description\": \"F&uuml;r Bergfexe und Naturliebhaber, Wellensstr&auml;umer und Alpengourmets. Im Vitalpina Wanderhotel Europa am Fu&szlig;e der Seiser Alm begegnet sich, wer die Dolomiten in sein Herz geschlossen hat. Schon beim Aufwachen den Blick auf eine der markantesten Bergformationen genie&szlig;en: Santnerspitze und Schlern dominieren das Panorama auf der Europa-Sonnenterrasse. Tags&uuml;ber dann eintauchen in die Magie des UNESCO Weltnaturerbes Dolomiten bei den fast t&auml;glich gef&uuml;hrten Wanderungen mit Gastgeber Michael Trocker und seinem eingespielten Wanderteam. Auch das Ambiente f&uuml;hrt zusammen, was zusammen geh&ouml;rt - alpine Baukultur und heimische Materialien verbinden sich zu einem ganzheitlichen Wohlf&uuml;hlerlebnis. Das zeigt sich besonders eindrucksvoll im Wellnessbereich, welcher mit Kultpl&auml;tzen f&uuml;r K&ouml;rper und Seele und mit auserw&auml;hlten Behandlungen auf Basis wertvoller Naturessenzen f&uuml;r wohlige Ablenkung sorgt. Und weil die Liebe f&uuml;r eine Region bekanntlich durch den Magen geht, verw&ouml;hnt die K&uuml;che mit &uuml;berlieferten Rezepten aus der Bauernk&uuml;che und dem nahen S&uuml;den.\\r\\n\\r\\n&nbsp;\",\n            \"openinghoursnotes\": \"Mitte Dezember bis Mitte April\\n\\tEnde Mai bis November\",\n            \"member_of\": \"\",\n            \"keywords\": \"\",\n            \"url\": \"vitalpina-wanderhotel-europa-seis-am-schlern\",\n            \"url_origin\": \"https://www.bookingsuedtirol.com/index.php?action=view&id=10777\"\n        },\n        {\n            \"id\": 776,\n            \"account_id\": 2989,\n            \"origin\": \"hgv\",\n            \"address_id\": 5293,\n            \"contact_id\": 786,\n            \"logo_id\": 65125,\n            \"picture_id\": 65126,\n            \"status\": 1,\n            \"is_claimed\": 1,\n            \"seo_index\": 1,\n            \"in_revision\": 0,\n            \"class\": 1,\n            \"rating\": 0,\n            \"rating_count\": 0,\n            \"corporate_color\": \"\",\n            \"pricelevel\": 0,\n            \"established\": 0,\n            \"closedate\": null,\n            \"show_address\": 1,\n            \"aroundtheclock\": 0,\n            \"bookable_hgv\": 1,\n            \"cippy_auto_connect\": 1,\n            \"reportmail_statistics\": 0,\n            \"internal_notes\": \"\",\n            \"created_by\": 3,\n            \"updated_by\": 4171,\n            \"created_at\": \"2017-03-23T15:48:45+00:00\",\n            \"updated_at\": \"2019-08-28T06:10:21+00:00\",\n            \"place_id\": 776,\n            \"langavl\": 1,\n            \"name\": \"Erlebnishotel Waltershof\",\n            \"teaser\": \"Das Vitalpina Hotel Waltershof **** liegt in St. Nikolaus im Ultental und hat sich auf das Aktivsein in alpiner Landschaft, Wandern, gesunde, regionaltypische Ernährung und Wohlfühlanwendungen aus heimischen Naturprodukten spezialisiert.\",\n            \"description\": \"Das Vitalpina Hotel Waltershof**** liegt in St. Nikolaus im Ultental und hat sich auf das  Aktivsein in alpiner Landschaft, Wandern, gesunde, regionaltypische Ernährung und Wohlfühlanwendungen aus heimischen und traditionellen Naturprodukten spezialisiert.\\r\\n\\r\\nDie ursprüngliche Natur und die jahrhundertealte Badekultur leben in „Ultner Badln“, „Xundn Alm“ und „Vitalpinagarten“ wieder auf. Die „Energietankstelle Natur“ begleitet Sie hier auf Schritt und Tritt. Ein Urlaub als Stimmungsöl fürs Alltagsgetriebe. \\r\\nHöhepunkte im Wohlfühlbereich\\r\\n- Panorama-Hallenbad mit Farblichttherapie\\r\\n- Whirlpool 36°C unterm freien Sonnenhimmel\\r\\n- „Xundheit“ aus dem Ultner Bergwald: „Fichtentasn, Alpenrosen…“\\r\\n\\r\\nHöhepunkte des Aktivprogramms\\r\\n- 5 Erlebniswanderungen mit Freiluft-Picknick\\r\\n- Im Winter sind wir „auf Bärentatzen unterwegs“ \\r\\n- Täglich naschen wir aus der „Wundertüte Natur“\",\n            \"openinghoursnotes\": \"Dezember bis April\\nMai bis November\",\n            \"member_of\": \"\",\n            \"keywords\": \"\",\n            \"url\": \"erlebnishotel-waltershof-ulten\",\n            \"url_origin\": \"https://www.bookingsuedtirol.com/index.php?action=view&id=10891\"\n        },\n        {\n            \"id\": 777,\n            \"account_id\": 1,\n            \"origin\": \"hgv\",\n            \"address_id\": 5294,\n            \"contact_id\": 787,\n            \"logo_id\": null,\n            \"picture_id\": 67412,\n            \"status\": 1,\n            \"is_claimed\": 0,\n            \"seo_index\": 1,\n            \"in_revision\": 0,\n            \"class\": 1,\n            \"rating\": 0,\n            \"rating_count\": 0,\n            \"corporate_color\": \"\",\n            \"pricelevel\": 0,\n            \"established\": 0,\n            \"closedate\": null,\n            \"show_address\": 1,\n            \"aroundtheclock\": 0,\n            \"bookable_hgv\": 1,\n            \"cippy_auto_connect\": 1,\n            \"reportmail_statistics\": 0,\n            \"internal_notes\": \"\",\n            \"created_by\": 3,\n            \"updated_by\": 3,\n            \"created_at\": \"2017-03-23T15:48:46+00:00\",\n            \"updated_at\": \"2019-09-03T02:42:37+00:00\",\n            \"place_id\": 777,\n            \"langavl\": 1,\n            \"name\": \"Rubner Hotel Rudolf\",\n            \"teaser\": \"Herzlich Willkommen im Rudolf!\\r\\nWo Gäste Freunde werden....\",\n            \"description\": \"In über 25 Jahren ist es uns stets gelungen die Tradition und den Charme unseres renommierten Last Minute Südtirol Hotels aufrecht zu erhalten und dennoch immer mit der Zeit zu gehen. Freuen Sie sich auf gemütliche Stunden in unserem 4 Sterne Wellness Hotel in Südtirol und genießen Sie unseren Rundum-Service in der landschaftlich einmaligen Kulisse Ihres Ferienortes Reischach bei Bruneck.\",\n            \"openinghoursnotes\": \"\",\n            \"member_of\": \"\",\n            \"keywords\": \"\",\n            \"url\": \"rubner-hotel-rudolf-reischach\",\n            \"url_origin\": \"https://www.bookingsuedtirol.com/index.php?action=view&id=11035\"\n        },\n        {\n            \"id\": 778,\n            \"account_id\": 1,\n            \"origin\": \"hgv\",\n            \"address_id\": 5295,\n            \"contact_id\": 788,\n            \"logo_id\": 53002,\n            \"picture_id\": 53003,\n            \"status\": 1,\n            \"is_claimed\": 0,\n            \"seo_index\": 1,\n            \"in_revision\": 0,\n            \"class\": 1,\n            \"rating\": 0,\n            \"rating_count\": 0,\n            \"corporate_color\": \"\",\n            \"pricelevel\": 0,\n            \"established\": 0,\n            \"closedate\": null,\n            \"show_address\": 1,\n            \"aroundtheclock\": 0,\n            \"bookable_hgv\": 1,\n            \"cippy_auto_connect\": 1,\n            \"reportmail_statistics\": 0,\n            \"internal_notes\": \"\",\n            \"created_by\": 3,\n            \"updated_by\": 3,\n            \"created_at\": \"2017-03-23T15:48:48+00:00\",\n            \"updated_at\": \"2019-09-03T02:32:49+00:00\",\n            \"place_id\": 778,\n            \"langavl\": 1,\n            \"name\": \"Majestic Hotel & Spa\",\n            \"teaser\": \"Ihr Hotel zum Wohlf&uuml;hlen! Wolligen Wellnesswonnen, kulinarische H&ouml;chstgen&uuml;sse, ein &uuml;beraus stilvolles Ambiente sowie viel Herz &amp; S&uuml;dtiroler Charme pr&auml;gen die besondere Atmosph&auml;re im &quot;Majestic&quot;. Nicht nur\",\n            \"description\": \"Ein bezauberndes Haus das durch pure Lebensfreude, wohligem Ambiente, einer exquisiten K&uuml;che sowie ganzheitlicher Entspannung f&uuml;r K&ouml;rper &amp; Seele besticht. Dazu die tollen Wellnesseinrichtungen mit wohltuenden Saunen, enstpannenden Ruher&auml;umen, Frei- und Hallenbad, romantischen Sonnenpl&auml;tzchen im &quot;Garten der Begegnung&quot;, dem Majestic SPA mit vielen individuellen Beauty- und Wellnessanwendungen sowie dem topmodernen Fit &amp; Fun Bereich. Plus unz&auml;hlige Sport, Spa&szlig;- und Aktivm&ouml;glichkeiten mit unseren Vitaltrainern und Wanderf&uuml;hrerin an der frischen Luft ...\",\n            \"openinghoursnotes\": \"\",\n            \"member_of\": \"\",\n            \"keywords\": \"\",\n            \"url\": \"majestic-hotel-spa-reischach\",\n            \"url_origin\": \"https://www.bookingsuedtirol.com/index.php?action=view&id=10169\"\n        },\n        {\n            \"id\": 779,\n            \"account_id\": 1,\n            \"origin\": \"hgv\",\n            \"address_id\": 5296,\n            \"contact_id\": 789,\n            \"logo_id\": 53443,\n            \"picture_id\": 53444,\n            \"status\": 1,\n            \"is_claimed\": 0,\n            \"seo_index\": 1,\n            \"in_revision\": 0,\n            \"class\": 1,\n            \"rating\": 0,\n            \"rating_count\": 0,\n            \"corporate_color\": \"\",\n            \"pricelevel\": 0,\n            \"established\": 0,\n            \"closedate\": null,\n            \"show_address\": 1,\n            \"aroundtheclock\": 0,\n            \"bookable_hgv\": 1,\n            \"cippy_auto_connect\": 1,\n            \"reportmail_statistics\": 0,\n            \"internal_notes\": \"\",\n            \"created_by\": 3,\n            \"updated_by\": 3,\n            \"created_at\": \"2017-03-23T15:48:49+00:00\",\n            \"updated_at\": \"2019-09-03T02:33:06+00:00\",\n            \"place_id\": 779,\n            \"langavl\": 1,\n            \"name\": \"Alpenwellnesshotel St. Veit\",\n            \"teaser\": \"Das Vitalpina Alpenwellness Hotel St. Veit**** liegt in Sexten im Herzen der Dolomiten und hat sich auf das Aktivsein in alpiner Landschaft, Wandern, gesunde, regionaltypische Ern&auml;hrung und Wohlf&uuml;hlanwendungen spezialisiert\",\n            \"description\": \"Das Vitalpina Alpenwellness Hotel St. Veit**** liegt in Sexten im Herzen der Dolomiten und hat sich auf das Aktivsein in alpiner Landschaft, Wandern, gesunde, regionaltypische Ern&auml;hrung und Wohlf&uuml;hlanwendungen aus heimischen und traditionellen Naturprodukten spezialisiert.\\r\\n\\r\\nKulinarisch verw&ouml;hnen wir Sie mit S&uuml;dtiroler Spezialit&auml;ten und italienischen K&ouml;stlichkeiten. Entspannen Sie im Schwimmbad, in der Bergdorfsauna, beim Heu- und Bl&uuml;tenbad oder bei Massagen und Heilanwendungen. Entdecken Sie mit uns den Naturpark &bdquo;Sextner Dolomiten&ldquo;.\\r\\n\\r\\nH&ouml;hepunkte im Wohlf&uuml;hlbereich\\r\\n- Badevergn&uuml;gen f&uuml;r 2 im Kupferkessel von 1958\\r\\n- Heub&auml;der im Sextner Bergwiesenheu\\r\\n- 2 h Hallenbad oder Sauna f&uuml;r Verliebte bei Kerzenlicht\\r\\n\\r\\nH&ouml;hepunkte des Aktivprogramms\\r\\n- Wanderungen mit Grillfest, Nordic Walking, Reiten\\r\\n- Sportklettern (Indoor-Kletterhalle), Mountainbike-Ausfl&uuml;ge\\r\\n- Schneeschuh- und Winterwanderungen\",\n            \"openinghoursnotes\": \"Anfang Dezember bis Mitte M&auml;rz\\n\\tAnfang Juni bis Mitte Oktober\\n\\n\\t&nbsp;\",\n            \"member_of\": \"\",\n            \"keywords\": \"\",\n            \"url\": \"alpenwellnesshotel-st-veit-sexten\",\n            \"url_origin\": \"https://www.bookingsuedtirol.com/index.php?action=view&id=10188\"\n        },\n        {\n            \"id\": 780,\n            \"account_id\": 1,\n            \"origin\": \"hgv\",\n            \"address_id\": 5297,\n            \"contact_id\": 790,\n            \"logo_id\": 52864,\n            \"picture_id\": 52865,\n            \"status\": 1,\n            \"is_claimed\": 0,\n            \"seo_index\": 1,\n            \"in_revision\": 0,\n            \"class\": 1,\n            \"rating\": 0,\n            \"rating_count\": 0,\n            \"corporate_color\": \"\",\n            \"pricelevel\": 0,\n            \"established\": 0,\n            \"closedate\": null,\n            \"show_address\": 1,\n            \"aroundtheclock\": 0,\n            \"bookable_hgv\": 1,\n            \"cippy_auto_connect\": 1,\n            \"reportmail_statistics\": 0,\n            \"internal_notes\": \"\",\n            \"created_by\": 3,\n            \"updated_by\": 3,\n            \"created_at\": \"2017-03-23T15:48:51+00:00\",\n            \"updated_at\": \"2019-09-03T02:32:46+00:00\",\n            \"place_id\": 780,\n            \"langavl\": 1,\n            \"name\": \"Erlebnishotel Gassenhof\",\n            \"teaser\": \"Eingebettet in das Ridnauntal, auf 1400 m, ist das 4 – Sterne Hotel Gassenhof der ideale Gastgeber für einen erholsamen Urlaub gespickt mit herrlichen Naturerlebnissen.\",\n            \"description\": \"Das beliebte Erlebnishotel bietet zu jeder Jahreszeit einen Ferientraum für Groß und Klein. Im Sommer hat der Gassenhof ein abwechslungsreiches Wanderprogramm. Chef Manfred begleitet die Wandertouren in den Stubaier Alpen und eine gemeinsame Hüttengaudi bleibt unvergesslich. Alpenländische Gemütlichkeit und Raum zum Erholen findet man in den individuell eingerichteten Zimmern und Suiten. Im Zimmerpreis enthalten sind die Erlebnis-Wellness-Verwöhn Pension sowie viele Inklusiv Leistungen. Von Heubetten bis zum Erlebnis-Hallenbad hat die Wellness-und Saunalandschaft alles, was man sich zum Entspannen wünscht. Ein Kleinod, das 1375 erstmals urkundlich erwähnt wurde, befindet sich 3 Gehminuten entfernt – das Gratznhäusl. In dem ehemaligen Stall erlebt man die echte Südtiroler Küche und die Zimmer garantieren einen Genussurlaub in authentischem Ambiente.\",\n            \"openinghoursnotes\": \"\",\n            \"member_of\": \"\",\n            \"keywords\": \"\",\n            \"url\": \"erlebnishotel-gassenhof-ridnaun\",\n            \"url_origin\": \"https://www.bookingsuedtirol.com/index.php?action=view&id=10164\"\n        },\n        {\n            \"id\": 781,\n            \"account_id\": 1,\n            \"origin\": \"hgv\",\n            \"address_id\": 5298,\n            \"contact_id\": 791,\n            \"logo_id\": null,\n            \"picture_id\": 54584,\n            \"status\": 1,\n            \"is_claimed\": 0,\n            \"seo_index\": 1,\n            \"in_revision\": 0,\n            \"class\": 1,\n            \"rating\": 0,\n            \"rating_count\": 0,\n            \"corporate_color\": \"\",\n            \"pricelevel\": 0,\n            \"established\": 0,\n            \"closedate\": null,\n            \"show_address\": 1,\n            \"aroundtheclock\": 0,\n            \"bookable_hgv\": 1,\n            \"cippy_auto_connect\": 1,\n            \"reportmail_statistics\": 0,\n            \"internal_notes\": \"\",\n            \"created_by\": 3,\n            \"updated_by\": 3,\n            \"created_at\": \"2017-03-23T15:48:53+00:00\",\n            \"updated_at\": \"2019-09-03T02:33:49+00:00\",\n            \"place_id\": 781,\n            \"langavl\": 1,\n            \"name\": \"Hotel Zirmerhof & Residence\",\n            \"teaser\": \"Am Sonnenhang Merans finden Sie unser kleines famili&auml;res Haus f&uuml;r anspurchsvolle Genie&szlig;er. Einfach ausspannen, wandern, wohlf&uuml;hlen, geniessen.... Urlaub wie man ihn sich vorstellt - von Anfang an\",\n            \"description\": \"Das Vitalpina Hotel Zirmerhof***s liegt in Riffian bei Meran und hat sich auf das Aktivsein in alpiner Landschaft, Wandern, Radeln (Bike- u E-Bikeverleih u. Bikeguide im Haus) gesunde, regionaltypische Ern&auml;hrung und Wohlf&uuml;hlanwendungen aus heimischen und traditionellen Naturprodukten spezialisiert. Freuen Sie sich auf die neuen Zimmer oder auf die ger&auml;umigen Appartements. Nutzen Sie unsere vielen Inklusivleistungen: Indoor &amp; Outdoor-Wellnessbereich, Hallenbad, Freibad mit Panorama-Liegewiese, Heubad mit Passeirer Bergwiesenheu - Entspannende Massagen - Heaven Swing Schwebeliegen im Ruhebereich - Finnische Sauna indoor &amp; Outdoor, Dampfbad - Infrarot Kabine mit Farblichttherapie. H&ouml;hepunkte des Aktivprogramms - 3 gef&uuml;hrte Wandertouren w&ouml;chentlich (3 ausg. Wanderf&uuml;hrer im Haus) - direkt am Meraner H&ouml;henweg gelegen - Die Spronser-Seen-Runde im Naturpark Texelgruppe - Riffianer Bergbauernh&ouml;fe &ndash; Idylle mit traumhaftem Ausblick - Almenwanderung am Hirzer (Europ&auml;ischer Fernwanderweg E 5)\",\n            \"openinghoursnotes\": \"April bis November\",\n            \"member_of\": \"\",\n            \"keywords\": \"\",\n            \"url\": \"hotel-zirmerhof-residence-riffian\",\n            \"url_origin\": \"https://www.bookingsuedtirol.com/index.php?action=view&id=10251\"\n        },\n        {\n            \"id\": 782,\n            \"account_id\": 1,\n            \"origin\": \"hgv\",\n            \"address_id\": 5299,\n            \"contact_id\": 792,\n            \"logo_id\": null,\n            \"picture_id\": 64306,\n            \"status\": 1,\n            \"is_claimed\": 0,\n            \"seo_index\": 1,\n            \"in_revision\": 0,\n            \"class\": 1,\n            \"rating\": 0,\n            \"rating_count\": 0,\n            \"corporate_color\": \"\",\n            \"pricelevel\": 0,\n            \"established\": 0,\n            \"closedate\": null,\n            \"show_address\": 1,\n            \"aroundtheclock\": 0,\n            \"bookable_hgv\": 1,\n            \"cippy_auto_connect\": 1,\n            \"reportmail_statistics\": 0,\n            \"internal_notes\": \"\",\n            \"created_by\": 3,\n            \"updated_by\": 3,\n            \"created_at\": \"2017-03-23T15:48:55+00:00\",\n            \"updated_at\": \"2019-09-03T02:40:46+00:00\",\n            \"place_id\": 782,\n            \"langavl\": 1,\n            \"name\": \"Hotel Marica\",\n            \"teaser\": \"Alpin - mediterran - zeitgeistig! Aktivurlaub mit Sport und Genuss!\",\n            \"description\": \"Alpin - mediterran - zeitgeistig! So pr&auml;sentiert sich unser junges****Hotel Marica in Eggen am Fu&szlig;e des Latemar nur 18 km von Bozen. Harmonisch verbinden sich Mediterranes und Alpines im neuen modernen Hotel Marica in Eggen. Lichtdurchflutet auf einer Ebene befinden sich Speisesaal, Lounge, Hallenbad und Saunen mit Freibereich. K&uuml;che und Keller sind auf Tradition und auf die Verschmelzung der Tiroler mit deritalienischen Kultur aufgebaut. Wir sportliche Naturliebhaber, gepr&uuml;fte Wander- und Mountainbikef&uuml;hrer,m&ouml;chten Sie mit Sport und Bewegung, Entspannung, Genu&szlig; und Freude fit f&uuml;r Ihren Alltag machen. Unser Hotel Marica liegt ideal f&uuml;r Wintersportler! Das Ski Center Latemar ist f&uuml;hrend in Pistenpflege, Liftanlagen udn Beschneiung und bietet Pisten in allen Schwierigkeitsgraden! Das Langlaufgebiet Lavaz&egrave;pass ist ein sonniges Hochplateau mit 360&deg; Dolomitenpanorama und 50 km gespurte Loipen! Unsere Skiausfl&uuml;ge gehen in das benachtbarte Skigebiet Karersee, zum Pellegrinopass, Alpe Cermis, Alpe Lusia oder zur K&ouml;nigin der Dolomiten der Marmolada ...und au&szlig;er Schneeschuhwandern, Weinverkostung u.&auml;. steht nat&uuml;rlich auch die ber&uuml;hmte Sellarunde auf Skiern auf unserem Wochenprogramm. Und wenn der Tag nicht ausreicht: Nachtskifahren und -rodeln!\",\n            \"openinghoursnotes\": \"Ende Dezember bis Mitte April\\n\\tJuni bis Oktober\",\n            \"member_of\": \"\",\n            \"keywords\": \"\",\n            \"url\": \"hotel-marica-deutschnofen\",\n            \"url_origin\": \"https://www.bookingsuedtirol.com/index.php?action=view&id=10835\"\n        },\n        {\n            \"id\": 783,\n            \"account_id\": 2042,\n            \"origin\": \"hgv\",\n            \"address_id\": 5300,\n            \"contact_id\": 793,\n            \"logo_id\": null,\n            \"picture_id\": 68857,\n            \"status\": 1,\n            \"is_claimed\": 1,\n            \"seo_index\": 1,\n            \"in_revision\": 0,\n            \"class\": 1,\n            \"rating\": 0,\n            \"rating_count\": 0,\n            \"corporate_color\": \"\",\n            \"pricelevel\": 0,\n            \"established\": 0,\n            \"closedate\": null,\n            \"show_address\": 1,\n            \"aroundtheclock\": 0,\n            \"bookable_hgv\": 1,\n            \"cippy_auto_connect\": 1,\n            \"reportmail_statistics\": 0,\n            \"internal_notes\": \"\",\n            \"created_by\": 3,\n            \"updated_by\": 4207,\n            \"created_at\": \"2017-03-23T15:48:57+00:00\",\n            \"updated_at\": \"2019-08-02T07:28:24+00:00\",\n            \"place_id\": 783,\n            \"langavl\": 1,\n            \"name\": \"Hotel Piccolo Mountainbike - Holidays\",\n            \"teaser\": \"Das PICCOLO HOTEL befindet sich auf der Sonnenseite; ruhig gelegen und 200 Meter vom Ortszentrum entfernt. Idealer Ausgangspunkt für Skitouren im Winter und Wanderungen im Sommer.\",\n            \"description\": \"Alle Zimmer mit WC, Bad oder Dusche, Haarphon, Telefon, Sat-TV, Radio, Safe. Neue gemütliche Superior Doppelzimmer Südlage mit Balkon und neue Panorama Erkerzimmer. Hallenschwimmbad und Relax-Center mit Sauna, Dampfbad, Whirl-Pool, Solarium. Unser Hoteleigener Shuttlebus bringt Sie schnell und bequem zu den umliegenden Bergbahnen der Sella Ronda.\",\n            \"openinghoursnotes\": \"\",\n            \"member_of\": \"\",\n            \"keywords\": \"\",\n            \"url\": \"hotel-piccolo-mountainbike-holidays-wolkenstein-in-groeden\",\n            \"url_origin\": \"https://www.bookingsuedtirol.com/index.php?action=view&id=11136\"\n        },\n        {\n            \"id\": 784,\n            \"account_id\": 2105,\n            \"origin\": \"hgv\",\n            \"address_id\": 5301,\n            \"contact_id\": 794,\n            \"logo_id\": 59073,\n            \"picture_id\": 59074,\n            \"status\": 1,\n            \"is_claimed\": 1,\n            \"seo_index\": 1,\n            \"in_revision\": 0,\n            \"class\": 1,\n            \"rating\": 0,\n            \"rating_count\": 0,\n            \"corporate_color\": \"\",\n            \"pricelevel\": 0,\n            \"established\": 0,\n            \"closedate\": null,\n            \"show_address\": 1,\n            \"aroundtheclock\": 0,\n            \"bookable_hgv\": 1,\n            \"cippy_auto_connect\": 1,\n            \"reportmail_statistics\": 0,\n            \"internal_notes\": \"\",\n            \"created_by\": 3,\n            \"updated_by\": 4207,\n            \"created_at\": \"2017-03-23T15:48:58+00:00\",\n            \"updated_at\": \"2019-08-05T09:22:51+00:00\",\n            \"place_id\": 784,\n            \"langavl\": 1,\n            \"name\": \"Hotel Thalhof am See\",\n            \"teaser\": \"Das Hotel liegt sonnig in den Weinbergen. Zwei Gehminuten vom Kalterer See. Freier Zugang zum See. Hallenbad, Liegewiese, Freischwimmbad mit getrenntem Kinderbecken, eigener Parkplatz, Caf&egrave;, Restaurant und Lift.\",\n            \"description\": \"Mitten in Kalterns charismatischer Weinlandschaft, den Ufern des Kalterer Sees ganz nahe, imponiert das neue Geb&auml;ude des Hotel Thalhof seinen G&auml;sten mit gro&szlig;fl&auml;chigen Panoramafenstern, durch die das Licht nach innen und der Blick nach au&szlig;en dringt, auf das facettenreiche Gr&uuml;n der Gartenanlage und der umliegenden Weinberge.\\r\\n\\r\\nMorgens k&uuml;sst einen hier die Sonne wach &ndash; der ideale Weckruf f&uuml;r all jene, die tags&uuml;ber den S&uuml;den S&uuml;dtirols wandernd oder radelnd erkunden wollen oder von den lukullischen Besonderheiten dieser Region probieren m&ouml;chten. Die gr&uuml;nen Weinh&uuml;gel, die Zypressen, die k&uuml;hlen Mischw&auml;lder der Berge &ndash; Flora und Fauna sind hier, wo der Norden auf den S&uuml;den trifft, unverkennbar vielf&auml;ltig.\\r\\n\\r\\nDas Hotel Thalhof liegt nur zwei Gehminuten von Kalterns sch&ouml;nsten Badestr&auml;nden entfernt. Hier k&ouml;nnen Sie sich auf weiten Liegewiesen sonnen, mit dem Tretboot an noch unber&uuml;hrte Uferpl&auml;tzchen gelangen, lange Strecken schwimmen, sich auf einer Luftmatratze von den Wellen in sommerlichen Schlummer schaukeln lassen oder &ndash; warum nicht mal etwas Neues ausprobieren &ndash; surfend &uuml;bers Wasser gleiten.\\r\\n\\r\\nSchwimmen und Sonnenbaden geht aber auch direkt vor der Haust&uuml;r, im weitl&auml;ufigen Garten. Im Grasgr&uuml;n liegen und auf die Weinberge blicken. L&auml;ngenschwimmen oder Plantschen in den Au&szlig;enpools, aber auch drinnen.\\r\\n\\r\\nUnd nach einem packenden Urlaubstag lockt die Wellnesszone mit Panoramasauna, Dampfbad, Hallenbad und &ndash; ja, See(len)ruhe nat&uuml;rlich. In jeder Ecke.\\r\\n\\r\\nDenn sie ist das Fundament f&uuml;r&#39;s Wohlgef&uuml;hl, hier am Kalterer See.\",\n            \"openinghoursnotes\": \"\",\n            \"member_of\": \"\",\n            \"keywords\": \"\",\n            \"url\": \"hotel-thalhof-am-see-st-josef-am-see\",\n            \"url_origin\": \"https://www.bookingsuedtirol.com/index.php?action=view&id=10496\"\n        },\n        {\n            \"id\": 785,\n            \"account_id\": 2160,\n            \"origin\": \"hgv\",\n            \"address_id\": 5302,\n            \"contact_id\": 795,\n            \"logo_id\": null,\n            \"picture_id\": 67147,\n            \"status\": 1,\n            \"is_claimed\": 1,\n            \"seo_index\": 1,\n            \"in_revision\": 0,\n            \"class\": 1,\n            \"rating\": 0,\n            \"rating_count\": 0,\n            \"corporate_color\": \"\",\n            \"pricelevel\": 0,\n            \"established\": 0,\n            \"closedate\": null,\n            \"show_address\": 1,\n            \"aroundtheclock\": 0,\n            \"bookable_hgv\": 1,\n            \"cippy_auto_connect\": 1,\n            \"reportmail_statistics\": 0,\n            \"internal_notes\": \"\",\n            \"created_by\": 3,\n            \"updated_by\": 4207,\n            \"created_at\": \"2017-03-23T15:49:00+00:00\",\n            \"updated_at\": \"2019-08-06T13:09:57+00:00\",\n            \"place_id\": 785,\n            \"langavl\": 1,\n            \"name\": \"Savoy Dolomites Luxury Spa Hotel\",\n            \"teaser\": \"Hotel mit einladendem Ambiente, einem Hauch von Luxus und exzellente Gourmet-Küche, einem guten sortierten Weinkeller mit über 250 Etiketten.\",\n            \"description\": \"Das Hotel liegt in bester Lage, direkt an der Piste (Anschluss zur bekannten Sella-Ronda) und am Lift, der zum Ciampinoi führt. Nur drei Gehminuten vom Zentrum entfernt. \\r\\nGroßzügige und komfortable Zimmer und Suiten mit Balkon und traumhafter Aussicht auf die Dolomiten.\",\n            \"openinghoursnotes\": \"\",\n            \"member_of\": \"\",\n            \"keywords\": \"\",\n            \"url\": \"savoy-dolomites-luxury-spa-hotel-wolkenstein-in-groeden\",\n            \"url_origin\": \"https://www.bookingsuedtirol.com/index.php?action=view&id=11016\"\n        },\n        {\n            \"id\": 786,\n            \"account_id\": 1,\n            \"origin\": \"hgv\",\n            \"address_id\": 5303,\n            \"contact_id\": 796,\n            \"logo_id\": 63752,\n            \"picture_id\": 63753,\n            \"status\": 1,\n            \"is_claimed\": 0,\n            \"seo_index\": 1,\n            \"in_revision\": 0,\n            \"class\": 1,\n            \"rating\": 0,\n            \"rating_count\": 0,\n            \"corporate_color\": \"\",\n            \"pricelevel\": 0,\n            \"established\": 0,\n            \"closedate\": null,\n            \"show_address\": 1,\n            \"aroundtheclock\": 0,\n            \"bookable_hgv\": 1,\n            \"cippy_auto_connect\": 1,\n            \"reportmail_statistics\": 0,\n            \"internal_notes\": \"\",\n            \"created_by\": 3,\n            \"updated_by\": 3,\n            \"created_at\": \"2017-03-23T15:49:01+00:00\",\n            \"updated_at\": \"2019-09-03T02:40:24+00:00\",\n            \"place_id\": 786,\n            \"langavl\": 1,\n            \"name\": \"Hotel Grones\",\n            \"teaser\": \"Verbringen Sie unvergessliche Tage in der familiären Atmosphäre des komplett neuen Hotel Grones****, ein kleines und feines Haus, in sonniger und ruhiger Lage, nur wenige Gehminuten vom Ortszentrum St. Ulrich entfernt.\",\n            \"description\": \"Das gepflegte und elegante Ambiente des Hauses, die feine und kreative Küche, die Wellnessoase mit Schwimmbad und Saunawelten, der traumhafte Blick auf die großartige Berglandschaft... dies alles und noch viel mehr erwartet Sie im neuen Hotel Grones und wird Ihnen einen erholsamen und unvergesslichen Urlaub bieten!\\r\\n\\r\\nWir freuen uns auf Ihren Besuch!\",\n            \"openinghoursnotes\": \"\",\n            \"member_of\": \"\",\n            \"keywords\": \"\",\n            \"url\": \"hotel-grones-st-ulrich-in-groeden\",\n            \"url_origin\": \"https://www.bookingsuedtirol.com/index.php?action=view&id=10799\"\n        },\n        {\n            \"id\": 787,\n            \"account_id\": 1,\n            \"origin\": \"hgv\",\n            \"address_id\": 5304,\n            \"contact_id\": 797,\n            \"logo_id\": null,\n            \"picture_id\": 81048,\n            \"status\": 1,\n            \"is_claimed\": 0,\n            \"seo_index\": 1,\n            \"in_revision\": 0,\n            \"class\": 1,\n            \"rating\": 0,\n            \"rating_count\": 0,\n            \"corporate_color\": \"\",\n            \"pricelevel\": 0,\n            \"established\": 0,\n            \"closedate\": null,\n            \"show_address\": 1,\n            \"aroundtheclock\": 0,\n            \"bookable_hgv\": 1,\n            \"cippy_auto_connect\": 1,\n            \"reportmail_statistics\": 0,\n            \"internal_notes\": \"\",\n            \"created_by\": 3,\n            \"updated_by\": 3,\n            \"created_at\": \"2017-03-23T15:49:02+00:00\",\n            \"updated_at\": \"2019-09-03T02:51:43+00:00\",\n            \"place_id\": 787,\n            \"langavl\": 1,\n            \"name\": \"Sporthotel Monte Pana\",\n            \"teaser\": \"Das moderne und gleichzeitig traditionelle Sporthotel Monte Pana, einzigartig in seiner Art, eingebettet in der herrlichen Bergwelt der Dolomiten\",\n            \"description\": \"Das moderne und gleichzeitig traditionelle Sporthotel Monte Pana, einzigartig in seiner Art, eingebettet in der herrlichen Bergwelt der Dolomiten, geh&ouml;rt zu einem der sch&ouml;nsten Glanzst&uuml;cke, die das Gr&ouml;dental seinen zahlreichen Besuchern darbieten kann. Das 130-Betten Hotel, alle Zimmer sind mit Bad, WC, Telefon und Fernseher ausgestattet, befindet sich am Rande der Hochebene der Seiseralm zwischen St. Ulrich und Wolkenstein. Das Hotel besitzt einen Kongre&szlig;saal, eine Garage, Fahrstuhl und eine Bar mit sonniger Panoramaterrasse.\",\n            \"openinghoursnotes\": \"\",\n            \"member_of\": \"\",\n            \"keywords\": \"\",\n            \"url\": \"sporthotel-monte-pana-st-christina-in-groeden\",\n            \"url_origin\": \"https://www.bookingsuedtirol.com/index.php?action=view&id=11995\"\n        },\n        {\n            \"id\": 789,\n            \"account_id\": 2050,\n            \"origin\": \"hgv\",\n            \"address_id\": 5306,\n            \"contact_id\": 799,\n            \"logo_id\": 62400,\n            \"picture_id\": 62401,\n            \"status\": 1,\n            \"is_claimed\": 1,\n            \"seo_index\": 1,\n            \"in_revision\": 0,\n            \"class\": 1,\n            \"rating\": 0,\n            \"rating_count\": 0,\n            \"corporate_color\": \"\",\n            \"pricelevel\": 0,\n            \"established\": 0,\n            \"closedate\": null,\n            \"show_address\": 1,\n            \"aroundtheclock\": 0,\n            \"bookable_hgv\": 1,\n            \"cippy_auto_connect\": 1,\n            \"reportmail_statistics\": 0,\n            \"internal_notes\": \"\",\n            \"created_by\": 3,\n            \"updated_by\": 4207,\n            \"created_at\": \"2017-03-23T15:49:05+00:00\",\n            \"updated_at\": \"2019-08-02T09:15:13+00:00\",\n            \"place_id\": 789,\n            \"langavl\": 1,\n            \"name\": \"Hotel Plunhof\",\n            \"teaser\": \"Naturparadies rund ums Hotel - Wir verwöhnen Sie mit dem Besten aus der Natur, bringen Geist und Seele in Einklang und schenken Ihnen besondere  Momente. Ein echter Familienbetrieb mit Wohlfühlgarantie!\",\n            \"description\": \"Auf der Sonnenseite der Alpen\\r\\n\\r\\nInmitten traumhafter Natur des idyllischen Ridnauner Tals finden Bergfreunde und Genießer eine ganz besondere Urlaubsadresse: \\r\\ndas komfortable 4-Sterne-Superior-Hotel Plunhof in sonnenexponierter Lage, das so einzigartig und vielseitig ist wie die Natur Südtirols.\\r\\n\\r\\nSchon beim ersten Betreten unseres Hauses spüren Sie den Familiengeist, der Sie hier magisch anzieht. Unser Plunhof\\r\\n– und darauf sind wir besonders stolz – ist nämlich ein echter Familienbetrieb mit Wohlfühlgarantie. Wir acht Volgger-Geschwister\\r\\nund die gute Seele des Hauses, Mutter Paula, tun alles, um Ihre Urlaubsträume zu erfüllen.\\r\\n\\r\\nFerientage im Plunhof\\r\\n... das ist romantischer Urlaubsgenuss mit sportlich-familiärer Atmosphäre.\\r\\n... das ist feines Essen aus der Heimat und ein edler Tropfen aus Südtirol.\\r\\n... das ist genussvolle Entspannung mit alpiner Wellness.\\r\\n... das sind Sport- und Wandermöglichkeiten der Extraklasse direkt vor der Haustüre.\",\n            \"openinghoursnotes\": \"\",\n            \"member_of\": \"\",\n            \"keywords\": \"\",\n            \"url\": \"hotel-plunhof-ridnaun\",\n            \"url_origin\": \"https://www.bookingsuedtirol.com/index.php?action=view&id=10705\"\n        },\n        {\n            \"id\": 791,\n            \"account_id\": 2312,\n            \"origin\": \"hgv\",\n            \"address_id\": 5308,\n            \"contact_id\": 801,\n            \"logo_id\": 64357,\n            \"picture_id\": 64358,\n            \"status\": 1,\n            \"is_claimed\": 1,\n            \"seo_index\": 1,\n            \"in_revision\": 0,\n            \"class\": 1,\n            \"rating\": 0,\n            \"rating_count\": 0,\n            \"corporate_color\": \"\",\n            \"pricelevel\": 0,\n            \"established\": 0,\n            \"closedate\": null,\n            \"show_address\": 1,\n            \"aroundtheclock\": 0,\n            \"bookable_hgv\": 1,\n            \"cippy_auto_connect\": 1,\n            \"reportmail_statistics\": 0,\n            \"internal_notes\": \"\",\n            \"created_by\": 3,\n            \"updated_by\": 4207,\n            \"created_at\": \"2017-03-23T15:49:09+00:00\",\n            \"updated_at\": \"2019-08-09T14:15:28+00:00\",\n            \"place_id\": 791,\n            \"langavl\": 1,\n            \"name\": \"Hotel Seeber\",\n            \"teaser\": \"Herzlich willkommen. Fühlen Sie sich einfach wohl bei uns. Genießen Sie die Gastlichkeit, Natur, Unterhaltung und das Essen. Unser Haus bietet alles was Ihr Herz begehrt.\",\n            \"description\": \"Wenn Sie besonders erlebnisreich und erholsam Urlaub machen wollen, und Sie die Bergwelt ebenso faszinierend finden wie wir Südtiroler selbst, dann ist unser drei - Sterne - Haus in Ratschings, das sehr professionell und persönlich von der Familie Seeber und Mitarbeitern geführt wird, die richtige Adresse!\\r\\n\\r\\nGepflegtes Haus, mit bequem eingerichteten Zimmern, angenehmen Aufenthaltsräumen und einen gemütlich ausgestatteten Speisesaal. Die familiäre Führung bürgt für Komfort, aufmerksame Betreuung und eine abwechslungsreiche Küche.\\r\\n\\r\\nDer moderne Sessellift zum Wintersportgebiet Ratschings liegt 100 m vom Hotel entfernt. Herrliches Wandergebiet!\",\n            \"openinghoursnotes\": \"Dezember bis Mitte April\\n\\tEnde Mai bis November\",\n            \"member_of\": \"\",\n            \"keywords\": \"\",\n            \"url\": \"hotel-seeber-innerratschings\",\n            \"url_origin\": \"https://www.bookingsuedtirol.com/index.php?action=view&id=10838\"\n        },\n        {\n            \"id\": 793,\n            \"account_id\": 2948,\n            \"origin\": \"hgv\",\n            \"address_id\": 5310,\n            \"contact_id\": 803,\n            \"logo_id\": null,\n            \"picture_id\": 80293,\n            \"status\": 1,\n            \"is_claimed\": 1,\n            \"seo_index\": 1,\n            \"in_revision\": 0,\n            \"class\": 1,\n            \"rating\": 0,\n            \"rating_count\": 0,\n            \"corporate_color\": \"\",\n            \"pricelevel\": 0,\n            \"established\": 0,\n            \"closedate\": null,\n            \"show_address\": 1,\n            \"aroundtheclock\": 0,\n            \"bookable_hgv\": 1,\n            \"cippy_auto_connect\": 1,\n            \"reportmail_statistics\": 0,\n            \"internal_notes\": \"\",\n            \"created_by\": 3,\n            \"updated_by\": 4207,\n            \"created_at\": \"2017-03-23T15:49:12+00:00\",\n            \"updated_at\": \"2019-08-27T10:07:25+00:00\",\n            \"place_id\": 793,\n            \"langavl\": 1,\n            \"name\": \"Hotel Fanes\",\n            \"teaser\": \"HOTEL FANES IN WOLKENSTEIN IN GR&Ouml;DEN\\r\\n\\r\\nIhr 4 Sterne Wohlf&uuml;hl - Resort in den Dolomiten&nbsp;\",\n            \"description\": \"Sie m&ouml;chten die faszinierende Bergwelt S&uuml;dtirols hautnah erleben? Unser Hotel in Wolkenstein, Gr&ouml;den (S&uuml;dtirol), ist daf&uuml;r ein idealer Ausgangspunkt. Mitten im Herzen der Dolomiten gelegen, erwarten Sie im Hotel Fanes eine einzigartige Bergidylle, komfortable Zimmer und ausgezeichnete Kulinarik. Genie&szlig;en Sie in unserem gem&uuml;tlichen Vier-Sterne-Familienhotel im wundersch&ouml;nen Gr&ouml;dnertal die internationale Atmosph&auml;re eines der beliebtesten Ski- und Wandergebiete des Alpenraumes. Wir freuen uns darauf, auch Sie bald bei uns begr&uuml;&szlig;en zu d&uuml;rfen!\",\n            \"openinghoursnotes\": \"\",\n            \"member_of\": \"\",\n            \"keywords\": \"\",\n            \"url\": \"hotel-fanes-wolkenstein-in-groeden\",\n            \"url_origin\": \"https://www.bookingsuedtirol.com/index.php?action=view&id=11935\"\n        },\n        {\n            \"id\": 794,\n            \"account_id\": 309,\n            \"origin\": \"hgv\",\n            \"address_id\": 5311,\n            \"contact_id\": 804,\n            \"logo_id\": 53992,\n            \"picture_id\": 53993,\n            \"status\": 1,\n            \"is_claimed\": 1,\n            \"seo_index\": 1,\n            \"in_revision\": 0,\n            \"class\": 1,\n            \"rating\": 0,\n            \"rating_count\": 0,\n            \"corporate_color\": \"\",\n            \"pricelevel\": 0,\n            \"established\": 0,\n            \"closedate\": null,\n            \"show_address\": 1,\n            \"aroundtheclock\": 0,\n            \"bookable_hgv\": 1,\n            \"cippy_auto_connect\": 1,\n            \"reportmail_statistics\": 0,\n            \"internal_notes\": \"\",\n            \"created_by\": 3,\n            \"updated_by\": 4171,\n            \"created_at\": \"2017-03-23T15:49:14+00:00\",\n            \"updated_at\": \"2019-08-16T07:38:27+00:00\",\n            \"place_id\": 794,\n            \"langavl\": 1,\n            \"name\": \"Granbaita Sport & Wellness\",\n            \"teaser\": \"Traditionsreiches elegantes Hotel  zentral aber ruhig gelegen, 150m von Pisten entfernt. Neuer Spa-Bereich mit 32° beheiztes Panorama außen- und  Hallenbad, Salzwasserbad und Salzgrotte, Vulkania Dampfbad, Fitnessraum, Konferenzsaal. Angebot von Day SPA\",\n            \"description\": \"Weitere Informationen \\r\\nEin herzliches \\\"Grüß Gott\\\" vom Hotel Gran Baita**** in Wolkenstein. Unsere traditionsreiche Gran Baita (aus dem Italienischen: Große Almhütte) im Tiroler Stil ist zentral gelegen und von einer eindrucksvollen Gebirgswelt und üppigen Wäldern umgeben. Genießen Sie eine herrliche Aussicht auf die Dolomiten von unserer Sonnenterrasse, vom Garten oder von unserer gemütlichen Kaminstube aus. Für grenzenlosen Badespaß und angenehme Entspannung im wohlig warmen Nass sorgt unser Panorama Freiluftschwimmbad (122m², beheizt) oder unser Hallenbad (130m²) mit integrierten Whirl-Liegen. Eine Finnische Sauna, Türkisches Dampfbad, Kältegrotte, Whirlpool, verschiedene Massagen von geübten Händen sowie ein großzügiger Ruhebereich laden Sie zum Wohlfühlen ein. Alle unsere Zimmer/Suiten sind individuell im Tiroler Stil eingerichtet sowie mit jeglichem Komfort ausgestattet. Viele Zimmer/Suiten haben Südbalkon mit atemberaubendem Blick auf die Sella Gruppe. Unser Küchenchef verwöhnt Sie täglich mit einem 5-gängigen Abendmenü nach Wahl mit großer Sorgfalt aus kulinarischen Köstlichkeiten der Tiroler sowie Mediterranen Küche. Ob Sommer oder Winter, unser Hotel ist ein idealer Ausgangspunkt für Aktivitäten im Freien. Besuchen Sie uns und entdecken Sie die Schönheit unserer intakten alpinen Natur und atmen Sie von der reinen Bergluft. Bevor wir uns nun von unseren lieben virtuellen Besuchern verabschieden, noch eine kleine Nachricht ... es sind noch weitere Umbauprojekte geplant, um Ihren Aufenthalt hier bei uns in der Gran Baita noch angenehmer und schöner zu gestalten. Auf ein baldiges Wiedersehen oder wie wir Grödner sagen \\\"Assudei\\\", Familie Perathoner-Puntscher & Gran Baita Staff\",\n            \"openinghoursnotes\": \"\",\n            \"member_of\": \"\",\n            \"keywords\": \"\",\n            \"url\": \"granbaita-sport-wellness-wolkenstein-in-groeden\",\n            \"url_origin\": \"https://www.bookingsuedtirol.com/index.php?action=view&id=10216\"\n        },\n        {\n            \"id\": 795,\n            \"account_id\": 1,\n            \"origin\": \"hgv\",\n            \"address_id\": 5312,\n            \"contact_id\": 805,\n            \"logo_id\": 64625,\n            \"picture_id\": 64626,\n            \"status\": 1,\n            \"is_claimed\": 0,\n            \"seo_index\": 1,\n            \"in_revision\": 0,\n            \"class\": 1,\n            \"rating\": 0,\n            \"rating_count\": 0,\n            \"corporate_color\": \"\",\n            \"pricelevel\": 0,\n            \"established\": 0,\n            \"closedate\": null,\n            \"show_address\": 1,\n            \"aroundtheclock\": 0,\n            \"bookable_hgv\": 1,\n            \"cippy_auto_connect\": 1,\n            \"reportmail_statistics\": 0,\n            \"internal_notes\": \"\",\n            \"created_by\": 3,\n            \"updated_by\": 3,\n            \"created_at\": \"2017-03-23T15:49:15+00:00\",\n            \"updated_at\": \"2019-09-03T02:41:01+00:00\",\n            \"place_id\": 795,\n            \"langavl\": 1,\n            \"name\": \"Hotel Sulfner\",\n            \"teaser\": \"Ankommen, tief durchatmen. Prickelnd frisch die Luft. Satt sieht sich das Aug am Grün rundum. Vorfreude wird Gewissheit: hier fühl ich mich daheim und Kinderherzen werden höher schlagen.\",\n            \"description\": \"Willkommen im 4 Sterne Hotel Sulfner mit Panoramablick auf die Südtiroler Bergwelt und Wohlfühlambiente im Stil alpenländischer Gemütlichkeit! Eine neue Wellness-Erholungs-Oase mit Hallenbad und Saunalandschaft, eine mediterranen Garten-Parkanlage, 20 neuen großzügigen Suiten und viel Raum für Kinder und Jugendliche erwarten Sie im Ferienort Hafling. Der beliebte Reitstall am Hotel und die umliegende wunderbare Landschaft sorgen für  entspannte und abwechslungsreiche Ferien für die ganze Familie.\",\n            \"openinghoursnotes\": \"\",\n            \"member_of\": \"\",\n            \"keywords\": \"\",\n            \"url\": \"hotel-sulfner-hafling\",\n            \"url_origin\": \"https://www.bookingsuedtirol.com/index.php?action=view&id=10853\"\n        },\n        {\n            \"id\": 796,\n            \"account_id\": 2059,\n            \"origin\": \"hgv\",\n            \"address_id\": 5313,\n            \"contact_id\": 806,\n            \"logo_id\": 66588,\n            \"picture_id\": 66589,\n            \"status\": 1,\n            \"is_claimed\": 1,\n            \"seo_index\": 1,\n            \"in_revision\": 0,\n            \"class\": 1,\n            \"rating\": 0,\n            \"rating_count\": 0,\n            \"corporate_color\": \"\",\n            \"pricelevel\": 0,\n            \"established\": 0,\n            \"closedate\": null,\n            \"show_address\": 1,\n            \"aroundtheclock\": 0,\n            \"bookable_hgv\": 1,\n            \"cippy_auto_connect\": 1,\n            \"reportmail_statistics\": 0,\n            \"internal_notes\": \"\",\n            \"created_by\": 3,\n            \"updated_by\": 4207,\n            \"created_at\": \"2017-03-23T15:49:18+00:00\",\n            \"updated_at\": \"2019-08-02T10:01:58+00:00\",\n            \"place_id\": 796,\n            \"langavl\": 1,\n            \"name\": \"Landhotel Mühlwaldhof\",\n            \"teaser\": \"Im Herzen von Südtirol, inmitten von Obsthainen und Wiesen steht das erste Landhotel Südtirols mit herrlicher Rundsicht auf das gesamte Hochplateau.\",\n            \"description\": \"Unser Haus wurde neu erbaut und folgt dem Konzept eines Gebäudes mit Licht, Raum und Luft. Alle Landhauszimmer sind mit Dusche, Bad, WC, Durchwahl-Telefon, TV, Save, Föhn und Balkon ausgestattet - alle mit Lift erreichbar. Unsere Inklusiv Volleistungen: Begrüßungstrunk, Südtiroler Frühstücksbuffet mit Vitalecke, 4-Gang-Menü mit Salatbar, Nachmittags Snacks vom Buffet, Galadinner, Grill- und Unterhaltungsabende. Wellness: freie Benützung der Vital-Oase mit Finnischer Blocksauna, röm. Dampfbad, Relaxarium, Power-Sonnenbank, Tepidarium, Nebelduschen, Kneippbecken, Whirlpool und Hallenbad. Geheiztes Freischwimmbad, Liegewiese und großer Park mit Sonnenbetten. Für Reisegruppen organisieren wir gerne weitere Programmpunkte. Wir freuen uns schon auf Ihren Anruf! Ihre Familie Tauber\",\n            \"openinghoursnotes\": \"\",\n            \"member_of\": \"\",\n            \"keywords\": \"\",\n            \"url\": \"landhotel-muehlwaldhof-natz\",\n            \"url_origin\": \"https://www.bookingsuedtirol.com/index.php?action=view&id=10978\"\n        },\n        {\n            \"id\": 797,\n            \"account_id\": 1,\n            \"origin\": \"hgv\",\n            \"address_id\": 5314,\n            \"contact_id\": 807,\n            \"logo_id\": 58135,\n            \"picture_id\": 58136,\n            \"status\": 1,\n            \"is_claimed\": 0,\n            \"seo_index\": 1,\n            \"in_revision\": 0,\n            \"class\": 1,\n            \"rating\": 0,\n            \"rating_count\": 0,\n            \"corporate_color\": \"\",\n            \"pricelevel\": 0,\n            \"established\": 0,\n            \"closedate\": null,\n            \"show_address\": 1,\n            \"aroundtheclock\": 0,\n            \"bookable_hgv\": 1,\n            \"cippy_auto_connect\": 1,\n            \"reportmail_statistics\": 0,\n            \"internal_notes\": \"\",\n            \"created_by\": 3,\n            \"updated_by\": 3,\n            \"created_at\": \"2017-03-23T15:49:20+00:00\",\n            \"updated_at\": \"2019-09-03T02:36:27+00:00\",\n            \"place_id\": 797,\n            \"langavl\": 1,\n            \"name\": \"Hotel Grien\",\n            \"teaser\": \"Komfortables familiäres  Hotel in einmaliger Panoramalage, ruhig und sonnig gelegen. Ausgezeichnete Küche vom Juniorchef selber geführt, sehr umfangreiche Weinkarte.\",\n            \"description\": \"Das für seine komfortable Atmosphäre bekannte Hotel Grien in sonniger Lage bietet eine wunderschöne Aussicht auf die Dolomiten. Küche und Weinkeller genießen einen besonderen Stellenwert und Details finden hier noch liebevolle Beachtung. Unser Wellnessbereich mit verschiedenen Saunen und einem großen Sole-Whirlpool bietet Entspannung pur. Sie können aus einer Vielfalt an klassischen und ayurvedischen Massagen sowie unzähligen Schönheitsbehandlungen auswählen.\\r\\nJeden Diestag führt Sie Frau Avesani zur hauseigenen Almhütte auf der Seiser Alm und lädt Sie zum Picknick ein.\\r\\nUnsere zwei Hotel-Shuttles bringen Sie im Winter wie auch im Sommer direkt zu den Aufsteigsanlagen und ins Dorfzentrum.\",\n            \"openinghoursnotes\": \"\",\n            \"member_of\": \"\",\n            \"keywords\": \"\",\n            \"url\": \"hotel-grien-st-ulrich-in-groeden\",\n            \"url_origin\": \"https://www.bookingsuedtirol.com/index.php?action=view&id=10447\"\n        },\n        {\n            \"id\": 799,\n            \"account_id\": 2316,\n            \"origin\": \"hgv\",\n            \"address_id\": 5316,\n            \"contact_id\": 809,\n            \"logo_id\": 61225,\n            \"picture_id\": 61226,\n            \"status\": 1,\n            \"is_claimed\": 1,\n            \"seo_index\": 1,\n            \"in_revision\": 0,\n            \"class\": 1,\n            \"rating\": 0,\n            \"rating_count\": 0,\n            \"corporate_color\": \"\",\n            \"pricelevel\": 0,\n            \"established\": 0,\n            \"closedate\": null,\n            \"show_address\": 1,\n            \"aroundtheclock\": 0,\n            \"bookable_hgv\": 1,\n            \"cippy_auto_connect\": 1,\n            \"reportmail_statistics\": 0,\n            \"internal_notes\": \"\",\n            \"created_by\": 3,\n            \"updated_by\": 3,\n            \"created_at\": \"2017-03-23T15:49:24+00:00\",\n            \"updated_at\": \"2019-08-29T06:28:17+00:00\",\n            \"place_id\": 799,\n            \"langavl\": 1,\n            \"name\": \"Hotel Ratschingserhof\",\n            \"teaser\": \"Ein famili&auml;res Haus mit interessantem Angebot...\",\n            \"description\": \"Ihr Urlaubshotel mit Herz! In der Fr&uuml;h wartet ein &quot;ansichtsreiches&quot; Fr&uuml;hst&uuml;cksbuffet, oder zuerst noch eine Runde im Schwimmbad... Dann geht`s gleich in die Gilfenklamm, hinterm Haus, oder auf einen schroffen Berggipfel oder doch nur ein Spaziergang in die &quot;Sante&quot;... Im Winter geht die Loipe am Haus vorbei, die Aufstiegsanlagen sind 4 km entfernt. So richtig entspannen und relaxen k&ouml;nnen Sie in unserem neuen Wellnesstempel, wo neben verschiedenen Saunen, Hotwhirlpool und Erlebnisbad sie unsere Moni mit ganzheitlichen Massagen verw&ouml;hnt. Vielleicht geht&#39;s dann noch auf eine Rodelpartie oder eine Fackelwanderung, wer wei&szlig;? Am Abend kommen Sie dann kulinarisch voll auf Ihre Kosten. Das 5-G&auml;nge-Menu mit knackigem Salatbuffet l&auml;&szlig;t keine W&uuml;nsche offen. Last but not least ist es die Familie Psenner, die mit viel Herz Ihre sch&ouml;nste Zeit im Jahr noch sch&ouml;ner werden l&auml;&szlig;t.\",\n            \"openinghoursnotes\": \"\",\n            \"member_of\": \"\",\n            \"keywords\": \"\",\n            \"url\": \"hotel-ratschingserhof-ratschings\",\n            \"url_origin\": \"https://www.bookingsuedtirol.com/index.php?action=view&id=10633\"\n        },\n        {\n            \"id\": 800,\n            \"account_id\": 1,\n            \"origin\": \"hgv\",\n            \"address_id\": 5317,\n            \"contact_id\": 810,\n            \"logo_id\": null,\n            \"picture_id\": 74953,\n            \"status\": 1,\n            \"is_claimed\": 0,\n            \"seo_index\": 1,\n            \"in_revision\": 0,\n            \"class\": 1,\n            \"rating\": 0,\n            \"rating_count\": 0,\n            \"corporate_color\": \"\",\n            \"pricelevel\": 0,\n            \"established\": 0,\n            \"closedate\": null,\n            \"show_address\": 1,\n            \"aroundtheclock\": 0,\n            \"bookable_hgv\": 1,\n            \"cippy_auto_connect\": 1,\n            \"reportmail_statistics\": 0,\n            \"internal_notes\": \"\",\n            \"created_by\": 3,\n            \"updated_by\": 3,\n            \"created_at\": \"2017-03-23T15:49:25+00:00\",\n            \"updated_at\": \"2019-09-03T02:47:27+00:00\",\n            \"place_id\": 800,\n            \"langavl\": 1,\n            \"name\": \"Hotel Jagdhof\",\n            \"teaser\": \"Hotel Jagdhof * * * * s \\nIhr vier Sterne Wohlfühlhotel mitten in Kaltern, SPA Landschaft, Suiten, Doppelzimmer, Junior Suiten und Appartements, Entspannung, Wohlbefinden und Daheimsein und sich rundum umsorgt fühlen.\",\n            \"description\": \"Herzlich willkommen im neuen 4 Sterne superior Hotel JAGDHOF. \\r\\nIm Zentrum von Kaltern am See den Pulsschlag hören. Ankommen zwischen moderner Gestaltung und historischem Weinhofgemäuer. Wellness pur in der hauseigenen SPA Landschaft und Bellavita Beautyfarm und genießen nach Großmutters Rezepten Den Zauber erleben, der diesem Ort innewohnt, und wir tun das, was wir am besten können: Ihnen diesen Genuss so schön und intensiv wie möglich zu gestalten. Hier warten wir wo Tradition und moderner Zeitgeist am selben Tisch sitzen … und einander zuzwinkern.\\r\\nLeiser Luxus lässt nach den Sternen greifen. Unsere neuen Suiten, Zimmer und Appartements verführen mit großzügigen Räumen in edlem Ambiente.\\r\\nFamiliensuiten bis zu 4 Pers. teils mit getrennten Schlafräumen.\\r\\nein reichhaltiges Frühstücksbuffet\\r\\nhauseigene Gästekarte\\r\\nkuscheliger Bademantel und Saunatücher in jedem Zimmer, Suite oder Appartement\\r\\nfreie Nutzung des Wellness- Sole Hallenbads\\r\\nfreie Nutzung des BELLAVITA Spa -Bereichs - Relax Ebene auch im Freien\\r\\nRadverleih für Klein und Groß - Mountain Bikes, Citybikes und E - Bikes. \\r\\nabgeschlossene Tiefgarage und Radkeller oder Parkplatz am Haus\\r\\nfreier Zugang zum traumhaften 4-Sterne-Badestrand am Kalterer See\\r\\nKinderbetten für jedes Alter - Leihspielzeug Korb auf dem Zimmer.\\r\\n\\r\\n\\r\\nGenießen Sie mit allen Sinnen und erleben Sie unvergessliche Stunden im traditionsreichen Torgglkeller nebenan, seit Generationen im Familienbesitz, wo Sie einen internen Zugang haben. Authentische, ehrliche Gerichte, erlesene Weine in herausragender Qualität, herzhaft und bodenständig. Wir freuen uns auf Sie, Ihre Familie Atz.\\r\\nAuf unsere Homepage finden Sie wöchentlich aktuelle Pakete.\",\n            \"openinghoursnotes\": \"\",\n            \"member_of\": \"\",\n            \"keywords\": \"\",\n            \"url\": \"hotel-jagdhof-kaltern\",\n            \"url_origin\": \"https://www.bookingsuedtirol.com/index.php?action=view&id=11548\"\n        },\n        {\n            \"id\": 804,\n            \"account_id\": 1,\n            \"origin\": \"hgv\",\n            \"address_id\": 5321,\n            \"contact_id\": 814,\n            \"logo_id\": null,\n            \"picture_id\": 74386,\n            \"status\": 1,\n            \"is_claimed\": 0,\n            \"seo_index\": 1,\n            \"in_revision\": 0,\n            \"class\": 1,\n            \"rating\": 0,\n            \"rating_count\": 0,\n            \"corporate_color\": \"\",\n            \"pricelevel\": 0,\n            \"established\": 0,\n            \"closedate\": null,\n            \"show_address\": 1,\n            \"aroundtheclock\": 0,\n            \"bookable_hgv\": 1,\n            \"cippy_auto_connect\": 1,\n            \"reportmail_statistics\": 0,\n            \"internal_notes\": \"\",\n            \"created_by\": 3,\n            \"updated_by\": 3,\n            \"created_at\": \"2017-03-23T15:49:30+00:00\",\n            \"updated_at\": \"2019-09-03T02:47:01+00:00\",\n            \"place_id\": 804,\n            \"langavl\": 1,\n            \"name\": \"Alpin Garden Wellness Resort – Adults only\",\n            \"teaser\": \"Ankommen, loslassen und sich wie zuhause f&uuml;hlen im Alpin Garden. Eingebettet in einer traumhaften Landschaft des Gr&ouml;dnertales, wo Sie morgens beim Fr&uuml;hst&uuml;ck der Langkofel begr&uuml;&szlig;t.\",\n            \"description\": \"Willkommen im Boutique-Hotel Alpin Garden Wellness Resort&hellip;.im gastfreundschafltichen Gr&ouml;dnertal, werden Sie sich wie zuhause f&uuml;hlen! Ein Urlaubstraum besticht mit kleinen Dingen, die Sie zum Entspannen, L&auml;cheln, Tr&auml;umen und Genie&szlig;en bringen. Mein Team und Ich freuen uns auf Ihren Besuch Markus Hofer\",\n            \"openinghoursnotes\": \"\",\n            \"member_of\": \"\",\n            \"keywords\": \"\",\n            \"url\": \"alpin-garden-wellness-resort-adults-only-st-ulrich-in-groeden\",\n            \"url_origin\": \"https://www.bookingsuedtirol.com/index.php?action=view&id=11510\"\n        },\n        {\n            \"id\": 806,\n            \"account_id\": 1,\n            \"origin\": \"hgv\",\n            \"address_id\": 5323,\n            \"contact_id\": 816,\n            \"logo_id\": 65470,\n            \"picture_id\": 65471,\n            \"status\": 1,\n            \"is_claimed\": 0,\n            \"seo_index\": 1,\n            \"in_revision\": 0,\n            \"class\": 1,\n            \"rating\": 0,\n            \"rating_count\": 0,\n            \"corporate_color\": \"\",\n            \"pricelevel\": 0,\n            \"established\": 0,\n            \"closedate\": null,\n            \"show_address\": 1,\n            \"aroundtheclock\": 0,\n            \"bookable_hgv\": 1,\n            \"cippy_auto_connect\": 1,\n            \"reportmail_statistics\": 0,\n            \"internal_notes\": \"\",\n            \"created_by\": 3,\n            \"updated_by\": 3,\n            \"created_at\": \"2017-03-23T15:49:34+00:00\",\n            \"updated_at\": \"2019-09-03T02:41:30+00:00\",\n            \"place_id\": 806,\n            \"langavl\": 1,\n            \"name\": \"Hotel Weinegg\",\n            \"teaser\": \"Ihr Urlaubsvergn&uuml;gen besonderer Art. Wir haben Tradition mit einem leichten Hauch von Luxus gepaart und aus dieser Symbiose ein kleines Paradies geschaffen.\",\n            \"description\": \"Genie&szlig;en Sie Ihre Traum-Ferien in unserem neuen Ferien-Hotel in exklusiver Panoramalage mit jeglichem Komfort und angenehm herzlicher Atmosph&auml;re.\\r\\n\\r\\nWeinegg Komfort: Gro&szlig;z&uuml;gige Komfortzimmer und Suites - angenehme Tiroler Stuben - Kaminzimmer - Panorama-Terrasse.\\r\\n\\r\\nWeinegg Gourmet: Fr&uuml;hst&uuml;cksbuffet mit Bioecke und Snacks von der Schauk&uuml;che; Verw&ouml;hn-Men&uuml;&acute;s und Feinschmecker-Abende - Hotelbar - Poolbar\\r\\n\\r\\nWeinegg Vital &amp; Wellness: Faszinierende Badelandschaft mit orientalischem Dampfbad - Thermarium - Whirlpool - Beauty-Bereich - Fitnessraum - Tennisplatz - herrliches Erlebnisfreiband - Beachvolleyballfeld - kostenloser Radverleih - gef&uuml;hrte Wanderungen\\r\\n\\r\\nWeinegg Mini&acute;s: Kinderspielplatz - Spielraum - Kinder-Pool mit Wasserrutsche - Auf Wunsch Kinderbetreuung - Kinder-Men&uuml;&acute;s - Familien-Angebote\\r\\nBeachten Sie auch unsere Wochenpauschalen!\",\n            \"openinghoursnotes\": \"\",\n            \"member_of\": \"\",\n            \"keywords\": \"\",\n            \"url\": \"hotel-weinegg-girlan\",\n            \"url_origin\": \"https://www.bookingsuedtirol.com/index.php?action=view&id=10909\"\n        },\n        {\n            \"id\": 807,\n            \"account_id\": 1,\n            \"origin\": \"hgv\",\n            \"address_id\": 5324,\n            \"contact_id\": 817,\n            \"logo_id\": 25406,\n            \"picture_id\": 52545,\n            \"status\": 1,\n            \"is_claimed\": 0,\n            \"seo_index\": 1,\n            \"in_revision\": 0,\n            \"class\": 1,\n            \"rating\": 0,\n            \"rating_count\": 0,\n            \"corporate_color\": \"\",\n            \"pricelevel\": 0,\n            \"established\": 0,\n            \"closedate\": null,\n            \"show_address\": 1,\n            \"aroundtheclock\": 0,\n            \"bookable_hgv\": 1,\n            \"cippy_auto_connect\": 1,\n            \"reportmail_statistics\": 0,\n            \"internal_notes\": \"\",\n            \"created_by\": 3,\n            \"updated_by\": 3,\n            \"created_at\": \"2017-03-23T15:49:36+00:00\",\n            \"updated_at\": \"2019-09-03T02:32:32+00:00\",\n            \"place_id\": 807,\n            \"langavl\": 1,\n            \"name\": \"Alpin & Relax Hotel Das Gerstl\",\n            \"teaser\": \"S&uuml;dtirol Familienurlaub inmitten von Bergen und Seen im sonnigen Vinschgau. Willkommen im Hotel Das Gerstl im Vinschgau ihr ideales Urlaubsquartier f&uuml;r Sommer und Winter.\",\n            \"description\": \"Aktiv - fit - vital sein in unserem Belvita Hotel auf 1.540 m hoch &uuml;ber dem Talkessel des Vinschgaus. Genie&szlig;en Sie oberhalb des Klosters Marienberg bei Burgeis, S&uuml;dtiroler Gastlichkeit in unserem Familienbetrieb. In unserem Familienhotel in S&uuml;dtirol legen wir gro&szlig;en Wert auf eine pers&ouml;nliche und liebevolle Betreuung unserer G&auml;ste. Entspannung und Ruhe finden Sie in unserem geschmackvoll, eingerichteten, Ambiente zwischen Tradition und Moderne. Von ihrem Zimmer erwartet Sie ein traumhafter Panoramablick auf den Vinschgau, die &Ouml;tztaler Alpen und die Ortlergruppe. Ebenso ist der Ski- und Wanderberg Watles zum Wandern, Mountainbiken oder Skifahren nur wenige Minuten von uns entfernt.\",\n            \"openinghoursnotes\": \"Mitte Dezember bis April\\n\\tMitte Mai bis November\",\n            \"member_of\": \"\",\n            \"keywords\": \"\",\n            \"url\": \"alpin-relax-hotel-das-gerstl-schlinig\",\n            \"url_origin\": \"https://www.bookingsuedtirol.com/index.php?action=view&id=10146\"\n        },\n        {\n            \"id\": 808,\n            \"account_id\": 1,\n            \"origin\": \"hgv\",\n            \"address_id\": 5325,\n            \"contact_id\": 818,\n            \"logo_id\": 61309,\n            \"picture_id\": 64555,\n            \"status\": 1,\n            \"is_claimed\": 0,\n            \"seo_index\": 1,\n            \"in_revision\": 0,\n            \"class\": 1,\n            \"rating\": 0,\n            \"rating_count\": 0,\n            \"corporate_color\": \"\",\n            \"pricelevel\": 0,\n            \"established\": 0,\n            \"closedate\": null,\n            \"show_address\": 1,\n            \"aroundtheclock\": 0,\n            \"bookable_hgv\": 1,\n            \"cippy_auto_connect\": 1,\n            \"reportmail_statistics\": 0,\n            \"internal_notes\": \"\",\n            \"created_by\": 3,\n            \"updated_by\": 3,\n            \"created_at\": \"2017-03-23T15:49:37+00:00\",\n            \"updated_at\": \"2019-09-03T02:40:58+00:00\",\n            \"place_id\": 808,\n            \"langavl\": 1,\n            \"name\": \"Hotel Rosenhof\",\n            \"teaser\": \"Hotel Rosenhof - sch&ouml;nes neues **** Familienhotel mit Garten, Liegewiese, Schwimmb&auml;der und gro&szlig;z&uuml;gigem Spa Der richtige Ort f&uuml;r Ihren gelungenen Urlaub, nur 200 Meter bis zur Gondelbahn\",\n            \"description\": \"Herzlich willkommen im Hotel Rosenhof in M&uuml;hlbach am Eingang des Pustertals in der Ferienregion Gitschberg Jochtal! Im Urlaubshotel Rosenhof erf&uuml;llen sich Ihre W&uuml;nsche, die Sie f&uuml;r einen Sommerurlaub in S&uuml;dtirol und einen Winterurlaub im Pustertal-Dolomiten hegen. Unsere Wanderregion Gitschberg-Jochtal und die Dolomiten bieten fantastische M&ouml;glichkeiten zum Wandern in den S&uuml;dtiroler Bergen, f&uuml;r Bergtouren in den Dolomiten, f&uuml;r Radtouren mit dem Fahrrad auf den S&uuml;dtiroler Radwegen sowie f&uuml;r spektakul&auml;re Mountainbike-Touren im Pustertal. Motorradfahrer mit Sinn f&uuml;r Gem&uuml;tlichkeit und eine gepflegte Unterkunft in S&uuml;dtirol werden vom Rosenhof und die von hier aus zu unternehmenden Motorradtouren in den Dolomiten begeistert ebenso begeistert sein wie Familien, die hier ein komfortables und abwechslungsreiches Hotel Urlaubsziel in S&uuml;dtirol finden. Bike- und Family-Freundlich? Kein Widerspruch, sondern Ausdruck der Philosophie unseres Hotels Rosenhof im Pustertal: Der Rosenhof ist ein famili&auml;res, gepflegtes Drei-Sterne-Hotel in S&uuml;dtirol, in dem alle herzlich willkommen sind! Der Rosenhof ist ideal f&uuml;r Ihren Familienurlaub in S&uuml;dtirol: Spielen, Bewegen und Baden im hauseigenen Freibad machen Mit der Almencard, die Sie kostenlos von uns erhalten, genie&szlig;en Sie von Mai bis Oktober geldwerte Vorteile, wie etwa die unbegrenzte Fahrt mit den 3 Seilbahnen der Almenregion Gitschberg Jochtal, ein gro&szlig;artiges Programm mit gef&uuml;hrten Wanderungen und ein super Kinderprogramm mit Spielen, Bewegung und kleinen Abenteuern. F&uuml;r Ihren Skiurlaub in S&uuml;dtirol ist das Hotel Rosenhof in der Ferienregion Gitschberg Jochtal im Pustertal mitten in einem Skiparadies gelegen: Unser Skigebiet Gitschberg Jochtal, das Skigebiet Kronplatz im Pustertal und das Skigebiet Plose im Eisacktal bieten Skifahrern und Snowboardern modernste Aufstiegsanlagen und Pistenbedingungen der Extraklasse. Einige Details: Neuer Eingangsbereich mit Rezeption, gem&uuml;tlicher Sitzecke und Internetpoint *Aufzug &uuml;ber 6 Stockwerke *Neue gro&szlig;z&uuml;gige und modern ausgestattete Zimmer + Badezimmer (25 &ndash; 35 m&sup2;) *Neue Panorama-Suiten mit Dachterrasse (30 &ndash; 45m&sup2;) *Neu gestalteter Speisesaal mit eigenem Buffetbereich *gem&uuml;tliches Tiroler &ndash; St&uuml;bele als Aufenthaltsraum *Neuer Wellnessbereich und Ruheraum *Neuer Skiraum, Trockenraum und Bikekeller *Neuer Kinderspielraum *W-Lan Empfang im gesamten Hotel *Entspannung pur - Eigenes Freischwimmbad mit Sonnenterasse, gro&szlig;e Liegewiese und Sauna *zahlreiche Ausflugsziele in die Almenregion Gitschberg Jochtal *kostenlose Almencard *Ideale Lage f&uuml;r Wander - Rad - Motorrad - Touren Langlauf - Eislauf - Winterwanderungen - alles wird in unserer Ferienregion angeboten *Geniessen Sie autofreie Ferien! Die Direkte N&auml;he zu Bus und Bahn und die nur 200 Meter entfernte Gondelbahn in das Wanderparadies Gitschberg-Jochtal machen Ihr Auto &uuml;berfl&uuml;ssig *gro&szlig;er Parkplatz, ideal auch f&uuml;r Busse *Sowohl Wandern und Radfahren in alpiner Landschaft, &quot;Kultur Schnuppern&quot; in mittelalterlichen St&auml;dten, was Sie auch unternehmen, bei uns im Rosenhof ist kein Tag wie der Andere! Mit viel Liebe und pers&ouml;nlichem Einsatz m&ouml;chten wir auch in Zukunft daf&uuml;r sorgen, dass Sie in unserem Hotel Rosenhof einen herrlichen Erholungsurlaub verbringen. Wir freuen uns darauf mit Ihnen die sch&ouml;nsten Tage im Jahr zu verbringen! Ihre Familie Egger\",\n            \"openinghoursnotes\": \"Ende Dezember bis Anfang April\\n\\tEnde Mai bis Mitte Oktober\",\n            \"member_of\": \"\",\n            \"keywords\": \"\",\n            \"url\": \"hotel-rosenhof-muehlbach\",\n            \"url_origin\": \"https://www.bookingsuedtirol.com/index.php?action=view&id=10847\"\n        },\n        {\n            \"id\": 809,\n            \"account_id\": 1,\n            \"origin\": \"hgv\",\n            \"address_id\": 5326,\n            \"contact_id\": 819,\n            \"logo_id\": 64156,\n            \"picture_id\": 64157,\n            \"status\": 1,\n            \"is_claimed\": 0,\n            \"seo_index\": 1,\n            \"in_revision\": 0,\n            \"class\": 1,\n            \"rating\": 0,\n            \"rating_count\": 0,\n            \"corporate_color\": \"\",\n            \"pricelevel\": 0,\n            \"established\": 0,\n            \"closedate\": null,\n            \"show_address\": 1,\n            \"aroundtheclock\": 0,\n            \"bookable_hgv\": 1,\n            \"cippy_auto_connect\": 1,\n            \"reportmail_statistics\": 0,\n            \"internal_notes\": \"\",\n            \"created_by\": 3,\n            \"updated_by\": 3,\n            \"created_at\": \"2017-03-23T15:49:39+00:00\",\n            \"updated_at\": \"2019-09-03T02:40:40+00:00\",\n            \"place_id\": 809,\n            \"langavl\": 1,\n            \"name\": \"Hotel Erzherzog Johann\",\n            \"teaser\": \"Das traditionsreiche Hotel, umgeben von einer großzügigen Gartenanlage, nur wenige Gehminuten vom Ortskern entfernt mit einer vollkommen neuen Sauna- und Badelandschaft und Beautyabteilung, eignet sich ideal zum Entspannen und Erholen.\",\n            \"description\": \"Das Hotel Erzherzog Johann liegt, umgeben von einer großzügigen Gartenanlage, nur wenige Gehminuten vom Ortskern entfernt. Erleben Sie raffinierte Menüs, traumhafte Kalte-, Warme-, Kuchen- und Dessertbuffets, lassen Sie sich überraschen von den besonderen kulinarischen Spezialitäten. Wohnen im Hotel Erzherzog Johann bedeutet geräumige Suiten und Zimmer, die Ihnen den Komfort bieten, den Sie sich im Urlaub erwarten. Lassen Sie die Seele baumeln, in unserem neuen Wellnessbereich mit Sauna- und Badelandschaft, Beautyabteilung, Kneippanlage und Fitnessraum. Im Hallen- oder im Panoramafreibad können Sie sich entspannen und die warme Sonne Schennas und die herrliche Aussicht auf Meran und seine Umgebung genießen. Wir organisieren für Sie Hausveranstaltungen, Ausflüge und geführte Wanderungen in die herrliche Landschaft Südtirols. Verbringen Sie Ihren Urlaub in Harmonie und natürlicher Umgebung. Familie Pichler freut sich auf Sie.\",\n            \"openinghoursnotes\": \"\",\n            \"member_of\": \"\",\n            \"keywords\": \"\",\n            \"url\": \"hotel-erzherzog-johann-schenna\",\n            \"url_origin\": \"https://www.bookingsuedtirol.com/index.php?action=view&id=10826\"\n        },\n        {\n            \"id\": 810,\n            \"account_id\": 1,\n            \"origin\": \"hgv\",\n            \"address_id\": 5327,\n            \"contact_id\": 820,\n            \"logo_id\": 285433,\n            \"picture_id\": 52601,\n            \"status\": 1,\n            \"is_claimed\": 0,\n            \"seo_index\": 1,\n            \"in_revision\": 0,\n            \"class\": 1,\n            \"rating\": 0,\n            \"rating_count\": 0,\n            \"corporate_color\": \"\",\n            \"pricelevel\": 0,\n            \"established\": 0,\n            \"closedate\": null,\n            \"show_address\": 1,\n            \"aroundtheclock\": 0,\n            \"bookable_hgv\": 1,\n            \"cippy_auto_connect\": 1,\n            \"reportmail_statistics\": 0,\n            \"internal_notes\": \"\",\n            \"created_by\": 3,\n            \"updated_by\": 3,\n            \"created_at\": \"2017-03-23T15:49:40+00:00\",\n            \"updated_at\": \"2019-09-03T02:32:35+00:00\",\n            \"place_id\": 810,\n            \"langavl\": 1,\n            \"name\": \"Hotel Icaro\",\n            \"teaser\": \"Erleben Sie ein atemberaubendes Postkarten-Panorama beim Einkehrschwung auf der Terrasse, beim Barfu&szlig;laufen im Almgras nach einem Saunagang oder einfach von Ihrem Balkon aus\",\n            \"description\": \"Das Icaro steht frei auf dem sch&ouml;nsten Aussichtspunkt der Seiser Alm auf 1.910 Metern Meeresh&ouml;he, nichts verstellt den Blick auf die imposante Dolomitenkulisse vor Ihnen. Hier sind Sie Zuschauer eines traumhaften Naturschauspiels - bl&uuml;hende Almwiesen, weite Schneelandschaften, Platt- und Langkofel im Abendrot begleiten Ihre Ferien im Vitalpina Hotel Icaro.\",\n            \"openinghoursnotes\": \"Dezember bis Mitte April\\n\\tJuni bis Mitte Oktober\",\n            \"member_of\": \"\",\n            \"keywords\": \"\",\n            \"url\": \"hotel-icaro-seiser-alm\",\n            \"url_origin\": \"https://www.bookingsuedtirol.com/index.php?action=view&id=10148\"\n        },\n        {\n            \"id\": 811,\n            \"account_id\": 1,\n            \"origin\": \"hgv\",\n            \"address_id\": 5328,\n            \"contact_id\": 821,\n            \"logo_id\": null,\n            \"picture_id\": 64851,\n            \"status\": 1,\n            \"is_claimed\": 0,\n            \"seo_index\": 1,\n            \"in_revision\": 0,\n            \"class\": 1,\n            \"rating\": 0,\n            \"rating_count\": 0,\n            \"corporate_color\": \"\",\n            \"pricelevel\": 0,\n            \"established\": 0,\n            \"closedate\": null,\n            \"show_address\": 1,\n            \"aroundtheclock\": 0,\n            \"bookable_hgv\": 1,\n            \"cippy_auto_connect\": 1,\n            \"reportmail_statistics\": 0,\n            \"internal_notes\": \"\",\n            \"created_by\": 3,\n            \"updated_by\": 3,\n            \"created_at\": \"2017-03-23T15:49:41+00:00\",\n            \"updated_at\": \"2019-09-03T02:41:12+00:00\",\n            \"place_id\": 811,\n            \"langavl\": 1,\n            \"name\": \"Schulerhof Vitalpina Hotel\",\n            \"teaser\": \"WANDERN-BIKEN-GENUSS-WELLNESS  - Ein Traumhaftes Pl&auml;tzchen, ein Haus mit Tradition, Gastgeber aus Leidenschaft.\",\n            \"description\": \"Herzlich willkommen in unserem Hotel Schulerhof in Plaus bei Naturns - S&uuml;dtirol, zwischen Meran und dem Vinschgau gelegen. Bei uns genie&szlig;en und erleben Sie aktive Ferientage in S&uuml;dtirol. Als Bikehotel S&uuml;dtirol erm&ouml;glichen wir Ihnen t&auml;glich die sch&ouml;nsten Radtouren. Bergfreunde sch&auml;tzen unsere 3 gef&uuml;hrten Wanderungen pro Woche, die t&auml;glichen Wandertipps und unsere hauseigene Wanderfibel. Nach so viel Sport tut Wellness &amp; Beauty gut sowie Genuss aus der Tiroler und mediterranen K&uuml;che und dies alles garantiert von den Vitalpinahotels, den Genu&szlig;- und Wanderprofis S&uuml;dtirols.\\r\\n\\r\\nViele Schulerhof-Specials f&uuml;r Sie!\\r\\nGastlichkeit unter der pers&ouml;nlichen F&uuml;hrung der Familie Schuler:\\r\\n- Aperitifempfang f&uuml;rs erste Kennenlernen\\r\\n- Fr&uuml;hst&uuml;ck und Abendessen im Innenhof des Ansitzes\\r\\n- 5- Gang-Wahlmen&uuml;s mit den k&ouml;stlichsten regionaler mediterraner K&uuml;che, romantische Gala-Dinner, kulinarische Themenabende\\r\\n- Exzellent sortierter Weinkeller sowie spezielle Weinseminare im Schulerhofkeller\\r\\n- Hausbar; helle, lichtdurchflutete Aufenthaltsr&auml;ume; individuell gestaltete Speiser&auml;ume\\r\\n\\r\\nWellness, Wandern und noch viel mehr:\\r\\n- Panoramahallenbad 30 Grad mit Whirlpool\\r\\n- Gro&szlig;z&uuml;gige Saunalandschaft (Finnische Stubensauna, r&ouml;misches Dampfbad, Thermarium, Aromagrotte, Saftbar und Ruhezonen)\\r\\n- Infrarot Kabine\\r\\n- Beauty- und Massageabteilung\\r\\n- Gef&uuml;hrte Wanderungen mit dem Chef des Hauses\\r\\n- T&auml;gliche Wander-Infotheke\\r\\n- Nordic Walking-Einf&uuml;hrungskurse\\r\\n- Kostenloser Citybike-Verleih\\r\\n- Von Ende Mai bis Mitte September freier Eintritt im Erlebnisfreibad Naturns\\r\\n\\r\\nMitgliedsbetrieb der &Ouml;tzi-Bikeacademy Naturns mit 14 gef&uuml;hrte Biketouren pro Woche in 2 Leistungsgruppen\\r\\nAttraktive Wochenpauschalangebote f&uuml;r Wanderer, Biker, Nordic Walker, Wellness-Fans und Genie&szlig;er\",\n            \"openinghoursnotes\": \"\",\n            \"member_of\": \"\",\n            \"keywords\": \"\",\n            \"url\": \"schulerhof-vitalpina-hotel-plaus\",\n            \"url_origin\": \"https://www.bookingsuedtirol.com/index.php?action=view&id=10868\"\n        },\n        {\n            \"id\": 815,\n            \"account_id\": 1,\n            \"origin\": \"hgv\",\n            \"address_id\": 5332,\n            \"contact_id\": 825,\n            \"logo_id\": 54240,\n            \"picture_id\": 54241,\n            \"status\": 1,\n            \"is_claimed\": 0,\n            \"seo_index\": 1,\n            \"in_revision\": 0,\n            \"class\": 1,\n            \"rating\": 0,\n            \"rating_count\": 0,\n            \"corporate_color\": \"\",\n            \"pricelevel\": 0,\n            \"established\": 0,\n            \"closedate\": null,\n            \"show_address\": 1,\n            \"aroundtheclock\": 0,\n            \"bookable_hgv\": 1,\n            \"cippy_auto_connect\": 1,\n            \"reportmail_statistics\": 0,\n            \"internal_notes\": \"\",\n            \"created_by\": 3,\n            \"updated_by\": 3,\n            \"created_at\": \"2017-03-23T15:49:47+00:00\",\n            \"updated_at\": \"2019-09-03T02:33:35+00:00\",\n            \"place_id\": 815,\n            \"langavl\": 1,\n            \"name\": \"Bio Hotel Panorama\",\n            \"teaser\": \"Lust auf natürlichen Urlaub?\\r\\nWillkommen im Hotel Panorama, ausgezeichnet mit dem Südtiroler Umweltsiegel.\",\n            \"description\": \"Natürlich Urlaub... voller Leben -\\r\\nim 1. zertifizierten  Biohotel Italiens - Hotel Panorama\\r\\n\\r\\nEchtes Biovergnügen !\\r\\nErleben Sie Momente voller Glück, voller Leben, Kraft und Gefühl.\\r\\nWenn das Wunder der Natur die Sinne verwöhnt, kann es nur die kreative, ideenreiche Panorama-Küche mit eigener Biolandwirtschaft und Produkten aus biologischem Anbau sein.\\r\\nAlle einheimischen Feldgemüse- und Salatarten (mehr als 25 Sorten) und die aromatischen Kräuter kommen während der Anbauperiode jeden Tag in die Küche und dann auf Ihren Teller. Unser Küchenteam versteht es hervorragend daraus vitaminschonend, schmackhafte Gerichte zu zaubern.\\r\\nUnd dazu noch das belebte, energetische Grander Wasser und erlesene Weine.\\r\\n\\r\\nHier im oberen Vinschgau, den Logenplatz der Natur, erwarten Sie Waal- Wanderwege und Gipfeltouren die Sie vorbei an grünen saftigen Wiesen, romantischen Wälder und tiefblauen Bergseen führen. Ob Wandern, Biken, Radfahren, Schwimmen oder Skifahren, Schneeschuhwandern und Rodeln im Winter, jeder kommt auf seine Kosten.\\r\\n\\r\\nTagträumen, lachen, den Gedanken nachhängen auf der Sonnenterrasse mit herrlichen Rundblick auf das weite Tal des Vinschgaus bis zum Ortlermassiv. Lassen Sie sich’s gut gehen, denn nachmittags heizen wir Ihnen so richtig ein in der Saunalandschaft Acquaviva.\\r\\n\\r\\nWunderschön Wohnen in den Öko-Panorama Zimmern mit Lehmwänden, Wandheizung,  Netzfreischaltung, sowie Massivholzböden- und möbel. Hier können Sie gesund schlafen und erholsam träumen.\",\n            \"openinghoursnotes\": \"\",\n            \"member_of\": \"\",\n            \"keywords\": \"\",\n            \"url\": \"bio-hotel-panorama-mals\",\n            \"url_origin\": \"https://www.bookingsuedtirol.com/index.php?action=view&id=10231\"\n        },\n        {\n            \"id\": 822,\n            \"account_id\": 2237,\n            \"origin\": \"hgv\",\n            \"address_id\": 5339,\n            \"contact_id\": 832,\n            \"logo_id\": 52714,\n            \"picture_id\": 52715,\n            \"status\": 1,\n            \"is_claimed\": 1,\n            \"seo_index\": 1,\n            \"in_revision\": 0,\n            \"class\": 1,\n            \"rating\": 0,\n            \"rating_count\": 0,\n            \"corporate_color\": \"\",\n            \"pricelevel\": 0,\n            \"established\": 0,\n            \"closedate\": null,\n            \"show_address\": 1,\n            \"aroundtheclock\": 0,\n            \"bookable_hgv\": 1,\n            \"cippy_auto_connect\": 1,\n            \"reportmail_statistics\": 0,\n            \"internal_notes\": \"\",\n            \"created_by\": 3,\n            \"updated_by\": 4207,\n            \"created_at\": \"2017-03-23T15:49:55+00:00\",\n            \"updated_at\": \"2019-08-08T06:13:26+00:00\",\n            \"place_id\": 822,\n            \"langavl\": 1,\n            \"name\": \"Hotel zum Löwen\",\n            \"teaser\": \"Herzlich Willkommen im Restaurant Hotel Zum Löwen in Mölten - Südtirol\",\n            \"description\": \"Seit über 100 Jahren ist das Restaurant Hotel zum Löwen in Mölten ein Ziel für Leute, die gerne gut essen und trinken. Schonend renoviert finden Sie in unserem Haus modernen Komfort und den Charme vergangener Zeiten. Erleben Sie die schönsten Tage im Jahr bei uns in Mölten - Südtirol, und genießen Sie neben dem einzigartigen Panorama, Gemütlichkeit, Ruhe & Erholung, in unserem familiengeführten Haus. \\n\\nOb alleine oder in der Gruppe - Urlaub von seiner schönsten Seite\",\n            \"openinghoursnotes\": \"\",\n            \"member_of\": \"\",\n            \"keywords\": \"\",\n            \"url\": \"hotel-zum-loewen-moelten\",\n            \"url_origin\": \"https://www.bookingsuedtirol.com/index.php?action=view&id=10154\"\n        },\n        {\n            \"id\": 823,\n            \"account_id\": 2055,\n            \"origin\": \"hgv\",\n            \"address_id\": 5340,\n            \"contact_id\": 833,\n            \"logo_id\": null,\n            \"picture_id\": 25666,\n            \"status\": 1,\n            \"is_claimed\": 1,\n            \"seo_index\": 1,\n            \"in_revision\": 0,\n            \"class\": 1,\n            \"rating\": 0,\n            \"rating_count\": 0,\n            \"corporate_color\": \"\",\n            \"pricelevel\": 0,\n            \"established\": 0,\n            \"closedate\": null,\n            \"show_address\": 1,\n            \"aroundtheclock\": 0,\n            \"bookable_hgv\": 1,\n            \"cippy_auto_connect\": 1,\n            \"reportmail_statistics\": 0,\n            \"internal_notes\": \"\",\n            \"created_by\": 3,\n            \"updated_by\": 4207,\n            \"created_at\": \"2017-03-23T15:49:57+00:00\",\n            \"updated_at\": \"2019-08-02T09:37:19+00:00\",\n            \"place_id\": 823,\n            \"langavl\": 1,\n            \"name\": \"Proderhof\",\n            \"teaser\": \"\\\"Proderhof\\\"\\nwo Herz, Geist und Seele auf ihre Kosten kommen!\",\n            \"description\": \"Unser Bauernhof liegt eingebettet in die Natur, am Fuße der Geisler Spitzen im Ortskern von St. Magdalena. Nach wenigen Gehminuten erreichen Sie alles, was Sie für einen freien und unbeschwerten Urlaub auf dem Lande benötigen - unseren kleinen Dorfladen, öffentliche Verkehrsmittel und das Naturparkhaus Puez-Geisler. Auch für Sport, Spaß und Kulturelles ist gesorgt.\\r\\nUnsere Wohnungen sind mit viel Herz, Liebe und allem nötigen Komfort eingerichtet und werden auch höheren Ansprüchen gerecht. \\r\\nErleben Sie das Leben auf dem Bauernhof hautnah mit - bei der Stallarbeit, auf dem Feld bei der Heuernte oder beim Herstellen der hofeigenen Produkte.\\r\\nAm Abend nach getaner Arbeit in geselliger Runde ein Gläschen trinken und den Grillen beim Zirben zuhören.\\r\\nVerbringen Sie Ihren Urlaub bei uns, wir freuen uns auf Sie!\",\n            \"openinghoursnotes\": \"\",\n            \"member_of\": \"\",\n            \"keywords\": \"\",\n            \"url\": \"proderhof-villnoess\",\n            \"url_origin\": \"https://www.bookingsuedtirol.com/index.php?action=view&id=12553\"\n        },\n        {\n            \"id\": 825,\n            \"account_id\": 1,\n            \"origin\": \"hgv\",\n            \"address_id\": 5342,\n            \"contact_id\": 835,\n            \"logo_id\": null,\n            \"picture_id\": 86167,\n            \"status\": 1,\n            \"is_claimed\": 0,\n            \"seo_index\": 1,\n            \"in_revision\": 0,\n            \"class\": 1,\n            \"rating\": 0,\n            \"rating_count\": 0,\n            \"corporate_color\": \"\",\n            \"pricelevel\": 0,\n            \"established\": 0,\n            \"closedate\": null,\n            \"show_address\": 1,\n            \"aroundtheclock\": 0,\n            \"bookable_hgv\": 0,\n            \"cippy_auto_connect\": 1,\n            \"reportmail_statistics\": 0,\n            \"internal_notes\": \"\",\n            \"created_by\": 3,\n            \"updated_by\": 3,\n            \"created_at\": \"2017-03-23T15:49:59+00:00\",\n            \"updated_at\": \"2019-05-18T03:02:38+00:00\",\n            \"place_id\": 825,\n            \"langavl\": 1,\n            \"name\": \"Birkenhof\",\n            \"teaser\": \"Unser kinderfreundlicher Urlaub auf dem Bauernhof ist 3 km vom Ortszentrum entfernt. Einkehrtipp entlang des Vinschger Höhenweges in unserem urigen Hofschank.\",\n            \"description\": \"Willkommen auf dem Birkenhof \\r\\n\\r\\nDer Birkenhof liegt auf 1.230 m. Meereshöhe am Schludernser Sonnenberg \\r\\nMit direktem Blick auf den König Ortler erwachen, feinste Südtiroler Gastfreundschaft genießen, gemütlich wohnen, herzhaft speißen, Kultur, Land und Leute kennenlernen ...\\r\\nDer Birkenhof ist ein traditionsreicher und kinderfreundlicher Viehhof und ist mit dem Auto in wenigen Minuten von Schluderns erreichbar.\\r\\n\\r\\nAm Birkenhof spüren Sie, was perfekter Urlaub auf dem Bauernhof heißt. Wir würden uns freuen, Sie als Gast bei uns begrüßen zu dürfen.\",\n            \"openinghoursnotes\": \"\",\n            \"member_of\": \"\",\n            \"keywords\": \"\",\n            \"url\": \"birkenhof-schluderns\",\n            \"url_origin\": \"https://www.bookingsuedtirol.com/index.php?action=view&id=12395\"\n        },\n        {\n            \"id\": 829,\n            \"account_id\": 1,\n            \"origin\": \"hgv\",\n            \"address_id\": 5346,\n            \"contact_id\": 839,\n            \"logo_id\": null,\n            \"picture_id\": 51385,\n            \"status\": 1,\n            \"is_claimed\": 0,\n            \"seo_index\": 1,\n            \"in_revision\": 0,\n            \"class\": 1,\n            \"rating\": 0,\n            \"rating_count\": 0,\n            \"corporate_color\": \"\",\n            \"pricelevel\": 0,\n            \"established\": 0,\n            \"closedate\": null,\n            \"show_address\": 1,\n            \"aroundtheclock\": 0,\n            \"bookable_hgv\": 1,\n            \"cippy_auto_connect\": 1,\n            \"reportmail_statistics\": 0,\n            \"internal_notes\": \"\",\n            \"created_by\": 3,\n            \"updated_by\": 3,\n            \"created_at\": \"2017-03-23T15:50:06+00:00\",\n            \"updated_at\": \"2019-09-03T02:31:51+00:00\",\n            \"place_id\": 829,\n            \"langavl\": 1,\n            \"name\": \"Design Hotel Tyrol\",\n            \"teaser\": \"Urlaub im Zeichen der Vielfalt: Wellness, Sport und Kulinarik auf h&ouml;chstem Niveau &ndash; das alles kann man in unserem familiengef&uuml;hrten Design Hotel Tyrol **** erleben.\",\n            \"description\": \"Das Hotel ist mitten im Wanderer- und Mountainbike-Eldorado „Naturpark Texelgruppe“ oberhalb von Meran gelegen. Mit zwei Bergbahnen – eine auf jeder Talseite – sind Sie in wenigen Minuten auf 1.500 Metern Höhe und genießen einen herrlichen Panoramablick über Meran bis in die Dolomiten.\\r\\n\\r\\nDer Service des Hotels\\r\\n-\\tTägliche Fitnesskurse (Aqua-Gym, Aqua-Bike, Pilates, Power Yoga etc.)\\r\\n-\\tGeführte Wanderungen und Radtouren im Naturpark\\r\\n-\\tGeführte Mountainbike-Touren mit Gastgeber Boris Frei\\r\\n-\\tRadverleih\\r\\n-\\tVideoüberwachte Bike-Garage mit Hängehaken und Werkstatt\\r\\n-\\tUmfangreiche Wellness- und Beauty-Angebote\\r\\n-\\tHeilpraktiker im Haus\\r\\n-\\tKostenloses WLAN\\r\\n\\r\\nEssen und Trinken\\r\\nMorgens verwöhnen wir Sie mit einem themenbezogenen Frühstücksbuffet und am Abend kochen Ihnen Küchenchef Roland und sein Team ein 5-Gänge-Gourmet-Menü. - Von typisch italienisch bis traditionell südtirolerisch.\\r\\n\\r\\nWellness & Pools\\r\\nEntspannen Sie inmitten der Berge in unserem großen Park mit Panoramapool, Poolbar, Felsenschwimmbad und Hot-Whirlpool. \\r\\nHier befindet sich auch unsere Finnische Gartensauna , in der Sie beim täglichen Aufguss den Blick in Obstwiesen und die Berge genießen können.\\r\\nIn unserem Innenbereich finden Sie neben unserem Hallenbad auch eine Heusauna (45°C), Infrarotsauna, Relaxarium mit Farbtherapie, Türkischem Dampfbad (42°C) und einen Ruheraum. Bademäntel und Badetücher warten im Zimmer auf Sie.\",\n            \"openinghoursnotes\": \"\",\n            \"member_of\": \"\",\n            \"keywords\": \"\",\n            \"url\": \"design-hotel-tyrol-rabland\",\n            \"url_origin\": \"https://www.bookingsuedtirol.com/index.php?action=view&id=10096\"\n        },\n        {\n            \"id\": 830,\n            \"account_id\": 2137,\n            \"origin\": \"hgv\",\n            \"address_id\": 5347,\n            \"contact_id\": 840,\n            \"logo_id\": 62894,\n            \"picture_id\": 62895,\n            \"status\": 1,\n            \"is_claimed\": 1,\n            \"seo_index\": 1,\n            \"in_revision\": 0,\n            \"class\": 1,\n            \"rating\": 0,\n            \"rating_count\": 0,\n            \"corporate_color\": \"\",\n            \"pricelevel\": 0,\n            \"established\": 0,\n            \"closedate\": null,\n            \"show_address\": 1,\n            \"aroundtheclock\": 0,\n            \"bookable_hgv\": 1,\n            \"cippy_auto_connect\": 1,\n            \"reportmail_statistics\": 0,\n            \"internal_notes\": \"\",\n            \"created_by\": 3,\n            \"updated_by\": 4207,\n            \"created_at\": \"2017-03-23T15:50:08+00:00\",\n            \"updated_at\": \"2019-08-05T14:46:47+00:00\",\n            \"place_id\": 830,\n            \"langavl\": 1,\n            \"name\": \"Gasthof Premstl\",\n            \"teaser\": \"Angenehmer Familienbetrieb, in ruhiger Lage, direkt am Wald mit schönen Wanderwegen bis hin zu großen Berg- und Gletschertouren.\",\n            \"description\": \"Willkommen in unserem Familienbetrieb in ruhiger Lage am Waldrand,\\r\\nidealer Ausgangspunkt für Wanderungen und Bergtouren, zum Erholen und Genießen.\\r\\n\\r\\nGemütliche Zimmer mit SAT-TV, Frühstücks- und Aufenthaltsraum, Liegewiese, Terrasse,\\r\\ngutbürgerliche Küche, lokale und internationale Gerichte.\\r\\n\\r\\nDer Senior-Chef des Hauses ist staatlich geprüfter Berg- und Skiführer. \\r\\n\\r\\nWir bieten ganzjährig geöffnete Appartements für 2-4 Personen mit SAT-TV.\\r\\nAuf Wunsch mit Frühstück oder Halbpension.\",\n            \"openinghoursnotes\": \"\",\n            \"member_of\": \"\",\n            \"keywords\": \"\",\n            \"url\": \"gasthof-premstl-ennetal\",\n            \"url_origin\": \"https://www.bookingsuedtirol.com/index.php?action=view&id=10737\"\n        },\n        {\n            \"id\": 831,\n            \"account_id\": 1,\n            \"origin\": \"hgv\",\n            \"address_id\": 5348,\n            \"contact_id\": 841,\n            \"logo_id\": 51947,\n            \"picture_id\": 51948,\n            \"status\": 1,\n            \"is_claimed\": 0,\n            \"seo_index\": 1,\n            \"in_revision\": 0,\n            \"class\": 1,\n            \"rating\": 0,\n            \"rating_count\": 0,\n            \"corporate_color\": \"\",\n            \"pricelevel\": 0,\n            \"established\": 0,\n            \"closedate\": null,\n            \"show_address\": 1,\n            \"aroundtheclock\": 0,\n            \"bookable_hgv\": 1,\n            \"cippy_auto_connect\": 1,\n            \"reportmail_statistics\": 0,\n            \"internal_notes\": \"\",\n            \"created_by\": 3,\n            \"updated_by\": 3,\n            \"created_at\": \"2017-03-23T15:50:09+00:00\",\n            \"updated_at\": \"2019-09-03T02:32:10+00:00\",\n            \"place_id\": 831,\n            \"langavl\": 1,\n            \"name\": \"Vitalpina Hotel Valserhof\",\n            \"teaser\": \"Im Hotel Valserhof**** aktiv sein und unbeschwerte Tage verbringen. Die Ski- &amp; Almenregion Gitschberg Jochtal, unweit von M&uuml;hlbach, ist im Sommer Ausgangspunkt f&uuml;r lohnende Wanderungen und im Winter beliebtes Skigebiet.\",\n            \"description\": \"Das Vitalpina Hotel Valserhof**** liegt in Vals/M&uuml;hlbach im Pustertal und hat sich auf das Aktivsein in alpiner Landschaft, Wandern, gesunde, regionaltypische Ern&auml;hrung und Wohlf&uuml;hlanwendungen aus heimischen und traditionellen Naturprodukten spezialisiert.\\r\\n\\r\\nZwischen Alpenhauptkamm und Dolomiten gelegen spielen die Berge bei uns die absolute Hauptrolle. Die Valserhof-Gourmet-Pension verw&ouml;hnt Sie mit S&uuml;dtiroler Schmankerln und Valserhofs Vitalquelle mit Massagen, Beauty- und K&ouml;rperbehandlungen.\\r\\n\\r\\n\\r\\n\\r\\nH&ouml;hepunkte im Wohlf&uuml;hlbereich\\r\\n\\r\\n&nbsp;\\r\\n\\r\\n\\r\\n\\tGro&szlig;z&uuml;giger Eingangsbereich mit Lobby und Rezeption\\r\\n\\tGem&uuml;tliche Bibliothek mit diversen B&uuml;chern und Tageszeitungen\\r\\n\\tModerne Hotelbar mit freischwebendem Kamin\\r\\n\\tSechs verschieden Stuben im Restaurant\\r\\n\\tDer gr&ouml;&szlig;te gek&uuml;hlte Weinkubus S&uuml;dtirols mit 2 Klimazonen und einem Fassungsverm&ouml;gen von ca. 8.000 Flaschen\\r\\n\\tDegustationsraum f&uuml;r noch mehr Genuss und Weinerlebnis direkt im Weinkubus integriert mit offenem Kamin.\\r\\n\\tLichtdurchflutete Lounge zum Chillen, Relaxen &amp; Genie&szlig;en.\\r\\n\\r\\n\\r\\n&nbsp;\\r\\n\\r\\nH&ouml;hepunkte des Aktivprogramms und der Entspannung\\r\\n\\r\\n&nbsp;\\r\\n\\r\\n\\r\\n\\tT&auml;glich gef&uuml;hrte Wanderung von Mai bis November\\r\\n\\tAlmcard Plus der Ski- &amp; Almenregion Gitschberg Jochtal (von Mai bis November)\\r\\n\\t\\r\\n\\t\\tKostenlose Benutzung aller regionale &ouml;ffentlichen Verkehrsmittel\\r\\n\\t\\tKostenlose Benutzung 9 verschiedener Bergbahnen in S&uuml;dtirol\\r\\n\\t\\tVorteile in vielen Gesch&auml;ften und Freizeiteinrichtungen\\r\\n\\t\\tKostenloser Eintritt in &uuml;ber 90 Museen und Sammlungen\\r\\n\\t\\r\\n\\t\\r\\n\\tIn 80m erreichen Sie die Skipiste des Skigebiets Gitschberg-Jochtal.\\r\\n\\tHallenbad (30&deg;C)\\r\\n\\tAu&szlig;enpool (30&deg;C)\\r\\n\\t4 verschiedene Saunen\\r\\n\\t\\r\\n\\t\\tDampfbad\\r\\n\\t\\tBiosauna\\r\\n\\t\\tFinnische Sauna\\r\\n\\t\\tAufguss- Sauna\\r\\n\\t\\r\\n\\t\\r\\n\\tTauchbecken im Saunagarten\\r\\n\\tVerschiedene Ruher&auml;ume mit Wasserbetten und Schwebeliegen.\\r\\n\\tGro&szlig;e Dachterasse mit Sonnenliegen\\r\\n\\r\\n\\r\\n&nbsp;\\r\\n\\r\\nGesunder Genuss im Valserhof\\r\\n\\r\\n\\r\\n\\tFr&uuml;hst&uuml;cksbuffet mit Produkten aus S&uuml;dtirol wie frisches Brot, verscheidene Teesorten und hausgemachten Marmeladen.\\r\\n\\tNachmittagsbuffet von 15.00 bis 17.00 Uhr mit hausgemachten Kuchen, Joghurt und Wurstspezialit&auml;ten.\\r\\n\\tW&ouml;chentlich Themenabende\\r\\n\\tW&ouml;chentlich Dessertbuffet.\\r\\n\\t2x pro Woche exclusive Weinprobe mit unserem Sommelier Daniel (gegen Geb&uuml;hr)\",\n            \"openinghoursnotes\": \"Ganzj&auml;hrig ge&ouml;ffnet, au&szlig;er von 09/04 - 25/05/2012.\",\n            \"member_of\": \"\",\n            \"keywords\": \"\",\n            \"url\": \"vitalpina-hotel-valserhof-vals\",\n            \"url_origin\": \"https://www.bookingsuedtirol.com/index.php?action=view&id=10119\"\n        },\n        {\n            \"id\": 833,\n            \"account_id\": 1,\n            \"origin\": \"hgv\",\n            \"address_id\": 5350,\n            \"contact_id\": 843,\n            \"logo_id\": null,\n            \"picture_id\": 53646,\n            \"status\": 1,\n            \"is_claimed\": 0,\n            \"seo_index\": 1,\n            \"in_revision\": 0,\n            \"class\": 1,\n            \"rating\": 0,\n            \"rating_count\": 0,\n            \"corporate_color\": \"\",\n            \"pricelevel\": 0,\n            \"established\": 0,\n            \"closedate\": null,\n            \"show_address\": 1,\n            \"aroundtheclock\": 0,\n            \"bookable_hgv\": 1,\n            \"cippy_auto_connect\": 1,\n            \"reportmail_statistics\": 0,\n            \"internal_notes\": \"\",\n            \"created_by\": 3,\n            \"updated_by\": 3,\n            \"created_at\": \"2017-03-23T15:50:12+00:00\",\n            \"updated_at\": \"2019-09-03T02:33:13+00:00\",\n            \"place_id\": 833,\n            \"langavl\": 1,\n            \"name\": \"Forestis Dolomites\",\n            \"teaser\": \"Romantik Hotel Rosalpina, im wunderschönen Ski- und Wandergebiet Plose im Herzen der Dolomiten. Südtirol-Urlaub voller Ruhe, Erholung und Romantik in Ihrer Unterkunft in Palmschoß.\",\n            \"description\": \"Wer ein Hotel bei Brixen sucht, das in der freien Natur liegt, und trotzdem nicht auf alle Annehmlichkeiten für einen erholsamen Urlaub verzichten möchte, ist in den Suiten des Hotel Rosalpina in Palmschoß bestens aufgehoben. Hier von unserer Panoramaterrasse am Südhang der Plose aus hat man einen herrlichen Blick über die phantastische Bergkulisse der Dolomiten. Die Suiten im Urlaubsresort Rosalpina begeistern durch klare Linienführung, warme Holzausstattung und viel Raum zum Wohlfühlen! In der Stille der Natur des Hotels Rosalpina auf der Plose in den Dolomiten genießen aktive Gäste und Faulenzer himmlische Tage in luftigen Höhen. Urlaub ganz oben, im Zeichen von Erholung und Romantik im Schoß der Natur.\",\n            \"openinghoursnotes\": \"Mitte Dezember bis Anfang April\\n\\tMitte Juni bis Mitte Oktober\",\n            \"member_of\": \"\",\n            \"keywords\": \"\",\n            \"url\": \"forestis-dolomites-brixen\",\n            \"url_origin\": \"https://www.bookingsuedtirol.com/index.php?action=view&id=10199\"\n        },\n        {\n            \"id\": 834,\n            \"account_id\": 1,\n            \"origin\": \"hgv\",\n            \"address_id\": 5351,\n            \"contact_id\": 844,\n            \"logo_id\": 51115,\n            \"picture_id\": 51116,\n            \"status\": 1,\n            \"is_claimed\": 0,\n            \"seo_index\": 1,\n            \"in_revision\": 0,\n            \"class\": 1,\n            \"rating\": 0,\n            \"rating_count\": 0,\n            \"corporate_color\": \"\",\n            \"pricelevel\": 0,\n            \"established\": 0,\n            \"closedate\": null,\n            \"show_address\": 1,\n            \"aroundtheclock\": 0,\n            \"bookable_hgv\": 1,\n            \"cippy_auto_connect\": 1,\n            \"reportmail_statistics\": 0,\n            \"internal_notes\": \"\",\n            \"created_by\": 3,\n            \"updated_by\": 3,\n            \"created_at\": \"2017-03-23T15:50:14+00:00\",\n            \"updated_at\": \"2019-09-03T02:31:32+00:00\",\n            \"place_id\": 834,\n            \"langavl\": 1,\n            \"name\": \"Aktiv & Vitalhotel Taubers Unterwirt\",\n            \"teaser\": \"Wanderer, Mountainbiker und  Wellnessliebhaber sind im Aktiv- und Vitalpina Hotel Taubers Unterwirt**** in der Nähe von Brixen genau richtig.\",\n            \"description\": \"Das Vitalpina Hotel Taubers Unterwirt**** liegt in Feldthurns im Eisacktaler Mittelgebirge und hat sich auf das  Aktivsein in alpiner Landschaft, Wandern, gesunde, regionaltypische Ernährung und Wohlfühlanwendungen aus heimischen und traditionellen Naturprodukten spezialisiert.\\r\\n\\r\\nIm Vital- und Aktivhotel Taubers Unterwirt erwarten Sie: Wohlfühlzimmer in Eisacktaler Kastanienholz, eine 1.000 m² große Castanea-Wellnesslandschaft mit über 70 Wellnessanwendungen und ein großes Aktivangebot – 6 geführte Wanderungen und 5 geführte Mountainbike-Touren pro Woche, Schneeschuhwanderungen und Skiausflüge, auf Wunsch Heliskiing. \\r\\n\\r\\nHöhepunkte im Wohlfühlbereich\\r\\n- Hauseigene Kastanien-Kosmetiklinie „Castanea“ und über 60 Anwendungen\\r\\n- Entspannungsprogramme und Fitnees-Couching mit dem Vitaltrainner Markus \\r\\n- Kulinarische Vielfallt, Spezialitätenwochen oder Bergfrühstück mit Blick auf die Dolomiten im Hochsommer\\r\\nHöhepunkte des Aktivprogramms\\r\\n- Schneeschuh- und Ski-Safari; Tourenski & Rodeln \\r\\n- Wandern: Kultur-, Genuss- und Klettersteig-Touren\\r\\n- MTB-Training; Rennrad-Woche; Foto-, Mal- und Schnitzkurse\",\n            \"openinghoursnotes\": \"J&auml;nner bis April\\n\\tMai bis Mitte November\",\n            \"member_of\": \"\",\n            \"keywords\": \"\",\n            \"url\": \"aktiv-vitalhotel-taubers-unterwirt-feldthurns\",\n            \"url_origin\": \"https://www.bookingsuedtirol.com/index.php?action=view&id=10078\"\n        },\n        {\n            \"id\": 835,\n            \"account_id\": 1,\n            \"origin\": \"hgv\",\n            \"address_id\": 5352,\n            \"contact_id\": 845,\n            \"logo_id\": 50718,\n            \"picture_id\": 50719,\n            \"status\": 1,\n            \"is_claimed\": 0,\n            \"seo_index\": 1,\n            \"in_revision\": 0,\n            \"class\": 1,\n            \"rating\": 0,\n            \"rating_count\": 0,\n            \"corporate_color\": \"\",\n            \"pricelevel\": 0,\n            \"established\": 0,\n            \"closedate\": null,\n            \"show_address\": 1,\n            \"aroundtheclock\": 0,\n            \"bookable_hgv\": 1,\n            \"cippy_auto_connect\": 1,\n            \"reportmail_statistics\": 0,\n            \"internal_notes\": \"\",\n            \"created_by\": 3,\n            \"updated_by\": 3,\n            \"created_at\": \"2017-03-23T15:50:15+00:00\",\n            \"updated_at\": \"2019-09-03T02:31:09+00:00\",\n            \"place_id\": 835,\n            \"langavl\": 1,\n            \"name\": \"Vitalpina Hotel Dosses\",\n            \"teaser\": \"Das Vitalpina Hotel Dosses**** liegt in St. Christina im Gr&ouml;dnertal und hat sich auf das Aktivsein in alpiner Landschaft, Wandern, gesunde, regionaltypische Ern&auml;hrung und Wohlf&uuml;hlanwendungen spezialisiert\",\n            \"description\": \"Das Vitalpina Hotel Dosses**** liegt in St. Christina im Gr&ouml;dnertal und hat sich auf das Aktivsein in alpiner Landschaft, Wandern, gesunde, regionaltypische Ern&auml;hrung und Wohlf&uuml;hlanwendungen aus heimischen und traditionellen Naturprodukten spezialisiert.\\r\\n\\r\\nNaturerlebnis in den Dolomiten und Urlaubsgenuss in unserem bekannten Traditionshaus. Nach der Bewegung in der frischen Luft entspannen Sie in unseren Gartenanlagen, im beheizten Freibad und in der Wellnessoase und genie&szlig;en Sie das Dosses Kulinarium, eine Freude f&uuml;r Gaumen und Gesundheit.\\r\\n\\r\\nH&ouml;hepunkte im Wohlf&uuml;hlbereich\\r\\n- Moonlight-Saunalandschaft, Whirlpool Aurora\\r\\n-&nbsp;Beauty Lounge Armonia, beheiztes Freibad\\r\\n- Fitnesspavillon mit Turn-, Cardio- und Ger&auml;tebereich\\r\\n\\r\\nH&ouml;hepunkte des Aktivprogramms\\r\\n\\r\\n\\r\\n\\t&nbsp;T&auml;glich tolle Wandererlebnisse mit unseren Wanderf&uuml;hrern\\r\\n\\t&nbsp;T&auml;glich 2 bis 3 betreute Trail-Touren mit den MTB-Guides der Bikeschule St. Ulrich\\r\\n\\t&nbsp;Fitness Programm, Nordic Walking\\r\\n\\t&nbsp;Winter: t&auml;gl. Skiguiding, 2 Schneeschuhwanderungen/Woche\",\n            \"openinghoursnotes\": \"Dezember bis April\\n\\tMitte Juni bis Anfang Oktober\",\n            \"member_of\": \"\",\n            \"keywords\": \"\",\n            \"url\": \"vitalpina-hotel-dosses-st-christina-in-groeden\",\n            \"url_origin\": \"https://www.bookingsuedtirol.com/index.php?action=view&id=10007\"\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"total\": 5076,\n            \"count\": 50,\n            \"per_page\": 50,\n            \"current_page\": 1,\n            \"total_pages\": 102,\n            \"links\": {\n                \"next\": \"http://api-sandbox.suedtirol.live/public/accommodations?page=2\"\n            }\n        }\n    }\n}"}],"_postman_id":"ac716762-f215-4f1c-b6bd-a406f8c97751"},{"name":"/accommodations/:id","id":"d3a13ff4-044f-42b7-9ce7-6fd8fb716f92","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"APIKEY {{api_key}}"},{"key":"Accept","value":"application/x.sl.v1+json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"{{language}}"}],"url":"{{url}}/public/accommodations/:id","description":"<p>Get a single accommodation</p>\n<h2 id=\"request\">Request</h2>\n<p>Possible parameters:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>include</td>\n<td>Use <em>translations</em> to include all translations at once (<code>premium only</code>).</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response\">Response</h2>\n<p>The response will be a specific accommodation when the given ID matches and refers to an accommodation. \nThe structure of the response is the same as the one described in the call GET /accommodations.</p>\n","urlObject":{"path":["public","accommodations",":id"],"host":["{{url}}"],"query":[{"disabled":true,"key":"include","value":"translations"}],"variable":[{"type":"string","value":"","key":"id"}]}},"response":[{"id":"229dad46-7f16-4925-936b-d4c5d34ab100","name":"/accommodations/:id","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"APIKEY {{api_key}}"},{"key":"Accept","value":"application/x.sl.v1+json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"{{language}}"}],"url":{"raw":"{{url}}/public/accommodations/:id","host":["{{url}}"],"path":["public","accommodations",":id"],"variable":[{"key":"id","value":"664","type":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Mon, 02 Dec 2019 12:03:11 GMT"},{"key":"ETag","value":"W/\"6733c03b4bbeed008f95c2aab6903a3446e21ecc\""},{"key":"Server","value":"nginx/1.11.9"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Length","value":"767"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 664,\n        \"account_id\": 1089,\n        \"origin\": \"hgv\",\n        \"address_id\": 5181,\n        \"contact_id\": 674,\n        \"logo_id\": 357,\n        \"picture_id\": 83710,\n        \"status\": 1,\n        \"is_claimed\": 1,\n        \"seo_index\": 1,\n        \"in_revision\": 0,\n        \"class\": 1,\n        \"rating\": 0,\n        \"rating_count\": 0,\n        \"corporate_color\": \"\",\n        \"pricelevel\": 0,\n        \"established\": 0,\n        \"closedate\": null,\n        \"show_address\": 1,\n        \"aroundtheclock\": 0,\n        \"bookable_hgv\": 1,\n        \"cippy_auto_connect\": 1,\n        \"reportmail_statistics\": 0,\n        \"internal_notes\": \"06.03.19 LIS: UaB (Urlaub auf dem Bauernhof)\\nsentres deaktiviert.\",\n        \"created_by\": 3,\n        \"updated_by\": 4207,\n        \"created_at\": \"2017-03-23T15:46:20+00:00\",\n        \"updated_at\": \"2019-03-12T14:23:43+00:00\",\n        \"place_id\": 664,\n        \"langavl\": 1,\n        \"name\": \"Feldbauer\",\n        \"teaser\": \"In Holzbauweise 2010 neu erbauter Bauernhof inmitten von Obstwiesen, ruhig und idyllisch mit herrlichem Panorama.\",\n        \"description\": \"Urlaub auf dem Bauernhof mit drei Ferienwohnungen, ausgestattet mit Wohnk&uuml;che und Terrasse, zwei getrennten Schlafzimmern und&nbsp;2 FeWo verf&uuml;gen auch &uuml;ber&nbsp;2 B&auml;der.\\r\\n\\r\\nDie Panoramalage mit Liegewiese und Kinderspielplatz sorgt f&uuml;r Erholung und Entspannung vom ersten Moment an.\",\n        \"openinghoursnotes\": \"\",\n        \"member_of\": \"\",\n        \"keywords\": \"\",\n        \"url\": \"feldbauer-tisens\",\n        \"url_origin\": \"https://www.bookingsuedtirol.com/index.php?action=view&id=12229\"\n    }\n}"}],"_postman_id":"d3a13ff4-044f-42b7-9ce7-6fd8fb716f92"},{"name":"/accommodations/types","id":"8a3cd57b-57ef-44ec-983b-ff172dffc904","request":{"method":"GET","header":[{"key":"Authorization","value":"APIKEY {{api_key}}"},{"key":"Accept","value":"application/x.sl.v1+json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"{{language}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{url}}/public/accommodations/types","description":"<p>Get all available accommodation types.</p>\n<h2 id=\"request\">Request</h2>\n<p>Possible parameters:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>include</td>\n<td>Use <em>translations</em> to include all translations at once (<code>premium only</code>)</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response\">Response</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>The accommodation type ID</td>\n<td>int</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Name of the accommodation type</td>\n<td>string</td>\n</tr>\n<tr>\n<td>parent_id</td>\n<td>Indicates type ID of parent type (null, if no further levels above)</td>\n<td>int</td>\n</tr>\n<tr>\n<td>translations</td>\n<td>Name of the accommodation type in each language</td>\n<td>Object</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["public","accommodations","types"],"host":["{{url}}"],"query":[{"disabled":true,"key":"include","value":"translations"}],"variable":[]}},"response":[],"_postman_id":"8a3cd57b-57ef-44ec-983b-ff172dffc904"}],"id":"8eb8b66b-e85d-4189-b7bd-3623456d3df0","description":"<p>Get information on accommodation POIs such as hotels, appartments, camping grounds etc. To understand which accommodation types are available start with /accommodations/types.</p>\n","event":[{"listen":"prerequest","script":{"id":"9cf828ab-bd0e-4c9c-9048-126274f24eb7","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"0137e5be-2ecd-4243-a058-2b63ecc9dc57","type":"text/javascript","exec":[""]}}],"_postman_id":"8eb8b66b-e85d-4189-b7bd-3623456d3df0"},{"name":"Stores","item":[{"name":"/stores","id":"2bf371fa-8bd7-45f1-b8a8-8d6428706c5d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"APIKEY {{api_key}}"},{"key":"Accept","value":"application/x.sl.v1+json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"{{language}}"}],"url":"{{url}}/public/stores","description":"<p>Get all available stores.</p>\n<h2 id=\"request\">Request</h2>\n<p>Possible parameters:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>include</td>\n<td>Use <em>details</em> to include all details of each store already in this call (alternatively use /stores/:id). Use <em>translations</em> to include all translations at once (<code>premium only</code>)</td>\n</tr>\n<tr>\n<td>filter</td>\n<td>Please refer to the table below</td>\n</tr>\n</tbody>\n</table>\n</div><p>List of possible filters:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Filter</th>\n<th>Input</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>filter[county]</td>\n<td>County ID (Please refer to the Geography API)</td>\n<td>Returns the stores located in the specified county</td>\n</tr>\n<tr>\n<td>filter[region]</td>\n<td>Region ID (Please refer to the Geography API)</td>\n<td>Returns the stores located in the specified region</td>\n</tr>\n<tr>\n<td>filter[city]</td>\n<td>City ID   (Please refer to the Geography API)</td>\n<td>Returns the stores located in the specified city</td>\n</tr>\n<tr>\n<td>filter[sectortype]</td>\n<td>Type ID   (Please refer to the GET /stores/types call)</td>\n<td>Returns the stores matching the specified type, e.g. grocery store, hospital etc.</td>\n</tr>\n<tr>\n<td>filter[lastmodified]</td>\n<td>Timestamp with timezone offset (Format: 2019-12-12T23:59:59%2B02:00)</td>\n<td>Returns the stores were modified since the given date</td>\n</tr>\n<tr>\n<td>filter[q]</td>\n<td>Search string</td>\n<td>Returns the stores containing the given search string, e.g. matching the name or description</td>\n</tr>\n</tbody>\n</table>\n</div><p>Examples</p>\n<ul>\n<li>?include=translations,details</li>\n<li>?filter[region]=1003,1010</li>\n<li>?filter[city]=1000&amp;filter[county]=1</li>\n<li>?filter[sectortype]=10006</li>\n</ul>\n<p>To understand which region, city or county IDs you can use, please refer to one of the <em>Geopgraphy</em> calls.</p>\n<h2 id=\"response\">Response</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>The store ID</td>\n<td>int</td>\n</tr>\n<tr>\n<td>updated_at</td>\n<td>Time of last modification</td>\n<td>string</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["public","stores"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"d48a10b8-da47-47e3-8078-56573fb85dfc","name":"/stores","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"APIKEY {{api_key}}"},{"key":"Accept","value":"application/x.sl.v1+json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"{{language}}"}],"url":"{{url}}/public/stores"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Mon, 02 Dec 2019 12:51:42 GMT"},{"key":"ETag","value":"W/\"15c7aa3a00013debbefe0020df02d59165cdad3d\""},{"key":"Server","value":"nginx/1.11.9"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Length","value":"687"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 6265,\n            \"updated_at\": \"2019-08-21T11:28:55+00:00\"\n        },\n        {\n            \"id\": 6269,\n            \"updated_at\": \"2019-08-29T10:26:42+00:00\"\n        },\n        {\n            \"id\": 6332,\n            \"updated_at\": \"2019-04-24T08:57:10+00:00\"\n        },\n        {\n            \"id\": 6336,\n            \"updated_at\": \"2019-07-05T09:50:33+00:00\"\n        },\n        {\n            \"id\": 8298,\n            \"updated_at\": \"2019-07-29T09:55:08+00:00\"\n        },\n        {\n            \"id\": 11089,\n            \"updated_at\": \"2019-08-19T08:49:33+00:00\"\n        },\n        {\n            \"id\": 11104,\n            \"updated_at\": \"2019-05-08T07:34:15+00:00\"\n        },\n        {\n            \"id\": 11105,\n            \"updated_at\": \"2019-05-02T10:59:12+00:00\"\n        },\n        {\n            \"id\": 11112,\n            \"updated_at\": \"2019-05-02T11:28:19+00:00\"\n        },\n        {\n            \"id\": 11143,\n            \"updated_at\": \"2019-07-05T10:07:27+00:00\"\n        },\n        {\n            \"id\": 6308,\n            \"updated_at\": \"2019-05-02T12:28:01+00:00\"\n        },\n        {\n            \"id\": 14769,\n            \"updated_at\": \"2019-04-09T15:02:02+00:00\"\n        },\n        {\n            \"id\": 23478,\n            \"updated_at\": \"2019-07-05T10:27:36+00:00\"\n        },\n        {\n            \"id\": 23506,\n            \"updated_at\": \"2019-09-02T11:01:35+00:00\"\n        },\n        {\n            \"id\": 23565,\n            \"updated_at\": \"2019-09-02T11:07:02+00:00\"\n        },\n        {\n            \"id\": 23667,\n            \"updated_at\": \"2019-09-02T11:13:10+00:00\"\n        },\n        {\n            \"id\": 23771,\n            \"updated_at\": \"2019-07-05T08:38:45+00:00\"\n        },\n        {\n            \"id\": 23776,\n            \"updated_at\": \"2019-07-29T09:20:57+00:00\"\n        },\n        {\n            \"id\": 23800,\n            \"updated_at\": \"2019-09-02T12:22:39+00:00\"\n        },\n        {\n            \"id\": 23805,\n            \"updated_at\": \"2019-09-02T12:27:32+00:00\"\n        },\n        {\n            \"id\": 23858,\n            \"updated_at\": \"2019-09-02T12:32:35+00:00\"\n        },\n        {\n            \"id\": 23874,\n            \"updated_at\": \"2019-09-02T12:36:02+00:00\"\n        },\n        {\n            \"id\": 24308,\n            \"updated_at\": \"2019-07-05T08:47:29+00:00\"\n        },\n        {\n            \"id\": 25233,\n            \"updated_at\": \"2019-09-02T12:58:13+00:00\"\n        },\n        {\n            \"id\": 25283,\n            \"updated_at\": \"2019-09-02T13:08:11+00:00\"\n        },\n        {\n            \"id\": 36315,\n            \"updated_at\": \"2019-08-20T11:03:18+00:00\"\n        },\n        {\n            \"id\": 36316,\n            \"updated_at\": \"2019-07-05T07:56:49+00:00\"\n        },\n        {\n            \"id\": 36318,\n            \"updated_at\": \"2019-07-05T07:57:22+00:00\"\n        },\n        {\n            \"id\": 36319,\n            \"updated_at\": \"2019-07-05T07:57:23+00:00\"\n        },\n        {\n            \"id\": 36321,\n            \"updated_at\": \"2019-07-05T07:57:25+00:00\"\n        },\n        {\n            \"id\": 36323,\n            \"updated_at\": \"2019-08-21T08:03:14+00:00\"\n        },\n        {\n            \"id\": 36324,\n            \"updated_at\": \"2019-07-05T07:57:27+00:00\"\n        },\n        {\n            \"id\": 36345,\n            \"updated_at\": \"2019-07-05T10:22:39+00:00\"\n        },\n        {\n            \"id\": 36346,\n            \"updated_at\": \"2019-08-22T09:51:29+00:00\"\n        },\n        {\n            \"id\": 36353,\n            \"updated_at\": \"2019-07-05T07:57:44+00:00\"\n        },\n        {\n            \"id\": 36354,\n            \"updated_at\": \"2019-07-05T07:57:28+00:00\"\n        },\n        {\n            \"id\": 36355,\n            \"updated_at\": \"2019-07-05T07:57:29+00:00\"\n        },\n        {\n            \"id\": 36356,\n            \"updated_at\": \"2019-07-05T07:57:31+00:00\"\n        },\n        {\n            \"id\": 36357,\n            \"updated_at\": \"2019-08-14T13:02:34+00:00\"\n        },\n        {\n            \"id\": 36358,\n            \"updated_at\": \"2019-07-05T07:57:32+00:00\"\n        },\n        {\n            \"id\": 36359,\n            \"updated_at\": \"2019-07-05T07:57:33+00:00\"\n        },\n        {\n            \"id\": 36360,\n            \"updated_at\": \"2019-07-05T07:57:34+00:00\"\n        },\n        {\n            \"id\": 36361,\n            \"updated_at\": \"2019-07-05T07:57:35+00:00\"\n        },\n        {\n            \"id\": 36362,\n            \"updated_at\": \"2019-07-05T07:57:36+00:00\"\n        },\n        {\n            \"id\": 36363,\n            \"updated_at\": \"2019-07-05T07:57:37+00:00\"\n        },\n        {\n            \"id\": 36364,\n            \"updated_at\": \"2019-06-17T06:57:24+00:00\"\n        },\n        {\n            \"id\": 36365,\n            \"updated_at\": \"2019-07-30T07:43:42+00:00\"\n        },\n        {\n            \"id\": 36366,\n            \"updated_at\": \"2019-08-22T10:04:51+00:00\"\n        },\n        {\n            \"id\": 36367,\n            \"updated_at\": \"2019-07-05T07:57:38+00:00\"\n        },\n        {\n            \"id\": 36368,\n            \"updated_at\": \"2019-07-05T07:57:40+00:00\"\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"total\": 4908,\n            \"count\": 50,\n            \"per_page\": 50,\n            \"current_page\": 1,\n            \"total_pages\": 99,\n            \"links\": {\n                \"next\": \"http://api-sandbox.suedtirol.live/public/stores?page=2\"\n            }\n        }\n    }\n}"}],"_postman_id":"2bf371fa-8bd7-45f1-b8a8-8d6428706c5d"},{"name":"/stores/:id","id":"e10c3b29-5a36-4141-bb83-7174fea25633","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"APIKEY {{api_key}}"},{"key":"Accept","value":"application/x.sl.v1+json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"{{language}}"}],"url":"{{url}}/public/stores/:id","description":"<p>Get a specific store.</p>\n<h2 id=\"request\">Request</h2>\n<p>Possible parameters:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>include</td>\n<td>Use <em>translations</em> to include all translations at once (<code>premium only</code>).</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response\">Response</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Unique ID of the store</td>\n<td>int</td>\n</tr>\n<tr>\n<td>status</td>\n<td>Indicates whether the store is enabled or disabled</td>\n<td>int</td>\n</tr>\n<tr>\n<td>corporate_color</td>\n<td>Hexcode color</td>\n<td>string</td>\n</tr>\n<tr>\n<td>pricelevel</td>\n<td>Pricelevel of the store</td>\n<td>int</td>\n</tr>\n<tr>\n<td>established</td>\n<td>Year of establishment</td>\n<td>int</td>\n</tr>\n<tr>\n<td>closedate</td>\n<td>Close date of the store</td>\n<td>int</td>\n</tr>\n<tr>\n<td>show_address</td>\n<td>Indicates whether the address will be shown or not</td>\n<td>boolean</td>\n</tr>\n<tr>\n<td>created_at</td>\n<td><code>(premium only)</code> Creation time of the store in ISO 8601 format</td>\n<td>string</td>\n</tr>\n<tr>\n<td>updated_at</td>\n<td>Update time of the store in ISO 8601 format</td>\n<td>string</td>\n</tr>\n<tr>\n<td>name</td>\n<td>The Name of the Store</td>\n<td>string</td>\n</tr>\n<tr>\n<td>teaser</td>\n<td>The Teaser of the store</td>\n<td>string</td>\n</tr>\n<tr>\n<td>description</td>\n<td>The description of the store</td>\n<td>string</td>\n</tr>\n<tr>\n<td>openinghoursnotes</td>\n<td>A text note on the opening hours of the store</td>\n<td>string</td>\n</tr>\n<tr>\n<td>member_of</td>\n<td>Name of the association that the store is a member of</td>\n<td>string</td>\n</tr>\n<tr>\n<td>address</td>\n<td>The address of the store</td>\n<td>Address Object</td>\n</tr>\n<tr>\n<td>contact</td>\n<td>The contact information of the store</td>\n<td>Contact Object</td>\n</tr>\n<tr>\n<td>logo</td>\n<td>The logo of the store</td>\n<td>Media Object</td>\n</tr>\n<tr>\n<td>picture</td>\n<td>The main picture of the store</td>\n<td>Media Object</td>\n</tr>\n<tr>\n<td>picture</td>\n<td>The main picture of the store during winter time. The winter picture will be set during the winter time between November 1st and March 31st</td>\n<td>Media Object</td>\n</tr>\n<tr>\n<td>media</td>\n<td><code>(premium only)</code> A collection of more images or videos of the store</td>\n<td></td>\n</tr>\n<tr>\n<td>openinghours</td>\n<td>A collection of openinghours where each weekday is represented as an object</td>\n<td>Openinghours Object</td>\n</tr>\n<tr>\n<td>pack_subscriptions</td>\n<td>A collection of the pack subscriptions</td>\n<td>Pack Subscriptions Object</td>\n</tr>\n<tr>\n<td>properties</td>\n<td><code>(premium only)</code> Properties of the store</td>\n<td>Property Object</td>\n</tr>\n<tr>\n<td>types</td>\n<td>The types of the store</td>\n<td>Type Object</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"address-object\">Address Object</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>city_id</td>\n<td>The city ID</td>\n<td>id</td>\n</tr>\n<tr>\n<td>latitude</td>\n<td>Lat coordinate</td>\n<td>decimal</td>\n</tr>\n<tr>\n<td>longitude</td>\n<td>Lng coordinate</td>\n<td>decimal</td>\n</tr>\n<tr>\n<td>city_zip</td>\n<td>City postal code</td>\n<td>string</td>\n</tr>\n<tr>\n<td>street_number</td>\n<td>Street number</td>\n<td>string</td>\n</tr>\n<tr>\n<td>street_name</td>\n<td>Street name</td>\n<td>string</td>\n</tr>\n<tr>\n<td>city_name</td>\n<td>Name of the city</td>\n<td>string</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"contact-object\">Contact Object</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>phone</td>\n<td>Public phone number</td>\n<td>string</td>\n</tr>\n<tr>\n<td>email</td>\n<td>Public Email</td>\n<td>string</td>\n</tr>\n<tr>\n<td>website</td>\n<td>Public website address</td>\n<td>string</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"media-object\">Media Object</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>file</td>\n<td>The base URL of the image</td>\n<td>string</td>\n</tr>\n<tr>\n<td>type</td>\n<td>Type of the media, either <em>image</em> or <em>video</em></td>\n<td>string</td>\n</tr>\n<tr>\n<td>copyright</td>\n<td>The copyright information you have to display if it's given.</td>\n<td>string</td>\n</tr>\n<tr>\n<td>provider</td>\n<td>The media provider, usually <em>kbz</em> if of type <em>image</em>. Can be <em>youtube</em> if <em>video</em>.</td>\n<td>string</td>\n</tr>\n<tr>\n<td>public_id</td>\n<td>The public ID of the media object. Just makes sense for you if it is a Youtube video, as it will then hold the Youtube ID.</td>\n<td>string</td>\n</tr>\n<tr>\n<td>url_alt</td>\n<td>An object of alternative media sizes coming in small, medium and large sizes. Only populated for images.</td>\n<td>Object containing strings</td>\n</tr>\n<tr>\n<td>description</td>\n<td>The description of the media.</td>\n<td>string</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"pack-subscription-object\">Pack Subscription Object</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Pack subscription ID</td>\n<td>id</td>\n</tr>\n<tr>\n<td>pack_id</td>\n<td>Pack ID</td>\n<td>id</td>\n</tr>\n<tr>\n<td>pack_plan_id</td>\n<td>Pack plan ID</td>\n<td>id</td>\n</tr>\n<tr>\n<td>status</td>\n<td>Indicates whether pack is active or not</td>\n<td>boolean</td>\n</tr>\n<tr>\n<td>current_period_start</td>\n<td>Starting date of the current subscription in ISO 8601 format</td>\n<td>string</td>\n</tr>\n<tr>\n<td>current_period_end</td>\n<td>Ending date of the current subscription in ISO 8601 format</td>\n<td>string</td>\n</tr>\n<tr>\n<td>deactivate_at</td>\n<td>Deactivation date of the current subscription in ISO 8601 format</td>\n<td>string</td>\n</tr>\n<tr>\n<td>pack</td>\n<td>Additional information on the pack subscribed by th store</td>\n<td>Pack Object</td>\n</tr>\n<tr>\n<td>plan</td>\n<td>Additional information about the subscribed pack plan</td>\n<td>Pack Plan Object</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"pack-object\">Pack Object</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Pack id</td>\n<td>id</td>\n</tr>\n<tr>\n<td>alias</td>\n<td>Alias of the pack</td>\n<td>string</td>\n</tr>\n<tr>\n<td>plattform</td>\n<td>Indicates the platform for which the pack is active</td>\n<td>Platform Object</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"platform-object\">Platform Object</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Platform  ID</td>\n<td>id</td>\n</tr>\n<tr>\n<td>alias</td>\n<td>Alias of the platform, e.g. lvh</td>\n<td>string</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"pack-plan-object\">Pack Plan Object</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Plan ID</td>\n<td>id</td>\n</tr>\n<tr>\n<td>planname</td>\n<td>Internal name for the plan</td>\n<td>string</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Name of the subscription plan</td>\n<td>string</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"property-object\">Property Object</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>The ID of the property</td>\n<td>int</td>\n</tr>\n<tr>\n<td>name</td>\n<td>The name of the property</td>\n<td>int</td>\n</tr>\n<tr>\n<td>value</td>\n<td>The value of the property.</td>\n<td>string</td>\n</tr>\n<tr>\n<td>unit</td>\n<td>The unit of the property. One of CHECK (1</td>\n<td>0 meaning yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"type-object\">Type Object</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>The type ID.</td>\n<td>int</td>\n</tr>\n<tr>\n<td>name</td>\n<td>The name of the type</td>\n<td>string</td>\n</tr>\n</tbody>\n</table>\n</div><p>Possible outcomes:</p>\n<ul>\n<li>200</li>\n<li>401</li>\n</ul>\n","urlObject":{"path":["public","stores",":id"],"host":["{{url}}"],"query":[],"variable":[{"id":"9aa992ba-91e1-47ef-9dc7-0daa8c80dbd9","type":"string","value":"","key":"id"}]}},"response":[{"id":"9baf6620-bf00-4b1f-a746-2d4ef748bf48","name":"/stores/:id","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"APIKEY {{api_key}}"},{"key":"Accept","value":"application/x.sl.v1+json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"{{language}}"}],"url":{"raw":"{{url}}/public/stores/:id","host":["{{url}}"],"path":["public","stores",":id"],"variable":[{"key":"id","value":"6265","type":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Mon, 02 Dec 2019 14:39:26 GMT"},{"key":"ETag","value":"W/\"3762d2041dd687d583f58459f52b1d098c76c92c\""},{"key":"Server","value":"nginx/1.11.9"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Length","value":"1828"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 6265,\n        \"status\": 1,\n        \"corporate_color\": \"\",\n        \"pricelevel\": 0,\n        \"established\": 1998,\n        \"closedate\": null,\n        \"show_address\": 1,\n        \"created_at\": \"2017-08-24T10:39:38+00:00\",\n        \"updated_at\": \"2019-08-21T11:28:55+00:00\",\n        \"name\": \"Kerschbaumer Hansjörg\",\n        \"teaser\": \"Die Goldschmiede Kerschbaumer ist seit über 25 Jahren ein Familienbetrieb.\",\n        \"description\": \"Die Filiale in Terlan wurde im Jahre 1988 eröffnet, 2010 folgt eine neue Aussenstelle in Eppan. Entdecken Sie unser Angebot an <strong>Schmuck und Uhren der großen Weltmarken </strong>in unseren <strong>traditionellen Familienbetrieb. </strong><br/>Besonders wichtig ist uns<strong> höchste Qualität und Originalität</strong> bei der Auswahl unserer Produkte.<br/><strong>Nach den Wünschen unserer Kunden fertigen wir auch individuelle Kreationen aus Edelmetalle und Edelsteine.</strong><br/><strong><strong>Unsere Leistungen:</strong></strong><br/>- Neuanfertigungen jeglicher Art<br/>- Eheringe auf Maß<br/>- Umarbeitungen<br/>- Reparaturen von Schmuck und Uhren<br/>- Goldankauf<br/>- Verkauf von Schmuck und Uhren namhafter Hersteller.<br/>\",\n        \"openinghoursnotes\": \"\",\n        \"member_of\": \"\",\n        \"address\": {\n            \"data\": {\n                \"city_id\": 1015,\n                \"latitude\": \"46.52960290\",\n                \"longitude\": \"11.24810720\",\n                \"city_zip\": \"39018\",\n                \"street_number\": \"3\",\n                \"street_name\": \"Dr.-Weiser-Platz\",\n                \"city_name\": \"Terlan\",\n                \"city\": {\n                    \"data\": {\n                        \"id\": 1015,\n                        \"county_id\": 1,\n                        \"parent_id\": null,\n                        \"type\": 1,\n                        \"zip\": \"39018\",\n                        \"name\": \"Terlan\"\n                    }\n                }\n            }\n        },\n        \"contact\": {\n            \"data\": {\n                \"phone\": \"0471-660336\",\n                \"website\": \" \",\n                \"email\": \"kerschbaumer@brennercom.net\"\n            }\n        },\n        \"logo\": {\n            \"data\": {\n                \"public_id\": \"/logos/130177/20171116021312_130177.png\",\n                \"provider\": \"cdn\",\n                \"url\": \"https://sl-1.cdn.suedtirol.live/logos/130177/20171116021312_130177.png\",\n                \"url_alt\": {\n                    \"l\": \"https://sl-1.cdn.suedtirol.live/logos/130177/20171116021312_130177_l.png\",\n                    \"m\": \"https://sl-1.cdn.suedtirol.live/logos/130177/20171116021312_130177_m.png\",\n                    \"s\": \"https://sl-1.cdn.suedtirol.live/logos/130177/20171116021312_130177_s.png\"\n                },\n                \"type\": \"image\",\n                \"copyright\": \"\",\n                \"title\": \"\"\n            }\n        },\n        \"picture\": {\n            \"data\": {\n                \"public_id\": \"330462\",\n                \"provider\": \"sentres\",\n                \"url\": \"https://www.sentres.com/photos/330462/retina/goldschmied-kerschbaumer-terlan-terlan-bozen-und-umgebung-suedtirol.jpg\",\n                \"url_alt\": {\n                    \"l\": \"https://www.sentres.com/photos/330462/retina/goldschmied-kerschbaumer-terlan-terlan-bozen-und-umgebung-suedtirol.jpg\",\n                    \"m\": \"https://www.sentres.com/photos/330462/large/goldschmied-kerschbaumer-terlan-terlan-bozen-und-umgebung-suedtirol.jpg\",\n                    \"s\": \"https://www.sentres.com/photos/330462/mobile/goldschmied-kerschbaumer-terlan-terlan-bozen-und-umgebung-suedtirol.jpg\"\n                },\n                \"type\": \"image\",\n                \"copyright\": \"\",\n                \"title\": \"\"\n            }\n        },\n        \"media\": {\n            \"data\": [\n                {\n                    \"public_id\": \"330480\",\n                    \"provider\": \"sentres\",\n                    \"url\": \"https://www.sentres.com/photos/330480/retina/goldschmied-kerschbaumer-terlan-terlan-bozen-und-umgebung-suedtirol.jpg\",\n                    \"url_alt\": {\n                        \"l\": \"https://www.sentres.com/photos/330480/retina/goldschmied-kerschbaumer-terlan-terlan-bozen-und-umgebung-suedtirol.jpg\",\n                        \"m\": \"https://www.sentres.com/photos/330480/large/goldschmied-kerschbaumer-terlan-terlan-bozen-und-umgebung-suedtirol.jpg\",\n                        \"s\": \"https://www.sentres.com/photos/330480/mobile/goldschmied-kerschbaumer-terlan-terlan-bozen-und-umgebung-suedtirol.jpg\"\n                    },\n                    \"type\": \"image\",\n                    \"copyright\": \"\",\n                    \"title\": \"\"\n                },\n                {\n                    \"public_id\": \"330482\",\n                    \"provider\": \"sentres\",\n                    \"url\": \"https://www.sentres.com/photos/330482/retina/goldschmied-kerschbaumer-terlan-terlan-bozen-und-umgebung-suedtirol.jpg\",\n                    \"url_alt\": {\n                        \"l\": \"https://www.sentres.com/photos/330482/retina/goldschmied-kerschbaumer-terlan-terlan-bozen-und-umgebung-suedtirol.jpg\",\n                        \"m\": \"https://www.sentres.com/photos/330482/large/goldschmied-kerschbaumer-terlan-terlan-bozen-und-umgebung-suedtirol.jpg\",\n                        \"s\": \"https://www.sentres.com/photos/330482/mobile/goldschmied-kerschbaumer-terlan-terlan-bozen-und-umgebung-suedtirol.jpg\"\n                    },\n                    \"type\": \"image\",\n                    \"copyright\": \"\",\n                    \"title\": \"\"\n                },\n                {\n                    \"public_id\": \"330484\",\n                    \"provider\": \"sentres\",\n                    \"url\": \"https://www.sentres.com/photos/330484/retina/goldschmied-kerschbaumer-terlan-terlan-bozen-und-umgebung-suedtirol.jpg\",\n                    \"url_alt\": {\n                        \"l\": \"https://www.sentres.com/photos/330484/retina/goldschmied-kerschbaumer-terlan-terlan-bozen-und-umgebung-suedtirol.jpg\",\n                        \"m\": \"https://www.sentres.com/photos/330484/large/goldschmied-kerschbaumer-terlan-terlan-bozen-und-umgebung-suedtirol.jpg\",\n                        \"s\": \"https://www.sentres.com/photos/330484/mobile/goldschmied-kerschbaumer-terlan-terlan-bozen-und-umgebung-suedtirol.jpg\"\n                    },\n                    \"type\": \"image\",\n                    \"copyright\": \"\",\n                    \"title\": \"\"\n                },\n                {\n                    \"public_id\": \"330486\",\n                    \"provider\": \"sentres\",\n                    \"url\": \"https://www.sentres.com/photos/330486/retina/goldschmied-kerschbaumer-terlan-terlan-bozen-und-umgebung-suedtirol.jpg\",\n                    \"url_alt\": {\n                        \"l\": \"https://www.sentres.com/photos/330486/retina/goldschmied-kerschbaumer-terlan-terlan-bozen-und-umgebung-suedtirol.jpg\",\n                        \"m\": \"https://www.sentres.com/photos/330486/large/goldschmied-kerschbaumer-terlan-terlan-bozen-und-umgebung-suedtirol.jpg\",\n                        \"s\": \"https://www.sentres.com/photos/330486/mobile/goldschmied-kerschbaumer-terlan-terlan-bozen-und-umgebung-suedtirol.jpg\"\n                    },\n                    \"type\": \"image\",\n                    \"copyright\": \"\",\n                    \"title\": \"\"\n                },\n                {\n                    \"public_id\": \"330474\",\n                    \"provider\": \"sentres\",\n                    \"url\": \"https://www.sentres.com/photos/330474/retina/goldschmied-kerschbaumer-terlan-terlan-bozen-und-umgebung-suedtirol.jpg\",\n                    \"url_alt\": {\n                        \"l\": \"https://www.sentres.com/photos/330474/retina/goldschmied-kerschbaumer-terlan-terlan-bozen-und-umgebung-suedtirol.jpg\",\n                        \"m\": \"https://www.sentres.com/photos/330474/large/goldschmied-kerschbaumer-terlan-terlan-bozen-und-umgebung-suedtirol.jpg\",\n                        \"s\": \"https://www.sentres.com/photos/330474/mobile/goldschmied-kerschbaumer-terlan-terlan-bozen-und-umgebung-suedtirol.jpg\"\n                    },\n                    \"type\": \"image\",\n                    \"copyright\": \"\",\n                    \"title\": \"\"\n                },\n                {\n                    \"public_id\": \"330476\",\n                    \"provider\": \"sentres\",\n                    \"url\": \"https://www.sentres.com/photos/330476/retina/goldschmied-kerschbaumer-terlan-terlan-bozen-und-umgebung-suedtirol.jpg\",\n                    \"url_alt\": {\n                        \"l\": \"https://www.sentres.com/photos/330476/retina/goldschmied-kerschbaumer-terlan-terlan-bozen-und-umgebung-suedtirol.jpg\",\n                        \"m\": \"https://www.sentres.com/photos/330476/large/goldschmied-kerschbaumer-terlan-terlan-bozen-und-umgebung-suedtirol.jpg\",\n                        \"s\": \"https://www.sentres.com/photos/330476/mobile/goldschmied-kerschbaumer-terlan-terlan-bozen-und-umgebung-suedtirol.jpg\"\n                    },\n                    \"type\": \"image\",\n                    \"copyright\": \"\",\n                    \"title\": \"\"\n                },\n                {\n                    \"public_id\": \"330478\",\n                    \"provider\": \"sentres\",\n                    \"url\": \"https://www.sentres.com/photos/330478/retina/goldschmied-kerschbaumer-terlan-terlan-bozen-und-umgebung-suedtirol.jpg\",\n                    \"url_alt\": {\n                        \"l\": \"https://www.sentres.com/photos/330478/retina/goldschmied-kerschbaumer-terlan-terlan-bozen-und-umgebung-suedtirol.jpg\",\n                        \"m\": \"https://www.sentres.com/photos/330478/large/goldschmied-kerschbaumer-terlan-terlan-bozen-und-umgebung-suedtirol.jpg\",\n                        \"s\": \"https://www.sentres.com/photos/330478/mobile/goldschmied-kerschbaumer-terlan-terlan-bozen-und-umgebung-suedtirol.jpg\"\n                    },\n                    \"type\": \"image\",\n                    \"copyright\": \"\",\n                    \"title\": \"\"\n                },\n                {\n                    \"public_id\": \"330469\",\n                    \"provider\": \"sentres\",\n                    \"url\": \"https://www.sentres.com/photos/330469/retina/goldschmied-kerschbaumer-terlan-terlan-bozen-und-umgebung-suedtirol.jpg\",\n                    \"url_alt\": {\n                        \"l\": \"https://www.sentres.com/photos/330469/retina/goldschmied-kerschbaumer-terlan-terlan-bozen-und-umgebung-suedtirol.jpg\",\n                        \"m\": \"https://www.sentres.com/photos/330469/large/goldschmied-kerschbaumer-terlan-terlan-bozen-und-umgebung-suedtirol.jpg\",\n                        \"s\": \"https://www.sentres.com/photos/330469/mobile/goldschmied-kerschbaumer-terlan-terlan-bozen-und-umgebung-suedtirol.jpg\"\n                    },\n                    \"type\": \"image\",\n                    \"copyright\": \"\",\n                    \"title\": \"\"\n                },\n                {\n                    \"public_id\": \"330471\",\n                    \"provider\": \"sentres\",\n                    \"url\": \"https://www.sentres.com/photos/330471/retina/goldschmied-kerschbaumer-terlan-terlan-bozen-und-umgebung-suedtirol.jpg\",\n                    \"url_alt\": {\n                        \"l\": \"https://www.sentres.com/photos/330471/retina/goldschmied-kerschbaumer-terlan-terlan-bozen-und-umgebung-suedtirol.jpg\",\n                        \"m\": \"https://www.sentres.com/photos/330471/large/goldschmied-kerschbaumer-terlan-terlan-bozen-und-umgebung-suedtirol.jpg\",\n                        \"s\": \"https://www.sentres.com/photos/330471/mobile/goldschmied-kerschbaumer-terlan-terlan-bozen-und-umgebung-suedtirol.jpg\"\n                    },\n                    \"type\": \"image\",\n                    \"copyright\": \"\",\n                    \"title\": \"\"\n                },\n                {\n                    \"public_id\": \"330473\",\n                    \"provider\": \"sentres\",\n                    \"url\": \"https://www.sentres.com/photos/330473/retina/goldschmied-kerschbaumer-terlan-terlan-bozen-und-umgebung-suedtirol.jpg\",\n                    \"url_alt\": {\n                        \"l\": \"https://www.sentres.com/photos/330473/retina/goldschmied-kerschbaumer-terlan-terlan-bozen-und-umgebung-suedtirol.jpg\",\n                        \"m\": \"https://www.sentres.com/photos/330473/large/goldschmied-kerschbaumer-terlan-terlan-bozen-und-umgebung-suedtirol.jpg\",\n                        \"s\": \"https://www.sentres.com/photos/330473/mobile/goldschmied-kerschbaumer-terlan-terlan-bozen-und-umgebung-suedtirol.jpg\"\n                    },\n                    \"type\": \"image\",\n                    \"copyright\": \"\",\n                    \"title\": \"\"\n                },\n                {\n                    \"public_id\": \"330463\",\n                    \"provider\": \"sentres\",\n                    \"url\": \"https://www.sentres.com/photos/330463/retina/goldschmied-kerschbaumer-terlan-terlan-bozen-und-umgebung-suedtirol.jpg\",\n                    \"url_alt\": {\n                        \"l\": \"https://www.sentres.com/photos/330463/retina/goldschmied-kerschbaumer-terlan-terlan-bozen-und-umgebung-suedtirol.jpg\",\n                        \"m\": \"https://www.sentres.com/photos/330463/large/goldschmied-kerschbaumer-terlan-terlan-bozen-und-umgebung-suedtirol.jpg\",\n                        \"s\": \"https://www.sentres.com/photos/330463/mobile/goldschmied-kerschbaumer-terlan-terlan-bozen-und-umgebung-suedtirol.jpg\"\n                    },\n                    \"type\": \"image\",\n                    \"copyright\": \"\",\n                    \"title\": \"\"\n                },\n                {\n                    \"public_id\": \"330465\",\n                    \"provider\": \"sentres\",\n                    \"url\": \"https://www.sentres.com/photos/330465/retina/goldschmied-kerschbaumer-terlan-terlan-bozen-und-umgebung-suedtirol.jpg\",\n                    \"url_alt\": {\n                        \"l\": \"https://www.sentres.com/photos/330465/retina/goldschmied-kerschbaumer-terlan-terlan-bozen-und-umgebung-suedtirol.jpg\",\n                        \"m\": \"https://www.sentres.com/photos/330465/large/goldschmied-kerschbaumer-terlan-terlan-bozen-und-umgebung-suedtirol.jpg\",\n                        \"s\": \"https://www.sentres.com/photos/330465/mobile/goldschmied-kerschbaumer-terlan-terlan-bozen-und-umgebung-suedtirol.jpg\"\n                    },\n                    \"type\": \"image\",\n                    \"copyright\": \"\",\n                    \"title\": \"\"\n                },\n                {\n                    \"public_id\": \"330467\",\n                    \"provider\": \"sentres\",\n                    \"url\": \"https://www.sentres.com/photos/330467/retina/goldschmied-kerschbaumer-terlan-terlan-bozen-und-umgebung-suedtirol.jpg\",\n                    \"url_alt\": {\n                        \"l\": \"https://www.sentres.com/photos/330467/retina/goldschmied-kerschbaumer-terlan-terlan-bozen-und-umgebung-suedtirol.jpg\",\n                        \"m\": \"https://www.sentres.com/photos/330467/large/goldschmied-kerschbaumer-terlan-terlan-bozen-und-umgebung-suedtirol.jpg\",\n                        \"s\": \"https://www.sentres.com/photos/330467/mobile/goldschmied-kerschbaumer-terlan-terlan-bozen-und-umgebung-suedtirol.jpg\"\n                    },\n                    \"type\": \"image\",\n                    \"copyright\": \"\",\n                    \"title\": \"\"\n                }\n            ]\n        },\n        \"openinghours\": {\n            \"data\": [\n                {\n                    \"id\": 90459,\n                    \"place_id\": 6265,\n                    \"weekday\": 1,\n                    \"opentime\": \"08:30:00\",\n                    \"closetime\": \"12:00:00\"\n                },\n                {\n                    \"id\": 90460,\n                    \"place_id\": 6265,\n                    \"weekday\": 1,\n                    \"opentime\": \"15:30:00\",\n                    \"closetime\": \"19:00:00\"\n                },\n                {\n                    \"id\": 90461,\n                    \"place_id\": 6265,\n                    \"weekday\": 2,\n                    \"opentime\": \"08:30:00\",\n                    \"closetime\": \"12:00:00\"\n                },\n                {\n                    \"id\": 90462,\n                    \"place_id\": 6265,\n                    \"weekday\": 2,\n                    \"opentime\": \"15:30:00\",\n                    \"closetime\": \"19:00:00\"\n                },\n                {\n                    \"id\": 90463,\n                    \"place_id\": 6265,\n                    \"weekday\": 3,\n                    \"opentime\": \"08:30:00\",\n                    \"closetime\": \"12:00:00\"\n                },\n                {\n                    \"id\": 90464,\n                    \"place_id\": 6265,\n                    \"weekday\": 3,\n                    \"opentime\": \"15:30:00\",\n                    \"closetime\": \"19:00:00\"\n                },\n                {\n                    \"id\": 90465,\n                    \"place_id\": 6265,\n                    \"weekday\": 4,\n                    \"opentime\": \"08:30:00\",\n                    \"closetime\": \"12:00:00\"\n                },\n                {\n                    \"id\": 90466,\n                    \"place_id\": 6265,\n                    \"weekday\": 4,\n                    \"opentime\": \"15:30:00\",\n                    \"closetime\": \"19:00:00\"\n                },\n                {\n                    \"id\": 90467,\n                    \"place_id\": 6265,\n                    \"weekday\": 5,\n                    \"opentime\": \"08:30:00\",\n                    \"closetime\": \"12:00:00\"\n                },\n                {\n                    \"id\": 90468,\n                    \"place_id\": 6265,\n                    \"weekday\": 5,\n                    \"opentime\": \"15:30:00\",\n                    \"closetime\": \"19:00:00\"\n                },\n                {\n                    \"id\": 90469,\n                    \"place_id\": 6265,\n                    \"weekday\": 6,\n                    \"opentime\": \"08:30:00\",\n                    \"closetime\": \"12:00:00\"\n                }\n            ]\n        },\n        \"pack_subscriptions\": {\n            \"data\": [\n                {\n                    \"id\": 7225,\n                    \"pack_id\": 19,\n                    \"pack_plan_id\": 46,\n                    \"status\": 1,\n                    \"current_period_start\": \"2019-03-08T20:56:07+00:00\",\n                    \"current_period_end\": \"2020-03-08T20:56:07+00:00\",\n                    \"deactivate_at\": null,\n                    \"pack\": {\n                        \"data\": {\n                            \"id\": 19,\n                            \"alias\": \"place-meinhandwerker-it\",\n                            \"platform\": {\n                                \"data\": {\n                                    \"id\": 7,\n                                    \"alias\": \"lvh\"\n                                }\n                            }\n                        }\n                    },\n                    \"plan\": {\n                        \"data\": {\n                            \"id\": 46,\n                            \"planname\": \"place-lvh-standard\",\n                            \"name\": \"Jährlich\"\n                        }\n                    }\n                }\n            ]\n        },\n        \"properties\": {\n            \"data\": [\n                {\n                    \"id\": 12001,\n                    \"unit\": \"TEXT\",\n                    \"name\": \"Anzahl Mitarbeiter\",\n                    \"value\": \"4\"\n                },\n                {\n                    \"id\": 12430,\n                    \"unit\": \"CHECK\",\n                    \"name\": \"Goldschmiedearbeiten\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"id\": 12429,\n                    \"unit\": \"CHECK\",\n                    \"name\": \"Silberschmiedearbeiten\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"id\": 11942,\n                    \"unit\": \"TEXT\",\n                    \"name\": \"TaxNo\",\n                    \"value\": \"00574250213\"\n                },\n                {\n                    \"id\": 11941,\n                    \"unit\": \"TEXT\",\n                    \"name\": \"VatNo\",\n                    \"value\": \"KRSHSJ50R28L108B\"\n                }\n            ]\n        },\n        \"types\": {\n            \"data\": [\n                {\n                    \"id\": 905020217,\n                    \"name\": \"Gold- und Silberschmied\"\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"e10c3b29-5a36-4141-bb83-7174fea25633"},{"name":"/stores/types","id":"5dde84ba-da7e-435b-9433-21a66a0936df","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"APIKEY {{api_key}}"},{"key":"Accept","value":"application/x.sl.v1+json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"{{language}}"}],"url":"{{url}}/public/stores/types","description":"<p>Get all available store types.</p>\n<h2 id=\"request\">Request</h2>\n<p>Possible parameters:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>include</td>\n<td>Use <em>translations</em> to include all translations at once (<code>premium only</code>)</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response\">Response</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>The store type ID</td>\n<td>int</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Name of the store type</td>\n<td>string</td>\n</tr>\n<tr>\n<td>parent_id</td>\n<td>Indicates type ID of parent type</td>\n<td>int</td>\n</tr>\n<tr>\n<td>translations</td>\n<td>Name of the store type in each language</td>\n<td>Object</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["public","stores","types"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"206add0b-f54d-4fbb-aae0-6b4246f377c6","name":"/stores/types","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"APIKEY {{api_key}}"},{"key":"Accept","value":"application/x.sl.v1+json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"{{language}}"}],"url":"{{url}}/public/stores/types"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Mon, 02 Dec 2019 15:03:05 GMT"},{"key":"ETag","value":"W/\"d978fa99e09ec261d8a8a0d6bfdaeaa7050b0d88\""},{"key":"Server","value":"nginx/1.11.9"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Length","value":"6746"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 10006,\n            \"name\": \"Tischlerei\",\n            \"parent_id\": 47\n        },\n        {\n            \"id\": 905020188,\n            \"name\": \"Maschinenschnitzer\",\n            \"parent_id\": 47\n        },\n        {\n            \"id\": 905020187,\n            \"name\": \"Binder, Drechsler, Wagner\",\n            \"parent_id\": 47\n        },\n        {\n            \"id\": 905020221,\n            \"name\": \"Emballagen\",\n            \"parent_id\": 47\n        },\n        {\n            \"id\": 10362,\n            \"name\": \"Sägewerk - Verpackungshersteller\",\n            \"parent_id\": 47\n        },\n        {\n            \"id\": 905020191,\n            \"name\": \"Verschiedene Holzberufe\",\n            \"parent_id\": 47\n        },\n        {\n            \"id\": 905020189,\n            \"name\": \"Waldarbeiter\",\n            \"parent_id\": 47\n        },\n        {\n            \"id\": 10001,\n            \"name\": \"Elektriker\",\n            \"parent_id\": 1\n        },\n        {\n            \"id\": 10002,\n            \"name\": \"Garten- & Landschaftsbau\",\n            \"parent_id\": 1\n        },\n        {\n            \"id\": 10003,\n            \"name\": \"Installateur\",\n            \"parent_id\": 1\n        },\n        {\n            \"id\": 10004,\n            \"name\": \"Maler & Lackierer\",\n            \"parent_id\": 1\n        },\n        {\n            \"id\": 10005,\n            \"name\": \"Glaserei\",\n            \"parent_id\": 1\n        },\n        {\n            \"id\": 10007,\n            \"name\": \"Dachdecker\",\n            \"parent_id\": 1\n        },\n        {\n            \"id\": 10008,\n            \"name\": \"Schlosser und Metallbauer\",\n            \"parent_id\": 1\n        },\n        {\n            \"id\": 10009,\n            \"name\": \"Haus- und Wohnungssanierung\",\n            \"parent_id\": 1\n        },\n        {\n            \"id\": 10010,\n            \"name\": \"Tiefbauunternehmen\",\n            \"parent_id\": 1\n        },\n        {\n            \"id\": 10011,\n            \"name\": \"Gerüstbau und Gerüstverleih\",\n            \"parent_id\": 1\n        },\n        {\n            \"id\": 10012,\n            \"name\": \"Tankhandel\",\n            \"parent_id\": 1\n        },\n        {\n            \"id\": 10013,\n            \"name\": \"Dreherei\",\n            \"parent_id\": 1\n        },\n        {\n            \"id\": 10014,\n            \"name\": \"Tür- und Fensterbau\",\n            \"parent_id\": 1\n        },\n        {\n            \"id\": 10015,\n            \"name\": \"Aufzugtechniker\",\n            \"parent_id\": 1\n        },\n        {\n            \"id\": 10016,\n            \"name\": \"Bauträger und Bauträgergesellschaften\",\n            \"parent_id\": 1\n        },\n        {\n            \"id\": 10017,\n            \"name\": \"Baumeister & Maurer\",\n            \"parent_id\": 1\n        },\n        {\n            \"id\": 10018,\n            \"name\": \"Solaranlagen und Reparatur\",\n            \"parent_id\": 1\n        },\n        {\n            \"id\": 10019,\n            \"name\": \"Treppenbau\",\n            \"parent_id\": 1\n        },\n        {\n            \"id\": 10030,\n            \"name\": \"Existenzgründungsberatung\",\n            \"parent_id\": 3\n        },\n        {\n            \"id\": 10031,\n            \"name\": \"Verbraucherberatung\",\n            \"parent_id\": 3\n        },\n        {\n            \"id\": 10485,\n            \"name\": \"Astrologe\",\n            \"parent_id\": 3\n        },\n        {\n            \"id\": 10349,\n            \"name\": \"Coaching & Karriereberatung\",\n            \"parent_id\": 3\n        },\n        {\n            \"id\": 10351,\n            \"name\": \"Lebensberatung und Therapie\",\n            \"parent_id\": 3\n        },\n        {\n            \"id\": 10032,\n            \"name\": \"Kinderwagengeschäft\",\n            \"parent_id\": 4\n        },\n        {\n            \"id\": 10033,\n            \"name\": \"Babygeschäft\",\n            \"parent_id\": 4\n        },\n        {\n            \"id\": 10034,\n            \"name\": \"Surfgeschäft\",\n            \"parent_id\": 4\n        },\n        {\n            \"id\": 10035,\n            \"name\": \"Großhandel\",\n            \"parent_id\": 4\n        },\n        {\n            \"id\": 10036,\n            \"name\": \"Parkett- und Bodengeschäft\",\n            \"parent_id\": 4\n        },\n        {\n            \"id\": 10037,\n            \"name\": \"Tapetengeschäft\",\n            \"parent_id\": 4\n        },\n        {\n            \"id\": 10038,\n            \"name\": \"Jalousien und Vorhänge\",\n            \"parent_id\": 4\n        },\n        {\n            \"id\": 10039,\n            \"name\": \"Fenster- und Türhandel\",\n            \"parent_id\": 4\n        },\n        {\n            \"id\": 10040,\n            \"name\": \"Baustoffhandel\",\n            \"parent_id\": 4\n        },\n        {\n            \"id\": 10041,\n            \"name\": \"Heimwerkerbedarf\",\n            \"parent_id\": 4\n        },\n        {\n            \"id\": 10042,\n            \"name\": \"Souvenirgeschäft\",\n            \"parent_id\": 4\n        },\n        {\n            \"id\": 10043,\n            \"name\": \"Pokalgeschäft\",\n            \"parent_id\": 4\n        },\n        {\n            \"id\": 10044,\n            \"name\": \"Zeitungs- und Zeitschriftenhandel\",\n            \"parent_id\": 4\n        },\n        {\n            \"id\": 10045,\n            \"name\": \"Nahrungsergänzungsmittel-Geschäft\",\n            \"parent_id\": 4\n        },\n        {\n            \"id\": 10046,\n            \"name\": \"Aufzug und Krantechnik\",\n            \"parent_id\": 4\n        },\n        {\n            \"id\": 10047,\n            \"name\": \"Waffenhändler und Jagdbedarf\",\n            \"parent_id\": 4\n        },\n        {\n            \"id\": 10379,\n            \"name\": \"Sport- & Outdoor-Händler\",\n            \"parent_id\": 4\n        },\n        {\n            \"id\": 10380,\n            \"name\": \"Fahrradhändler\",\n            \"parent_id\": 4\n        },\n        {\n            \"id\": 10112,\n            \"name\": \"Getränkehandel & Lieferant\",\n            \"parent_id\": 4\n        },\n        {\n            \"id\": 10048,\n            \"name\": \"Elektronik-Fachhändler\",\n            \"parent_id\": 5\n        },\n        {\n            \"id\": 10049,\n            \"name\": \"Elektronik-Fachmarkt\",\n            \"parent_id\": 5\n        },\n        {\n            \"id\": 10050,\n            \"name\": \"Mobilfunk-Händler\",\n            \"parent_id\": 5\n        },\n        {\n            \"id\": 10051,\n            \"name\": \"Computer-Fachgeschäft\",\n            \"parent_id\": 5\n        },\n        {\n            \"id\": 10052,\n            \"name\": \"Haushaltsgeräte-Händler\",\n            \"parent_id\": 5\n        },\n        {\n            \"id\": 10053,\n            \"name\": \"Foto-Fachgeschäft\",\n            \"parent_id\": 5\n        },\n        {\n            \"id\": 10054,\n            \"name\": \"Handy- & Smartphonereparatur\",\n            \"parent_id\": 5\n        },\n        {\n            \"id\": 10055,\n            \"name\": \"Telekommunikation\",\n            \"parent_id\": 5\n        },\n        {\n            \"id\": 10056,\n            \"name\": \"IT-Systemhaus\",\n            \"parent_id\": 5\n        },\n        {\n            \"id\": 905020224,\n            \"name\": \"Versch. Berufe Medien, Design und IT\",\n            \"parent_id\": 5\n        },\n        {\n            \"id\": 10057,\n            \"name\": \"Steuerberater\",\n            \"parent_id\": 6\n        },\n        {\n            \"id\": 10058,\n            \"name\": \"Rechtsanwalt\",\n            \"parent_id\": 6\n        },\n        {\n            \"id\": 10059,\n            \"name\": \"Notar\",\n            \"parent_id\": 6\n        },\n        {\n            \"id\": 10060,\n            \"name\": \"Versicherungsbüro\",\n            \"parent_id\": 6\n        },\n        {\n            \"id\": 10061,\n            \"name\": \"Unternehmensberatung\",\n            \"parent_id\": 6\n        },\n        {\n            \"id\": 10062,\n            \"name\": \"Immobilienmakler\",\n            \"parent_id\": 6\n        },\n        {\n            \"id\": 10063,\n            \"name\": \"Bank\",\n            \"parent_id\": 6\n        },\n        {\n            \"id\": 10064,\n            \"name\": \"Geldautomat\",\n            \"parent_id\": 6\n        },\n        {\n            \"id\": 10065,\n            \"name\": \"IT-Beratung\",\n            \"parent_id\": 6\n        },\n        {\n            \"id\": 10066,\n            \"name\": \"Buchhaltung\",\n            \"parent_id\": 6\n        },\n        {\n            \"id\": 10067,\n            \"name\": \"Inkassounternehmen\",\n            \"parent_id\": 6\n        },\n        {\n            \"id\": 10068,\n            \"name\": \"Kreditvermittlung\",\n            \"parent_id\": 6\n        },\n        {\n            \"id\": 10069,\n            \"name\": \"Prüfstellen und Gutachter\",\n            \"parent_id\": 6\n        },\n        {\n            \"id\": 10070,\n            \"name\": \"Lohnsteuerhilfe und Lohnabrechnung\",\n            \"parent_id\": 6\n        },\n        {\n            \"id\": 10071,\n            \"name\": \"Übersetzungsdienst\",\n            \"parent_id\": 6\n        },\n        {\n            \"id\": 10072,\n            \"name\": \"Schuldenberatung\",\n            \"parent_id\": 6\n        },\n        {\n            \"id\": 10073,\n            \"name\": \"Vermögensberatung\",\n            \"parent_id\": 6\n        },\n        {\n            \"id\": 10074,\n            \"name\": \"Bausparkasse\",\n            \"parent_id\": 6\n        },\n        {\n            \"id\": 10075,\n            \"name\": \"Börsenmakler\",\n            \"parent_id\": 6\n        },\n        {\n            \"id\": 10076,\n            \"name\": \"Wirtschaftsprüfer\",\n            \"parent_id\": 6\n        },\n        {\n            \"id\": 10077,\n            \"name\": \"Gerichtsvollzieher\",\n            \"parent_id\": 6\n        },\n        {\n            \"id\": 10078,\n            \"name\": \"Foto-Studio\",\n            \"parent_id\": 7\n        },\n        {\n            \"id\": 10079,\n            \"name\": \"Copyshop\",\n            \"parent_id\": 7\n        },\n        {\n            \"id\": 10080,\n            \"name\": \"Druckerei & Mediengestaltung\",\n            \"parent_id\": 7\n        },\n        {\n            \"id\": 10081,\n            \"name\": \"3D-Druck-Studio\",\n            \"parent_id\": 7\n        },\n        {\n            \"id\": 10082,\n            \"name\": \"Video-Studio\",\n            \"parent_id\": 7\n        },\n        {\n            \"id\": 10083,\n            \"name\": \"Fotograf\",\n            \"parent_id\": 7\n        },\n        {\n            \"id\": 10084,\n            \"name\": \"Disco & Club\",\n            \"parent_id\": 8\n        },\n        {\n            \"id\": 10085,\n            \"name\": \"Theater\",\n            \"parent_id\": 8\n        },\n        {\n            \"id\": 10086,\n            \"name\": \"Oper und Ballett\",\n            \"parent_id\": 8\n        },\n        {\n            \"id\": 10087,\n            \"name\": \"Kino\",\n            \"parent_id\": 8\n        },\n        {\n            \"id\": 10088,\n            \"name\": \"Casino\",\n            \"parent_id\": 8\n        },\n        {\n            \"id\": 10090,\n            \"name\": \"Nachtclub\",\n            \"parent_id\": 8\n        },\n        {\n            \"id\": 10091,\n            \"name\": \"Kabarett & Varieté\",\n            \"parent_id\": 8\n        },\n        {\n            \"id\": 10092,\n            \"name\": \"Autokino\",\n            \"parent_id\": 8\n        },\n        {\n            \"id\": 10093,\n            \"name\": \"Spielothek\",\n            \"parent_id\": 8\n        },\n        {\n            \"id\": 10094,\n            \"name\": \"Wettbüro\",\n            \"parent_id\": 8\n        },\n        {\n            \"id\": 10095,\n            \"name\": \"Lottoannahmestelle\",\n            \"parent_id\": 8\n        },\n        {\n            \"id\": 10096,\n            \"name\": \"Konzerthalle & Event Location\",\n            \"parent_id\": 8\n        },\n        {\n            \"id\": 10097,\n            \"name\": \"Konzertveranstalter\",\n            \"parent_id\": 8\n        },\n        {\n            \"id\": 10098,\n            \"name\": \"Erwachsenenunterhaltung\",\n            \"parent_id\": 8\n        },\n        {\n            \"id\": 10099,\n            \"name\": \"Sternwarte & Planetarium\",\n            \"parent_id\": 8\n        },\n        {\n            \"id\": 10100,\n            \"name\": \"Sportverein & Sportschule\",\n            \"parent_id\": 8\n        },\n        {\n            \"id\": 10101,\n            \"name\": \"Segel- & Jachtclub\",\n            \"parent_id\": 8\n        },\n        {\n            \"id\": 10102,\n            \"name\": \"Reiterhof & Reithalle\",\n            \"parent_id\": 8\n        },\n        {\n            \"id\": 10103,\n            \"name\": \"Lasertag\",\n            \"parent_id\": 8\n        },\n        {\n            \"id\": 10104,\n            \"name\": \"Minigolf\",\n            \"parent_id\": 8\n        },\n        {\n            \"id\": 10105,\n            \"name\": \"Paintball\",\n            \"parent_id\": 8\n        },\n        {\n            \"id\": 10106,\n            \"name\": \"Freizeitpark\",\n            \"parent_id\": 8\n        },\n        {\n            \"id\": 10107,\n            \"name\": \"Aquarium\",\n            \"parent_id\": 8\n        },\n        {\n            \"id\": 10108,\n            \"name\": \"Kinderfreizeit\",\n            \"parent_id\": 8\n        },\n        {\n            \"id\": 10109,\n            \"name\": \"Freibad & Hallenbad\",\n            \"parent_id\": 8\n        },\n        {\n            \"id\": 10110,\n            \"name\": \"Karaoke-Bar\",\n            \"parent_id\": 8\n        },\n        {\n            \"id\": 905020128,\n            \"name\": \"Veranstaltungsort\",\n            \"parent_id\": 8\n        },\n        {\n            \"id\": 905020142,\n            \"name\": \"Jugendzentrum\",\n            \"parent_id\": 8\n        },\n        {\n            \"id\": 905020166,\n            \"name\": \"Kinderspielplatz\",\n            \"parent_id\": 8\n        },\n        {\n            \"id\": 905020167,\n            \"name\": \"Weitere Guides, Clubs, Schulen\",\n            \"parent_id\": 8\n        },\n        {\n            \"id\": 905020023,\n            \"name\": \"Abenteuerpark\",\n            \"parent_id\": 8\n        },\n        {\n            \"id\": 905020311,\n            \"name\": \"Kneippbad & Kneippanlage\",\n            \"parent_id\": 8\n        },\n        {\n            \"id\": 905020317,\n            \"name\": \"Grillplatz\",\n            \"parent_id\": 9\n        },\n        {\n            \"id\": 10172,\n            \"name\": \"Apotheke\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10173,\n            \"name\": \"Zahnarzt\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10174,\n            \"name\": \"Orthopädieschuhmacher\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10175,\n            \"name\": \"Pflegedienst\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10176,\n            \"name\": \"Allgemeinarzt\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10177,\n            \"name\": \"Naturheilpraxis\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10178,\n            \"name\": \"Plastische und ästhetische Chirurgie\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10179,\n            \"name\": \"Physiotherapie-Praxis\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10180,\n            \"name\": \"Augenlaserchirurgie\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10181,\n            \"name\": \"Sanitätsdienst\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10182,\n            \"name\": \"Tierarzt-Praxis und Klinik\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10183,\n            \"name\": \"Augenarzt\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10184,\n            \"name\": \"Chinesische Medizin\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10185,\n            \"name\": \"Kieferorthopäde\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10186,\n            \"name\": \"Geopathologie\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10187,\n            \"name\": \"Krankenhaus\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10188,\n            \"name\": \"Privatklinik\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10189,\n            \"name\": \"Notdienst und Notaufnahme\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10190,\n            \"name\": \"Chiropraktiker\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10191,\n            \"name\": \"Chirurg\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10192,\n            \"name\": \"Frauenarzt & Gynäkologe\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10193,\n            \"name\": \"HNO Arzt\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10194,\n            \"name\": \"Internist\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10195,\n            \"name\": \"Kardiologe\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10196,\n            \"name\": \"Kinderarzt\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10197,\n            \"name\": \"Neurologe\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10198,\n            \"name\": \"Onkologe\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10199,\n            \"name\": \"Osteopath\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10200,\n            \"name\": \"Podologe\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10201,\n            \"name\": \"Psychiater\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10202,\n            \"name\": \"Radiologe\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10203,\n            \"name\": \"Urologe & Proktologe\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10204,\n            \"name\": \"Ernährungsberatung\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10205,\n            \"name\": \"Drogenberater\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10206,\n            \"name\": \"Gesundheitsberater\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10207,\n            \"name\": \"Ergotherapeut\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10208,\n            \"name\": \"Hebamme\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10209,\n            \"name\": \"Blutspendedienst\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10210,\n            \"name\": \"Psychiatrie\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10211,\n            \"name\": \"Krankenkasse\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10212,\n            \"name\": \"Medizintechnik\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10213,\n            \"name\": \"Logopäde\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10214,\n            \"name\": \"Krankengymnastik & Physiotherapie\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10215,\n            \"name\": \"Kur und Kurmittel\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10216,\n            \"name\": \"Labor\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10217,\n            \"name\": \"Palliativmedizin und Hospize\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10218,\n            \"name\": \"Geburtshaus\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10219,\n            \"name\": \"Dialysezentrum\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10220,\n            \"name\": \"Aidshilfe\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10221,\n            \"name\": \"Rheumatologe\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10222,\n            \"name\": \"Sportmediziner\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10223,\n            \"name\": \"Tropenmediziner\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10224,\n            \"name\": \"Pulmologe\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10225,\n            \"name\": \"Pharmakologe\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10226,\n            \"name\": \"Pathologe\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10227,\n            \"name\": \"Hautarzt und Dermatologe\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10228,\n            \"name\": \"Gastroenterologe\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10229,\n            \"name\": \"Gerontologe\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10230,\n            \"name\": \"Hämatologe\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10231,\n            \"name\": \"Endokrinologe\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10232,\n            \"name\": \"Anästhesist\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10233,\n            \"name\": \"Audiologe\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10234,\n            \"name\": \"Allergologe\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10235,\n            \"name\": \"Akupunktur\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10236,\n            \"name\": \"Homöopath\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10237,\n            \"name\": \"Therapeut\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10238,\n            \"name\": \"Heilpädagoge\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10239,\n            \"name\": \"Pflanzenheilkunde\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10240,\n            \"name\": \"Kinesiologie\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10241,\n            \"name\": \"Reiki\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10242,\n            \"name\": \"Pilates\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10243,\n            \"name\": \"Geothermie\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10244,\n            \"name\": \"Dentallabor\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10245,\n            \"name\": \"Kieferchirurg\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10246,\n            \"name\": \"Orthopäde\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 905020202,\n            \"name\": \"Versch. Berufe Körperpflege und Dienstleistungen\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 905020219,\n            \"name\": \"Zahntechniker\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10291,\n            \"name\": \"Optiker\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10297,\n            \"name\": \"Hörgeräteakustiker\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10299,\n            \"name\": \"Psychotherapeut und Psychologe\",\n            \"parent_id\": 10\n        },\n        {\n            \"id\": 10247,\n            \"name\": \"Polsterei\",\n            \"parent_id\": 11\n        },\n        {\n            \"id\": 10248,\n            \"name\": \"Sattler\",\n            \"parent_id\": 11\n        },\n        {\n            \"id\": 10249,\n            \"name\": \"Grabmaler\",\n            \"parent_id\": 11\n        },\n        {\n            \"id\": 10250,\n            \"name\": \"Buchbinder\",\n            \"parent_id\": 11\n        },\n        {\n            \"id\": 10251,\n            \"name\": \"Teppich- und Bodenleger\",\n            \"parent_id\": 11\n        },\n        {\n            \"id\": 10252,\n            \"name\": \"Abbrucharbeiten\",\n            \"parent_id\": 11\n        },\n        {\n            \"id\": 905020055,\n            \"name\": \"Pfeifenbauer\",\n            \"parent_id\": 11\n        },\n        {\n            \"id\": 905020129,\n            \"name\": \"Weberei\",\n            \"parent_id\": 11\n        },\n        {\n            \"id\": 905020184,\n            \"name\": \"Zimmerer\",\n            \"parent_id\": 11\n        },\n        {\n            \"id\": 905020185,\n            \"name\": \"Bau- und Galanteriespengler\",\n            \"parent_id\": 11\n        },\n        {\n            \"id\": 905020186,\n            \"name\": \"Klima- und Kältetechniker\",\n            \"parent_id\": 11\n        },\n        {\n            \"id\": 905020190,\n            \"name\": \"Restaurator\",\n            \"parent_id\": 11\n        },\n        {\n            \"id\": 905020192,\n            \"name\": \"Maschinenbaumechaniker und Werkzeugmacher\",\n            \"parent_id\": 11\n        },\n        {\n            \"id\": 905020193,\n            \"name\": \"KFZ-Mechatroniker\",\n            \"parent_id\": 11\n        },\n        {\n            \"id\": 905020194,\n            \"name\": \"KFZ-Elektriker\",\n            \"parent_id\": 11\n        },\n        {\n            \"id\": 905020195,\n            \"name\": \"Karosseriebauer\",\n            \"parent_id\": 11\n        },\n        {\n            \"id\": 905020196,\n            \"name\": \"Verschiedene Metallberufe\",\n            \"parent_id\": 11\n        },\n        {\n            \"id\": 10333,\n            \"name\": \"Maßschneider\",\n            \"parent_id\": 11\n        },\n        {\n            \"id\": 905020197,\n            \"name\": \"Kürschner\",\n            \"parent_id\": 11\n        },\n        {\n            \"id\": 905020198,\n            \"name\": \"Federkielsticker\",\n            \"parent_id\": 11\n        },\n        {\n            \"id\": 905020199,\n            \"name\": \"Verschiedene Berufe Textil\",\n            \"parent_id\": 11\n        },\n        {\n            \"id\": 905020200,\n            \"name\": \"Speiseeishersteller\",\n            \"parent_id\": 11\n        },\n        {\n            \"id\": 905020201,\n            \"name\": \"Versch. Berufe Nahrungsmittel\",\n            \"parent_id\": 11\n        },\n        {\n            \"id\": 905020204,\n            \"name\": \"Porphyrleger\",\n            \"parent_id\": 11\n        },\n        {\n            \"id\": 905020205,\n            \"name\": \"Hafner\",\n            \"parent_id\": 11\n        },\n        {\n            \"id\": 905020206,\n            \"name\": \"Isolierer und Abdichtungsmonteure\",\n            \"parent_id\": 11\n        },\n        {\n            \"id\": 905020207,\n            \"name\": \"Holzbildhauer\",\n            \"parent_id\": 11\n        },\n        {\n            \"id\": 905020208,\n            \"name\": \"Verzierungsbildhauer\",\n            \"parent_id\": 11\n        },\n        {\n            \"id\": 905020209,\n            \"name\": \"Holzschnitzer\",\n            \"parent_id\": 11\n        },\n        {\n            \"id\": 905020210,\n            \"name\": \"Fassmaler und Vergolder\",\n            \"parent_id\": 11\n        },\n        {\n            \"id\": 905020211,\n            \"name\": \"Glasmaler und - Ätzer\",\n            \"parent_id\": 11\n        },\n        {\n            \"id\": 905020212,\n            \"name\": \"Versch. Berufe Kunsthandwerk\",\n            \"parent_id\": 11\n        },\n        {\n            \"id\": 905020213,\n            \"name\": \"Elektromechaniker\",\n            \"parent_id\": 11\n        },\n        {\n            \"id\": 905020214,\n            \"name\": \"Kommunikationstechniker\",\n            \"parent_id\": 11\n        },\n        {\n            \"id\": 905020215,\n            \"name\": \"Feuerungstechniker\",\n            \"parent_id\": 11\n        },\n        {\n            \"id\": 905020216,\n            \"name\": \"Versch. Berufe Installation und Facility\",\n            \"parent_id\": 11\n        },\n        {\n            \"id\": 905020217,\n            \"name\": \"Gold- und Silberschmied\",\n            \"parent_id\": 11\n        },\n        {\n            \"id\": 905020220,\n            \"name\": \"Reinigungsunternehmen\",\n            \"parent_id\": 11\n        },\n        {\n            \"id\": 905020223,\n            \"name\": \"Versch. Berufe Baugewerbe\",\n            \"parent_id\": 11\n        },\n        {\n            \"id\": 905020225,\n            \"name\": \"Sportgerätetechniker\",\n            \"parent_id\": 11\n        },\n        {\n            \"id\": 10307,\n            \"name\": \"Bildhauer und Steinmetz\",\n            \"parent_id\": 11\n        },\n        {\n            \"id\": 10253,\n            \"name\": \"Haushaltswaren-Händler\",\n            \"parent_id\": 12\n        },\n        {\n            \"id\": 10254,\n            \"name\": \"Deko und Geschenkartikel\",\n            \"parent_id\": 12\n        },\n        {\n            \"id\": 10255,\n            \"name\": \"Stoffe und Kurzwaren\",\n            \"parent_id\": 12\n        },\n        {\n            \"id\": 10256,\n            \"name\": \"Lampengeschäft\",\n            \"parent_id\": 12\n        },\n        {\n            \"id\": 10257,\n            \"name\": \"Bastelbedarf\",\n            \"parent_id\": 13\n        },\n        {\n            \"id\": 10258,\n            \"name\": \"Spielwarenladen\",\n            \"parent_id\": 13\n        },\n        {\n            \"id\": 10259,\n            \"name\": \"Kostümgeschäft\",\n            \"parent_id\": 13\n        },\n        {\n            \"id\": 10260,\n            \"name\": \"EDV-Service\",\n            \"parent_id\": 14\n        },\n        {\n            \"id\": 10261,\n            \"name\": \"Webdesign und Design-Büro\",\n            \"parent_id\": 14\n        },\n        {\n            \"id\": 10262,\n            \"name\": \"Büroservices\",\n            \"parent_id\": 14\n        },\n        {\n            \"id\": 10263,\n            \"name\": \"Webhoster\",\n            \"parent_id\": 14\n        },\n        {\n            \"id\": 10264,\n            \"name\": \"KFZ-Händler & Werkstatt\",\n            \"parent_id\": 15\n        },\n        {\n            \"id\": 10265,\n            \"name\": \"KFZ-Werkstatt\",\n            \"parent_id\": 15\n        },\n        {\n            \"id\": 10266,\n            \"name\": \"KFZ-Händler\",\n            \"parent_id\": 15\n        },\n        {\n            \"id\": 10267,\n            \"name\": \"Reifenhändler\",\n            \"parent_id\": 15\n        },\n        {\n            \"id\": 10268,\n            \"name\": \"Abschleppdienst\",\n            \"parent_id\": 15\n        },\n        {\n            \"id\": 10269,\n            \"name\": \"Waschanlage\",\n            \"parent_id\": 15\n        },\n        {\n            \"id\": 10270,\n            \"name\": \"KFZ-Bedarf\",\n            \"parent_id\": 15\n        },\n        {\n            \"id\": 10271,\n            \"name\": \"Motorradhandel & Zubehör\",\n            \"parent_id\": 15\n        },\n        {\n            \"id\": 10273,\n            \"name\": \"KFZ-Zulassungsdienst\",\n            \"parent_id\": 15\n        },\n        {\n            \"id\": 10274,\n            \"name\": \"Fahrzeugbau\",\n            \"parent_id\": 15\n        },\n        {\n            \"id\": 10275,\n            \"name\": \"Parkplatz\",\n            \"parent_id\": 15\n        },\n        {\n            \"id\": 10276,\n            \"name\": \"Parkhaus\",\n            \"parent_id\": 15\n        },\n        {\n            \"id\": 10277,\n            \"name\": \"Bushandel und Buswerkstatt\",\n            \"parent_id\": 15\n        },\n        {\n            \"id\": 10278,\n            \"name\": \"Flugzeughandel\",\n            \"parent_id\": 15\n        },\n        {\n            \"id\": 10279,\n            \"name\": \"LKW-Handel\",\n            \"parent_id\": 15\n        },\n        {\n            \"id\": 10280,\n            \"name\": \"Fahrrad- und Motorradmechaniker\",\n            \"parent_id\": 15\n        },\n        {\n            \"id\": 10281,\n            \"name\": \"KFZ-Sachverständiger\",\n            \"parent_id\": 15\n        },\n        {\n            \"id\": 10282,\n            \"name\": \"TÜV GTU Dekra Prüfstelle\",\n            \"parent_id\": 15\n        },\n        {\n            \"id\": 10283,\n            \"name\": \"Wohnwagenhandel\",\n            \"parent_id\": 15\n        },\n        {\n            \"id\": 10284,\n            \"name\": \"KFZ-Hersteller\",\n            \"parent_id\": 15\n        },\n        {\n            \"id\": 10285,\n            \"name\": \"Autolackiererei\",\n            \"parent_id\": 15\n        },\n        {\n            \"id\": 10286,\n            \"name\": \"KFZ-Tuning\",\n            \"parent_id\": 15\n        },\n        {\n            \"id\": 10287,\n            \"name\": \"Drogerie\",\n            \"parent_id\": 16\n        },\n        {\n            \"id\": 10288,\n            \"name\": \"Friseur\",\n            \"parent_id\": 16\n        },\n        {\n            \"id\": 10289,\n            \"name\": \"Nagelstudio\",\n            \"parent_id\": 16\n        },\n        {\n            \"id\": 10290,\n            \"name\": \"Massage\",\n            \"parent_id\": 16\n        },\n        {\n            \"id\": 10292,\n            \"name\": \"Schönheitssalon\",\n            \"parent_id\": 16\n        },\n        {\n            \"id\": 10293,\n            \"name\": \"Kosmetikstudio\",\n            \"parent_id\": 16\n        },\n        {\n            \"id\": 10294,\n            \"name\": \"Tattoostudio\",\n            \"parent_id\": 16\n        },\n        {\n            \"id\": 10295,\n            \"name\": \"Toupet- & Perückenstudio\",\n            \"parent_id\": 16\n        },\n        {\n            \"id\": 10296,\n            \"name\": \"Solarium\",\n            \"parent_id\": 16\n        },\n        {\n            \"id\": 10298,\n            \"name\": \"Parfümerie\",\n            \"parent_id\": 16\n        },\n        {\n            \"id\": 10300,\n            \"name\": \"Hypnose und Coaching\",\n            \"parent_id\": 16\n        },\n        {\n            \"id\": 10301,\n            \"name\": \"Sanitätshaus\",\n            \"parent_id\": 16\n        },\n        {\n            \"id\": 10302,\n            \"name\": \"Sauna, Therme, Spa\",\n            \"parent_id\": 16\n        },\n        {\n            \"id\": 905020315,\n            \"name\": \"Weitere Beauty & Wellness\",\n            \"parent_id\": 16\n        },\n        {\n            \"id\": 10303,\n            \"name\": \"Antiquariat\",\n            \"parent_id\": 17\n        },\n        {\n            \"id\": 10304,\n            \"name\": \"Kunstgalerie\",\n            \"parent_id\": 17\n        },\n        {\n            \"id\": 10305,\n            \"name\": \"Münzhandel\",\n            \"parent_id\": 17\n        },\n        {\n            \"id\": 10306,\n            \"name\": \"Briefmarkenhandel\",\n            \"parent_id\": 17\n        },\n        {\n            \"id\": 10308,\n            \"name\": \"Bilderrahmengeschäft\",\n            \"parent_id\": 17\n        },\n        {\n            \"id\": 10310,\n            \"name\": \"Kunsthandel & Kunsthandwerk\",\n            \"parent_id\": 17\n        },\n        {\n            \"id\": 10312,\n            \"name\": \"Reformhaus\",\n            \"parent_id\": 18\n        },\n        {\n            \"id\": 905020328,\n            \"name\": \"Süßwarengeschäft\",\n            \"parent_id\": 18\n        },\n        {\n            \"id\": 10313,\n            \"name\": \"Schreibwaren & Bürobedarf\",\n            \"parent_id\": 19\n        },\n        {\n            \"id\": 10314,\n            \"name\": \"Buchhandlung\",\n            \"parent_id\": 19\n        },\n        {\n            \"id\": 10315,\n            \"name\": \"Lektorat\",\n            \"parent_id\": 19\n        },\n        {\n            \"id\": 10316,\n            \"name\": \"Comicladen\",\n            \"parent_id\": 19\n        },\n        {\n            \"id\": 10317,\n            \"name\": \"Lieferdienst\",\n            \"parent_id\": 20\n        },\n        {\n            \"id\": 10318,\n            \"name\": \"Lebensmittellieferung\",\n            \"parent_id\": 20\n        },\n        {\n            \"id\": 10320,\n            \"name\": \"Mode-Geschäft\",\n            \"parent_id\": 22\n        },\n        {\n            \"id\": 10321,\n            \"name\": \"Damenmode-Geschäft\",\n            \"parent_id\": 22\n        },\n        {\n            \"id\": 10322,\n            \"name\": \"Herrenmode-Geschäft\",\n            \"parent_id\": 22\n        },\n        {\n            \"id\": 10323,\n            \"name\": \"Mode-Outlet\",\n            \"parent_id\": 22\n        },\n        {\n            \"id\": 10324,\n            \"name\": \"Schuhgeschäft\",\n            \"parent_id\": 22\n        },\n        {\n            \"id\": 10325,\n            \"name\": \"Brautmoden\",\n            \"parent_id\": 22\n        },\n        {\n            \"id\": 10326,\n            \"name\": \"Kindermode-Geschäft\",\n            \"parent_id\": 22\n        },\n        {\n            \"id\": 10327,\n            \"name\": \"Lederwarengeschäft\",\n            \"parent_id\": 22\n        },\n        {\n            \"id\": 10328,\n            \"name\": \"Berufsbekleidungsgeschäft\",\n            \"parent_id\": 22\n        },\n        {\n            \"id\": 10329,\n            \"name\": \"Bademodengeschäft\",\n            \"parent_id\": 22\n        },\n        {\n            \"id\": 10330,\n            \"name\": \"Dessous und Unterwäschegeschäft\",\n            \"parent_id\": 22\n        },\n        {\n            \"id\": 10331,\n            \"name\": \"Hutgeschäft und Hutmacher\",\n            \"parent_id\": 22\n        },\n        {\n            \"id\": 10332,\n            \"name\": \"Krawattengeschäft\",\n            \"parent_id\": 22\n        },\n        {\n            \"id\": 10334,\n            \"name\": \"Trachtengeschäft\",\n            \"parent_id\": 22\n        },\n        {\n            \"id\": 10335,\n            \"name\": \"Musik-Geschäft\",\n            \"parent_id\": 23\n        },\n        {\n            \"id\": 10336,\n            \"name\": \"Plattenladen\",\n            \"parent_id\": 23\n        },\n        {\n            \"id\": 10337,\n            \"name\": \"Videothek\",\n            \"parent_id\": 23\n        },\n        {\n            \"id\": 10338,\n            \"name\": \"Videospiele-Geschäft\",\n            \"parent_id\": 23\n        },\n        {\n            \"id\": 10339,\n            \"name\": \"Gitarrenbauer\",\n            \"parent_id\": 23\n        },\n        {\n            \"id\": 10340,\n            \"name\": \"Klavierhaus\",\n            \"parent_id\": 23\n        },\n        {\n            \"id\": 10342,\n            \"name\": \"Musikinstrumentengeschäft\",\n            \"parent_id\": 23\n        },\n        {\n            \"id\": 10343,\n            \"name\": \"Tonstudio\",\n            \"parent_id\": 23\n        },\n        {\n            \"id\": 10344,\n            \"name\": \"Medien-Presswerk\",\n            \"parent_id\": 23\n        },\n        {\n            \"id\": 10346,\n            \"name\": \"Musikinstrumentenbauer\",\n            \"parent_id\": 23\n        },\n        {\n            \"id\": 10347,\n            \"name\": \"Musikschule\",\n            \"parent_id\": 24\n        },\n        {\n            \"id\": 10348,\n            \"name\": \"Fahrschule\",\n            \"parent_id\": 24\n        },\n        {\n            \"id\": 10350,\n            \"name\": \"Kunstschule\",\n            \"parent_id\": 24\n        },\n        {\n            \"id\": 10352,\n            \"name\": \"Sprachschule\",\n            \"parent_id\": 24\n        },\n        {\n            \"id\": 10353,\n            \"name\": \"Schauspielschule\",\n            \"parent_id\": 24\n        },\n        {\n            \"id\": 10354,\n            \"name\": \"Kunst- & Designschule\",\n            \"parent_id\": 24\n        },\n        {\n            \"id\": 10355,\n            \"name\": \"Filmschule\",\n            \"parent_id\": 24\n        },\n        {\n            \"id\": 10356,\n            \"name\": \"Fort- und Weiterbildung\",\n            \"parent_id\": 24\n        },\n        {\n            \"id\": 10357,\n            \"name\": \"Fotoschule\",\n            \"parent_id\": 24\n        },\n        {\n            \"id\": 10358,\n            \"name\": \"Modeschule\",\n            \"parent_id\": 24\n        },\n        {\n            \"id\": 10359,\n            \"name\": \"Volkshochschule\",\n            \"parent_id\": 24\n        },\n        {\n            \"id\": 10360,\n            \"name\": \"Zertifizierung & Zulassung\",\n            \"parent_id\": 24\n        },\n        {\n            \"id\": 905020139,\n            \"name\": \"Schule & Bildungseinrichtung\",\n            \"parent_id\": 24\n        },\n        {\n            \"id\": 905020297,\n            \"name\": \"Schule\",\n            \"parent_id\": 24\n        },\n        {\n            \"id\": 10389,\n            \"name\": \"Tanzschule\",\n            \"parent_id\": 24\n        },\n        {\n            \"id\": 10393,\n            \"name\": \"Ballettschule\",\n            \"parent_id\": 24\n        },\n        {\n            \"id\": 10361,\n            \"name\": \"Metallverarbeitungsunternehmen\",\n            \"parent_id\": 25\n        },\n        {\n            \"id\": 10363,\n            \"name\": \"Verpacker & Sortierer\",\n            \"parent_id\": 25\n        },\n        {\n            \"id\": 10364,\n            \"name\": \"Schmuckgeschäft/Juwelier\",\n            \"parent_id\": 26\n        },\n        {\n            \"id\": 10365,\n            \"name\": \"Uhrmacher\",\n            \"parent_id\": 26\n        },\n        {\n            \"id\": 10366,\n            \"name\": \"Goldan- und verkauf (Edelmetalle)\",\n            \"parent_id\": 26\n        },\n        {\n            \"id\": 10309,\n            \"name\": \"Museum\",\n            \"parent_id\": 27\n        },\n        {\n            \"id\": 10372,\n            \"name\": \"Schlüsseldienst\",\n            \"parent_id\": 28\n        },\n        {\n            \"id\": 10373,\n            \"name\": \"Sicherheitsdienst\",\n            \"parent_id\": 28\n        },\n        {\n            \"id\": 10374,\n            \"name\": \"Detektei\",\n            \"parent_id\": 28\n        },\n        {\n            \"id\": 10375,\n            \"name\": \"Einbruchschutz & Sicherheitstechnik\",\n            \"parent_id\": 28\n        },\n        {\n            \"id\": 10376,\n            \"name\": \"Arbeitssicherheit\",\n            \"parent_id\": 28\n        },\n        {\n            \"id\": 10378,\n            \"name\": \"Whiskyhändler\",\n            \"parent_id\": 45\n        },\n        {\n            \"id\": 905020022,\n            \"name\": \"Weingut / Kellerei\",\n            \"parent_id\": 45\n        },\n        {\n            \"id\": 10164,\n            \"name\": \"Brennerei\",\n            \"parent_id\": 45\n        },\n        {\n            \"id\": 10377,\n            \"name\": \"Vinothek & Weinhändler\",\n            \"parent_id\": 45\n        },\n        {\n            \"id\": 10381,\n            \"name\": \"Fitness-Studio\",\n            \"parent_id\": 29\n        },\n        {\n            \"id\": 10382,\n            \"name\": \"Bowlingbahn\",\n            \"parent_id\": 29\n        },\n        {\n            \"id\": 10383,\n            \"name\": \"Kegelbahn\",\n            \"parent_id\": 29\n        },\n        {\n            \"id\": 10384,\n            \"name\": \"Kartbahn\",\n            \"parent_id\": 29\n        },\n        {\n            \"id\": 10385,\n            \"name\": \"Billardcenter\",\n            \"parent_id\": 29\n        },\n        {\n            \"id\": 10386,\n            \"name\": \"Sportzentrum\",\n            \"parent_id\": 29\n        },\n        {\n            \"id\": 10387,\n            \"name\": \"Golfplatz\",\n            \"parent_id\": 29\n        },\n        {\n            \"id\": 10388,\n            \"name\": \"Skihalle\",\n            \"parent_id\": 29\n        },\n        {\n            \"id\": 10390,\n            \"name\": \"Yoga-Studio\",\n            \"parent_id\": 29\n        },\n        {\n            \"id\": 10391,\n            \"name\": \"Kampfsportschule\",\n            \"parent_id\": 29\n        },\n        {\n            \"id\": 10392,\n            \"name\": \"Reitsportgeschäft\",\n            \"parent_id\": 29\n        },\n        {\n            \"id\": 10394,\n            \"name\": \"Tennisplatz und Tennishalle\",\n            \"parent_id\": 29\n        },\n        {\n            \"id\": 10395,\n            \"name\": \"Tauchsport\",\n            \"parent_id\": 29\n        },\n        {\n            \"id\": 10396,\n            \"name\": \"Badminton und Squashhalle\",\n            \"parent_id\": 29\n        },\n        {\n            \"id\": 10397,\n            \"name\": \"Kletterhalle & Klettergarten\",\n            \"parent_id\": 29\n        },\n        {\n            \"id\": 10398,\n            \"name\": \"Personal Trainer\",\n            \"parent_id\": 29\n        },\n        {\n            \"id\": 905020157,\n            \"name\": \"Spiel- und Sportanlage\",\n            \"parent_id\": 29\n        },\n        {\n            \"id\": 905020299,\n            \"name\": \"Kiteschule\",\n            \"parent_id\": 29\n        },\n        {\n            \"id\": 905020300,\n            \"name\": \"Schlittschuhbahn\",\n            \"parent_id\": 29\n        },\n        {\n            \"id\": 905020301,\n            \"name\": \"Skischule / Snowboardschule\",\n            \"parent_id\": 29\n        },\n        {\n            \"id\": 905020302,\n            \"name\": \"Bogenschießen\",\n            \"parent_id\": 29\n        },\n        {\n            \"id\": 905020303,\n            \"name\": \"Angelplatz\",\n            \"parent_id\": 29\n        },\n        {\n            \"id\": 905020304,\n            \"name\": \"Kanu & Kajak\",\n            \"parent_id\": 29\n        },\n        {\n            \"id\": 905020305,\n            \"name\": \"Paragleiten & Drachenfliegen\",\n            \"parent_id\": 29\n        },\n        {\n            \"id\": 905020306,\n            \"name\": \"Volleyball & Beachvolleyball\",\n            \"parent_id\": 29\n        },\n        {\n            \"id\": 905020308,\n            \"name\": \"Eisklettern\",\n            \"parent_id\": 29\n        },\n        {\n            \"id\": 905020309,\n            \"name\": \"Pferdekutschenfahrten (und Schlitten)\",\n            \"parent_id\": 29\n        },\n        {\n            \"id\": 905020312,\n            \"name\": \"Fußballplatz\",\n            \"parent_id\": 29\n        },\n        {\n            \"id\": 905020316,\n            \"name\": \"Canyoning & Rafting\",\n            \"parent_id\": 29\n        },\n        {\n            \"id\": 10399,\n            \"name\": \"Kaufhaus\",\n            \"parent_id\": 30\n        },\n        {\n            \"id\": 10400,\n            \"name\": \"Warenhaus & Großmarkt\",\n            \"parent_id\": 30\n        },\n        {\n            \"id\": 10401,\n            \"name\": \"Supermarkt\",\n            \"parent_id\": 30\n        },\n        {\n            \"id\": 10402,\n            \"name\": \"Kiosk\",\n            \"parent_id\": 30\n        },\n        {\n            \"id\": 10403,\n            \"name\": \"Gemüsehändler\",\n            \"parent_id\": 18\n        },\n        {\n            \"id\": 10410,\n            \"name\": \"Bäckerei\",\n            \"parent_id\": 32\n        },\n        {\n            \"id\": 10404,\n            \"name\": \"Obst- & Gemüsehändler\",\n            \"parent_id\": 18\n        },\n        {\n            \"id\": 10411,\n            \"name\": \"Metzgerei\",\n            \"parent_id\": 32\n        },\n        {\n            \"id\": 10405,\n            \"name\": \"Italienische Spezialitäten\",\n            \"parent_id\": 18\n        },\n        {\n            \"id\": 10413,\n            \"name\": \"Tabakwaren und Raucherbedarf\",\n            \"parent_id\": 32\n        },\n        {\n            \"id\": 10406,\n            \"name\": \"Spanische Spezialitäten\",\n            \"parent_id\": 18\n        },\n        {\n            \"id\": 10414,\n            \"name\": \"Erotik-Shop\",\n            \"parent_id\": 32\n        },\n        {\n            \"id\": 10407,\n            \"name\": \"Polnische Spezialitäten\",\n            \"parent_id\": 18\n        },\n        {\n            \"id\": 10416,\n            \"name\": \"E-Zigaretten Shop\",\n            \"parent_id\": 32\n        },\n        {\n            \"id\": 10408,\n            \"name\": \"Russische Spezialitäten\",\n            \"parent_id\": 18\n        },\n        {\n            \"id\": 10409,\n            \"name\": \"Asiatische Spezialitäten\",\n            \"parent_id\": 18\n        },\n        {\n            \"id\": 10412,\n            \"name\": \"Lebensmittelgeschäft\",\n            \"parent_id\": 18\n        },\n        {\n            \"id\": 10417,\n            \"name\": \"Textilreinigung\",\n            \"parent_id\": 33\n        },\n        {\n            \"id\": 10415,\n            \"name\": \"Feinkost-Geschäft\",\n            \"parent_id\": 18\n        },\n        {\n            \"id\": 10418,\n            \"name\": \"Schneiderei\",\n            \"parent_id\": 33\n        },\n        {\n            \"id\": 10419,\n            \"name\": \"Schuhmacher\",\n            \"parent_id\": 33\n        },\n        {\n            \"id\": 905020021,\n            \"name\": \"Hofladen\",\n            \"parent_id\": 18\n        },\n        {\n            \"id\": 10420,\n            \"name\": \"Waschsalon\",\n            \"parent_id\": 33\n        },\n        {\n            \"id\": 10421,\n            \"name\": \"Tier- & Zoohandlung\",\n            \"parent_id\": 34\n        },\n        {\n            \"id\": 10422,\n            \"name\": \"Tierheim\",\n            \"parent_id\": 34\n        },\n        {\n            \"id\": 10423,\n            \"name\": \"Haustierpflege und Tierhotel\",\n            \"parent_id\": 34\n        },\n        {\n            \"id\": 10424,\n            \"name\": \"Zoo & Tierpark\",\n            \"parent_id\": 34\n        },\n        {\n            \"id\": 10425,\n            \"name\": \"Anglergeschäft\",\n            \"parent_id\": 34\n        },\n        {\n            \"id\": 10426,\n            \"name\": \"Reisebüro\",\n            \"parent_id\": 35\n        },\n        {\n            \"id\": 10427,\n            \"name\": \"Umzugsservice & Spedition\",\n            \"parent_id\": 35\n        },\n        {\n            \"id\": 10428,\n            \"name\": \"Reiseveranstalter\",\n            \"parent_id\": 35\n        },\n        {\n            \"id\": 10429,\n            \"name\": \"Kurierdienst\",\n            \"parent_id\": 35\n        },\n        {\n            \"id\": 10430,\n            \"name\": \"Taxiunternehmen\",\n            \"parent_id\": 35\n        },\n        {\n            \"id\": 10431,\n            \"name\": \"Busunternehmen\",\n            \"parent_id\": 35\n        },\n        {\n            \"id\": 10432,\n            \"name\": \"Chauffeur- & Limousinenservice\",\n            \"parent_id\": 35\n        },\n        {\n            \"id\": 10433,\n            \"name\": \"Sprachreise\",\n            \"parent_id\": 35\n        },\n        {\n            \"id\": 10434,\n            \"name\": \"Krankentransport\",\n            \"parent_id\": 35\n        },\n        {\n            \"id\": 10435,\n            \"name\": \"Flughafen\",\n            \"parent_id\": 35\n        },\n        {\n            \"id\": 10436,\n            \"name\": \"Flug- & Landeplätze\",\n            \"parent_id\": 35\n        },\n        {\n            \"id\": 10437,\n            \"name\": \"Warentransporteur\",\n            \"parent_id\": 35\n        },\n        {\n            \"id\": 10438,\n            \"name\": \"Fluggesellschaft\",\n            \"parent_id\": 35\n        },\n        {\n            \"id\": 10439,\n            \"name\": \"Logistikdienstleister\",\n            \"parent_id\": 35\n        },\n        {\n            \"id\": 10440,\n            \"name\": \"Tourismusinformation\",\n            \"parent_id\": 35\n        },\n        {\n            \"id\": 10441,\n            \"name\": \"Hafen & Küste\",\n            \"parent_id\": 35\n        },\n        {\n            \"id\": 10442,\n            \"name\": \"Fähre\",\n            \"parent_id\": 35\n        },\n        {\n            \"id\": 10443,\n            \"name\": \"Privatjets\",\n            \"parent_id\": 35\n        },\n        {\n            \"id\": 10444,\n            \"name\": \"Eisenbahnunternehmen\",\n            \"parent_id\": 35\n        },\n        {\n            \"id\": 905020019,\n            \"name\": \"Seilbahn\",\n            \"parent_id\": 35\n        },\n        {\n            \"id\": 905020203,\n            \"name\": \"Versch. Berufe Transporte\",\n            \"parent_id\": 35\n        },\n        {\n            \"id\": 905020222,\n            \"name\": \"Schottergrube\",\n            \"parent_id\": 35\n        },\n        {\n            \"id\": 10445,\n            \"name\": \"Bestattungshaus\",\n            \"parent_id\": 36\n        },\n        {\n            \"id\": 10446,\n            \"name\": \"DJs & Musiker\",\n            \"parent_id\": 37\n        },\n        {\n            \"id\": 10447,\n            \"name\": \"Comedy-Club\",\n            \"parent_id\": 37\n        },\n        {\n            \"id\": 10345,\n            \"name\": \"Zauberer\",\n            \"parent_id\": 37\n        },\n        {\n            \"id\": 10448,\n            \"name\": \"Liveband & Livemusiker\",\n            \"parent_id\": 38\n        },\n        {\n            \"id\": 10449,\n            \"name\": \"Eventagentur & Veranstaltungsorganisation\",\n            \"parent_id\": 38\n        },\n        {\n            \"id\": 10450,\n            \"name\": \"Veranstaltungstechnik\",\n            \"parent_id\": 38\n        },\n        {\n            \"id\": 10451,\n            \"name\": \"Lichttechnik & Tontechnik\",\n            \"parent_id\": 38\n        },\n        {\n            \"id\": 10452,\n            \"name\": \"Konferenz- & Tagungsraum\",\n            \"parent_id\": 38\n        },\n        {\n            \"id\": 10453,\n            \"name\": \"Rundfunk & Produktion\",\n            \"parent_id\": 38\n        },\n        {\n            \"id\": 10454,\n            \"name\": \"Fernsehsender\",\n            \"parent_id\": 38\n        },\n        {\n            \"id\": 905020145,\n            \"name\": \"Chor\",\n            \"parent_id\": 38\n        },\n        {\n            \"id\": 905020313,\n            \"name\": \"Bike-Guide\",\n            \"parent_id\": 38\n        },\n        {\n            \"id\": 10341,\n            \"name\": \"Kartenvorverkaufsstelle\",\n            \"parent_id\": 38\n        },\n        {\n            \"id\": 10482,\n            \"name\": \"Messebau\",\n            \"parent_id\": 38\n        },\n        {\n            \"id\": 10515,\n            \"name\": \"Co-Working-Fläche\",\n            \"parent_id\": 38\n        },\n        {\n            \"id\": 10455,\n            \"name\": \"Verein\",\n            \"parent_id\": 39\n        },\n        {\n            \"id\": 10456,\n            \"name\": \"Verband\",\n            \"parent_id\": 39\n        },\n        {\n            \"id\": 905020020,\n            \"name\": \"Tourismusverein\",\n            \"parent_id\": 39\n        },\n        {\n            \"id\": 905020150,\n            \"name\": \"Stiftung\",\n            \"parent_id\": 39\n        },\n        {\n            \"id\": 905020151,\n            \"name\": \"Öffentliche Verwaltung\",\n            \"parent_id\": 39\n        },\n        {\n            \"id\": 905020152,\n            \"name\": \"Feuerwehr\",\n            \"parent_id\": 39\n        },\n        {\n            \"id\": 10457,\n            \"name\": \"Maschinen- & Werkzeugvermietung\",\n            \"parent_id\": 46\n        },\n        {\n            \"id\": 10458,\n            \"name\": \"Fahrradverleih\",\n            \"parent_id\": 46\n        },\n        {\n            \"id\": 10459,\n            \"name\": \"Mietwagenunternehmen\",\n            \"parent_id\": 46\n        },\n        {\n            \"id\": 10460,\n            \"name\": \"Bootsverleih\",\n            \"parent_id\": 46\n        },\n        {\n            \"id\": 905020307,\n            \"name\": \"E-Bike Verleih\",\n            \"parent_id\": 46\n        },\n        {\n            \"id\": 905020314,\n            \"name\": \"Skiverleih\",\n            \"parent_id\": 46\n        },\n        {\n            \"id\": 10474,\n            \"name\": \"Toilettenverleih\",\n            \"parent_id\": 46\n        },\n        {\n            \"id\": 10461,\n            \"name\": \"Au-Pair Vermittlung\",\n            \"parent_id\": 40\n        },\n        {\n            \"id\": 10462,\n            \"name\": \"Personalvermittlung und Beratung\",\n            \"parent_id\": 40\n        },\n        {\n            \"id\": 10463,\n            \"name\": \"Künstleragentur\",\n            \"parent_id\": 40\n        },\n        {\n            \"id\": 10464,\n            \"name\": \"Escortservice\",\n            \"parent_id\": 40\n        },\n        {\n            \"id\": 10465,\n            \"name\": \"Kindergarten & Kinderbetreuung\",\n            \"parent_id\": 40\n        },\n        {\n            \"id\": 10466,\n            \"name\": \"Seniorenbetreuung\",\n            \"parent_id\": 40\n        },\n        {\n            \"id\": 10467,\n            \"name\": \"Auktionator & Wertschätzer\",\n            \"parent_id\": 40\n        },\n        {\n            \"id\": 10468,\n            \"name\": \"Call-Center\",\n            \"parent_id\": 40\n        },\n        {\n            \"id\": 10469,\n            \"name\": \"Modelagentur\",\n            \"parent_id\": 40\n        },\n        {\n            \"id\": 10470,\n            \"name\": \"Partnervermittlung\",\n            \"parent_id\": 40\n        },\n        {\n            \"id\": 10471,\n            \"name\": \"Heiratsvermittlung\",\n            \"parent_id\": 40\n        },\n        {\n            \"id\": 10472,\n            \"name\": \"Arbeitsvermittlung\",\n            \"parent_id\": 40\n        },\n        {\n            \"id\": 10473,\n            \"name\": \"Casting-Agentur\",\n            \"parent_id\": 40\n        },\n        {\n            \"id\": 10475,\n            \"name\": \"Mietbüro & Büroservice\",\n            \"parent_id\": 40\n        },\n        {\n            \"id\": 10476,\n            \"name\": \"Haushaltsdienst\",\n            \"parent_id\": 40\n        },\n        {\n            \"id\": 10477,\n            \"name\": \"Hochzeits-Dienstleister\",\n            \"parent_id\": 40\n        },\n        {\n            \"id\": 10478,\n            \"name\": \"Car-Sharing\",\n            \"parent_id\": 40\n        },\n        {\n            \"id\": 10479,\n            \"name\": \"Werbe- & Internetagentur\",\n            \"parent_id\": 41\n        },\n        {\n            \"id\": 10480,\n            \"name\": \"Anzeigenvermittler\",\n            \"parent_id\": 41\n        },\n        {\n            \"id\": 10481,\n            \"name\": \"Verlag\",\n            \"parent_id\": 41\n        },\n        {\n            \"id\": 10483,\n            \"name\": \"Werbeartikel\",\n            \"parent_id\": 41\n        },\n        {\n            \"id\": 10484,\n            \"name\": \"Video- und Filmproduktion\",\n            \"parent_id\": 41\n        },\n        {\n            \"id\": 905020085,\n            \"name\": \"PR und Marketingagentur\",\n            \"parent_id\": 41\n        },\n        {\n            \"id\": 905020153,\n            \"name\": \"Messe\",\n            \"parent_id\": 41\n        },\n        {\n            \"id\": 905020218,\n            \"name\": \"Mediendesigner\",\n            \"parent_id\": 41\n        },\n        {\n            \"id\": 905020146,\n            \"name\": \"Bibliothek\",\n            \"parent_id\": 42\n        },\n        {\n            \"id\": 905020147,\n            \"name\": \"Kulturhaus\",\n            \"parent_id\": 42\n        },\n        {\n            \"id\": 905020296,\n            \"name\": \"Universität\",\n            \"parent_id\": 42\n        },\n        {\n            \"id\": 905020298,\n            \"name\": \"Forschungsinstitut\",\n            \"parent_id\": 42\n        },\n        {\n            \"id\": 10486,\n            \"name\": \"Blumengeschäft\",\n            \"parent_id\": 43\n        },\n        {\n            \"id\": 10487,\n            \"name\": \"Möbel-Geschäft\",\n            \"parent_id\": 43\n        },\n        {\n            \"id\": 10488,\n            \"name\": \"Baumarkt\",\n            \"parent_id\": 43\n        },\n        {\n            \"id\": 10489,\n            \"name\": \"Küchengeschäft\",\n            \"parent_id\": 43\n        },\n        {\n            \"id\": 10490,\n            \"name\": \"Einrichtungshaus\",\n            \"parent_id\": 43\n        },\n        {\n            \"id\": 10491,\n            \"name\": \"Holzhandel\",\n            \"parent_id\": 43\n        },\n        {\n            \"id\": 10492,\n            \"name\": \"Matratzengeschäft\",\n            \"parent_id\": 43\n        },\n        {\n            \"id\": 10493,\n            \"name\": \"Einlagerungshaus\",\n            \"parent_id\": 43\n        },\n        {\n            \"id\": 10494,\n            \"name\": \"Schrott- & Containerdienst\",\n            \"parent_id\": 43\n        },\n        {\n            \"id\": 10495,\n            \"name\": \"Teppichhändler\",\n            \"parent_id\": 43\n        },\n        {\n            \"id\": 10496,\n            \"name\": \"Montageservice\",\n            \"parent_id\": 43\n        },\n        {\n            \"id\": 10497,\n            \"name\": \"Hausmeisterservice\",\n            \"parent_id\": 43\n        },\n        {\n            \"id\": 10498,\n            \"name\": \"Gärtnerei\",\n            \"parent_id\": 43\n        },\n        {\n            \"id\": 10499,\n            \"name\": \"Gebäudeservice & Management\",\n            \"parent_id\": 43\n        },\n        {\n            \"id\": 10500,\n            \"name\": \"Energieberatung\",\n            \"parent_id\": 43\n        },\n        {\n            \"id\": 10501,\n            \"name\": \"Entsorgungsbetrieb\",\n            \"parent_id\": 43\n        },\n        {\n            \"id\": 10502,\n            \"name\": \"Forstbetrieb\",\n            \"parent_id\": 43\n        },\n        {\n            \"id\": 10503,\n            \"name\": \"Fliesen- und Plattenleger\",\n            \"parent_id\": 43\n        },\n        {\n            \"id\": 10504,\n            \"name\": \"Bad- & Sanitärfachhandel\",\n            \"parent_id\": 43\n        },\n        {\n            \"id\": 10505,\n            \"name\": \"Haus- & Gebäudeverwaltung\",\n            \"parent_id\": 43\n        },\n        {\n            \"id\": 10506,\n            \"name\": \"Korb- & Stuhlflechterei\",\n            \"parent_id\": 43\n        },\n        {\n            \"id\": 10507,\n            \"name\": \"Home Staging\",\n            \"parent_id\": 43\n        },\n        {\n            \"id\": 10508,\n            \"name\": \"Raumausstatter & Tapezierer\",\n            \"parent_id\": 43\n        },\n        {\n            \"id\": 10509,\n            \"name\": \"Ingenieurbüro\",\n            \"parent_id\": 43\n        },\n        {\n            \"id\": 10510,\n            \"name\": \"Architekturbüro\",\n            \"parent_id\": 43\n        },\n        {\n            \"id\": 10511,\n            \"name\": \"Innenarchitekt\",\n            \"parent_id\": 43\n        },\n        {\n            \"id\": 10512,\n            \"name\": \"Baumschule\",\n            \"parent_id\": 43\n        },\n        {\n            \"id\": 10513,\n            \"name\": \"Bettenfachgeschäft\",\n            \"parent_id\": 43\n        },\n        {\n            \"id\": 10514,\n            \"name\": \"Kaminkehrer\",\n            \"parent_id\": 43\n        },\n        {\n            \"id\": 10516,\n            \"name\": \"Schädlingsbekämpfung\",\n            \"parent_id\": 43\n        },\n        {\n            \"id\": 10517,\n            \"name\": \"Räumdienst\",\n            \"parent_id\": 43\n        },\n        {\n            \"id\": 10518,\n            \"name\": \"Innenausbau\",\n            \"parent_id\": 43\n        },\n        {\n            \"id\": 10519,\n            \"name\": \"Heizungsanlagen & Zubehör\",\n            \"parent_id\": 43\n        },\n        {\n            \"id\": 10520,\n            \"name\": \"Konstruktionsbüro\",\n            \"parent_id\": 43\n        },\n        {\n            \"id\": 905020018,\n            \"name\": \"Konditor\",\n            \"parent_id\": 32\n        }\n    ]\n}"}],"_postman_id":"5dde84ba-da7e-435b-9433-21a66a0936df"},{"name":"/stores/types/:id/properties/suggested","id":"fcf72017-5926-4469-8a1e-eb5427534bfe","request":{"method":"GET","header":[{"key":"Authorization","value":"APIKEY {{api_key}}"},{"key":"Accept","value":"application/x.sl.v1+json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"{{language}}"}],"body":{"mode":"raw","raw":"{\n    \"clientid\":\"web\"\n}"},"url":"{{url}}/public/stores/types/:id/properties/suggested","description":"<p>Get a suggested set of properties for a specific POI type. You can use the response and just add it to a POST or PATCH call of a POI to create or update it with a new set of properties.</p>\n","urlObject":{"path":["public","stores","types",":id","properties","suggested"],"host":["{{url}}"],"query":[],"variable":[{"id":"98f7db90-b9b3-4177-8d1d-186b4f3c6286","type":"string","value":"","key":"id"}]}},"response":[],"_postman_id":"fcf72017-5926-4469-8a1e-eb5427534bfe"},{"name":"/stores","id":"6e3673ac-8261-4470-b66b-57115178813a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"APIKEY {{api_key}}"},{"key":"Accept","value":"application/x.sl.v1+json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"{{language}}"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/public/stores","description":"<p>Create a store POI.</p>\n<p>Notes:</p>\n<ul>\n<li>Use the specific city and county IDs as given by the Geography API when adding an address</li>\n<li>Use the type as given in the GET /stores/types call</li>\n<li>Please include the agreed origin value in the property ID with facet \"pub-ext-origin\" (for reference and support cases only)</li>\n<li>Please include your own id as value in the property ID with facet \"pub-ext-id\" (for reference and support cases only)</li>\n<li>Please include the latitude and longitude for your POIs. If you do not provide the location it will be automatically filled with the geocoding of Google for the given address</li>\n</ul>\n<p>See the example JSON body in order to understand how to create an store. This is already our most current structure which you can develop against.</p>\n<p>Please also consider the explanations below to get an overview of the request body structure.</p>\n<h2 id=\"structure-of-json-body\">Structure of JSON Body</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>types</td>\n<td>int</td>\n<td>The type of the store. Please refer to the \"GET /public/stores/types\" call to get the id of the type for your store</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>The title of the store</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>teaser</td>\n<td>string</td>\n<td>The teaser of the store</td>\n<td>No</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>The description of the store</td>\n<td>No</td>\n</tr>\n<tr>\n<td>openinghoursnotes</td>\n<td>string</td>\n<td>Any notes regarding the openinghours of your store</td>\n<td>No</td>\n</tr>\n<tr>\n<td>member_of</td>\n<td>string</td>\n<td>If your store is a member of an organization, you can provide the organization here</td>\n<td>No</td>\n</tr>\n<tr>\n<td>keywords</td>\n<td>string</td>\n<td>Add keywords to your store for better search results</td>\n<td>No</td>\n</tr>\n<tr>\n<td>status</td>\n<td>boolean (1 | 0)</td>\n<td>The status of the store. Indicates wheter the store is enabled or disabled</td>\n<td>No</td>\n</tr>\n<tr>\n<td>corporate_color</td>\n<td>string</td>\n<td>Hexcode color to representing your store</td>\n<td>No</td>\n</tr>\n<tr>\n<td>pricelevel</td>\n<td>integer</td>\n<td>The pricelevel of your store. Between 0 and 5</td>\n<td>No</td>\n</tr>\n<tr>\n<td>established</td>\n<td>integer</td>\n<td>Date of establishmemet</td>\n<td>No</td>\n</tr>\n<tr>\n<td>closedate</td>\n<td>integer</td>\n<td>Close date of the store</td>\n<td>No</td>\n</tr>\n<tr>\n<td>show_address</td>\n<td>boolean (1 | 0)</td>\n<td>Determine if the address should be shown or not</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"address\">Address</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>city_id</td>\n<td>sting</td>\n<td>The ID of the city</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>country_id</td>\n<td>string</td>\n<td>The ID of the country</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>street_name</td>\n<td>string</td>\n<td>The name of the street</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>street_number</td>\n<td>string</td>\n<td>The house number</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>latitude</td>\n<td>number</td>\n<td>Latitude of the location</td>\n<td>No</td>\n</tr>\n<tr>\n<td>longitude</td>\n<td>number</td>\n<td>Longitude of the location</td>\n<td>No</td>\n</tr>\n<tr>\n<td>extra_info</td>\n<td>string</td>\n<td>Further information for the address</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Please refer to the Geography API to find the correct IDs for your place's address</strong></p>\n<h2 id=\"contact\">Contact</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>phone</td>\n<td>string</td>\n<td>Phone number</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>email</td>\n<td>string</td>\n<td>Email addres</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>website</td>\n<td>string</td>\n<td>Link to website</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"picture-winter-picture-logo--media\">Picture, Winter Picture, Logo &amp; Media</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>file</td>\n<td>sting</td>\n<td>The link to the media file</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>title</td>\n<td>string</td>\n<td>Title of the media file</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>copyright</td>\n<td>string</td>\n<td>Optional. Add a copyright to your file</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"properties\">Properties</h2>\n<p>You can include as many properties as you wish when you create a new store.</p>\n<p>To get to know which properties you can assign to your store please refer to the call \"GET /public/stores/types/:id/properties/suggested\".\nPlease note that the types and the properties are related to each other and that the call will return only the properties that are possible with the type you chose.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>int</td>\n<td>The ID of the property you want to add to your store</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>value</td>\n<td>boolean or string</td>\n<td>Based on the specific property you can either enable the property by setting it to 1 (-&gt;true)  or by providing a further description</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"openinghours\">Openinghours</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>weekday</td>\n<td>int</td>\n<td>Weekday from Sunday(=0) to Saturday(=6)</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>opentime</td>\n<td>string</td>\n<td>Timestamp for opening time. HH:MM:SS</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>closetime</td>\n<td>string</td>\n<td>Timestamp for closing time. HH:MM:SS</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"translations\">Translations</h2>\n<p>Translations are a very important feature that you can simply integrate to your store.\nThe SL API supports the following languages:</p>\n<ul>\n<li>german</li>\n<li>italian</li>\n<li>english</li>\n</ul>\n<p>Providing translated information is done by wrapping a translations object around the fields that can be translated. </p>\n<p>The following fields can be translated at any part of the request body:</p>\n<ul>\n<li>name</li>\n<li>teaser</li>\n<li>description</li>\n<li>openinghoursnotes</li>\n<li>member_of</li>\n<li>keywords</li>\n<li>street_name</li>\n<li>extra_info</li>\n</ul>\n<p>Refer to the example understand how to use the translations object.</p>\n","urlObject":{"path":["public","stores"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"05410d3d-d503-40de-9786-66d6ccc8419c","name":"Add a new store","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"APIKEY {{api_key}}"},{"key":"Accept","value":"application/x.sl.v1+json"},{"key":"Content-Type","type":"text","name":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"{{language}}"}],"body":{"mode":"raw","raw":"{\n    \"status\":1,\n    \"types\": [10006],\n    \"corporate_color\": \"#FF3366\",\n    \"established\": 1974,\n    \"show_address\": 1,\n    \"picture\": {\n        \"file\": \"https://via.placeholder.com/1200x800\"\n    },\n    \"media\": [\n    \t{\n        \"file\": \"https://via.placeholder.com/1200x800\"\n    \t},\n    \t{\n        \"file\": \"https://via.placeholder.com/1200x800\"\n    \t}\n    ],\n    \"translations\": {\n        \"de\": {\n            \"name\": \"Store Name DE\",\n            \"teaser\": \"Teaser DE\",\n            \"description\": \"\",\n            \"member_of\": \"\",\n            \"keywords\": \"\"\n        },\n        \"it\": {\n            \"name\": \"Store Name IT\",\n            \"teaser\": \"Teaser IT\",\n            \"description\": \"\",\n            \"member_of\": \"\",\n            \"keywords\": \"\"\n        },\n        \"en\": {\n            \"name\": \"Store Name EN\",\n            \"teaser\": \"Teaser EN\",\n            \"description\": \"\",\n            \"member_of\": \"\",\n            \"keywords\": \"\"\n        }\n    },\n    \"logo\": {\n        \"file\":\"https://via.placeholder.com/300x300\"\n    },\n    \"address\": {\n        \"city_id\": 12,\n        \"country_id\": 95,\n        \"latitude\": 46.49807000,\n        \"longitude\": 11.35703500,\n        \"street_number\": \"4\",\n        \"translations\": {\n            \"de\": {\n                \"street_name\": \"Musterstraße\",\n                \"extra_info\": \"\"\n            },\n            \"it\": {\n                \"street_name\": \"Via Muster\",\n                 \"extra_info\": \"\"\n\n            },\n            \"en\": {\n                \"street_name\": \"Via Muster\",\n                 \"extra_info\": \"\"\n\n            }\n        }\n    },\n    \"contact\": {\n        \"id\": 1,\n        \"phone\": \"+39 0471 1111111111\",\n        \"phone_is_special\": 0,\n        \"mobil\": \"\",\n        \"fax\": \"+39 1234 567789\",\n        \"website\": \"http://www.mustermanngmbh.com\",\n        \"email\": \"info@mustermanngmbh.com\",\n        \"facebook\": \"https://www.facebook.com/mustermanngmbh\",\n        \"twitter\": \"\",\n        \"googleplus\": \"\",\n        \"instagramm\": \"\",\n        \"pinterest\": \"\"\n    },\n    \"properties\": [\n        {\n            \"id\": 11331,\n            \"value\": \"myOrigin\"\n        },\n        {\n            \"id\": 11332,\n            \"value\": \"myID123\"\n        }\n    ],\n    \"openinghours\": [\n        {\n            \"weekday\": 0,\n            \"opentime\":\"09:00:00\",\n            \"closetime\":\"18:00:00\"\n        },\n        {\n            \"weekday\": 1,\n            \"opentime\":\"09:00:00\",\n            \"closetime\":\"12:00:00\"\n        },\n        {\n            \"weekday\": 1,\n            \"opentime\":\"15:00:00\",\n            \"closetime\":\"19:00:00\"\n        },\n        {\n            \"weekday\": 2,\n            \"opentime\":\"09:00:00\",\n            \"closetime\":\"12:00:00\"\n        },\n        {\n            \"weekday\": 2,\n            \"opentime\":\"15:00:00\",\n            \"closetime\":\"19:00:00\"\n        }\n    ]\n}"},"url":"{{url}}/public/stores"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"6e3673ac-8261-4470-b66b-57115178813a"},{"name":"/stores/:id","id":"5cdd30dd-9087-40e6-a1c6-1c7caffc601a","request":{"method":"PATCH","header":[{"key":"Authorization","value":"APIKEY {{api_key}}"},{"key":"Accept","value":"application/x.sl.v1+json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"{{language}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"status\": 1,\r\n\t\"types\": [\"905020217\"],\r\n\t\"established\": 1998,\r\n\t\"show_address\": 1,\r\n\t\"translations\": {\r\n\t\t\"de\": {\r\n\t\t\t\"name\": \"Kerschbaumer Hansjörg\"\r\n\t\t},\r\n\t\t\"it\": {\r\n\t\t\t\"name\": \"Kerschbaumer Hansjörg\"\r\n\t\t}\r\n\t},\r\n\t\"address\": {\r\n\t\t\"city_id\": 1015,\r\n\t\t\"country_id\": 95,\r\n\t\t\"street_number\": \"3\",\r\n\t\t\"translations\": {\r\n\t\t\t\"de\": {\r\n\t\t\t\t\"street_name\": \"Dr.-Weiser-Platz\"\r\n\t\t\t},\r\n\t\t\t\"it\": {}\r\n\t\t}\r\n\t},\r\n\t\"contact\": {\r\n\t\t\"id\": 1,\r\n\t\t\"phone\": \"0471-660336\",\r\n\t\t\"mobil\": \" \",\r\n\t\t\"fax\": \"0471-257203\",\r\n\t\t\"website\": \" \",\r\n\t\t\"email\": \"kerschbaumer@brennercom.net\"\r\n\t},\r\n\t\"properties\": [{\r\n\t\t\"id\": \"12001\",\r\n\t\t\"value\": \"4\"\r\n\t}, {\r\n\t\t\"id\": \"11941\",\r\n\t\t\"value\": \"KRSHSJ50R28L108B\"\r\n\t}, {\r\n\t\t\"id\": \"11942\",\r\n\t\t\"value\": \"00574250213\"\r\n\t}]\r\n}"},"url":"{{url}}/public/stores/:id","description":"<p>Patch a store POI. </p>\n<p>Notes:</p>\n<ul>\n<li>Please refer to POST /stores for the basic notes on a store POI</li>\n</ul>\n","urlObject":{"path":["public","stores",":id"],"host":["{{url}}"],"query":[{"disabled":true,"key":"include","value":"mappings"}],"variable":[{"id":"f0af3d9c-27ab-4be8-99fe-49f33954ccc1","type":"string","value":"6265","key":"id"}]}},"response":[{"id":"9ae05fa6-1221-404b-bc44-b894acb637c6","name":"Patch a store","originalRequest":{"method":"PATCH","header":[{"key":"Accept","value":"application/x.sl.v1+json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"{{language}}"},{"key":"Authorization","value":"APIKEY {{api_key}}"}],"body":{"mode":"raw","raw":""},"url":{"raw":"{{url}}/public/stores/:id","host":["{{url}}"],"path":["public","stores",":id"],"variable":[{"key":"id","value":"2"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"private, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"close","name":"Connection","description":""},{"key":"Content-Length","value":"2555","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 06 Jun 2017 13:07:22 GMT","name":"Date","description":""},{"key":"ETag","value":"\"18aa92691d262cb5d871c2e48d890ed9d1c86e7c\"","name":"ETag","description":""},{"key":"Server","value":"Apache/2.4.18 (Ubuntu)","name":"Server","description":""},{"key":"Vary","value":"Authorization","name":"Vary","description":""},{"key":"X-Powered-By","value":"PHP/5.6.23-1+deprecated+dontuse+deb.sury.org~trusty+1","name":"X-Powered-By","description":""}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"New name of a POI\"\n}"}],"_postman_id":"5cdd30dd-9087-40e6-a1c6-1c7caffc601a"},{"name":"/stores/:id/packs/subscriptions","id":"8dde6b10-d458-4e59-b28d-cbbc6170fde2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"APIKEY {{api_key}}"},{"key":"Accept","value":"application/x.sl.v1+json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"{{language}}"}],"body":{"mode":"raw","raw":"{\n    \"pack_plan_id\":46\n}"},"url":"{{url}}/public/stores/:place_id/packs/subscriptions","description":"<p>Subscribe the POI to a pack plan to make it visible on a certain platform.</p>\n","urlObject":{"path":["public","stores",":place_id","packs","subscriptions"],"host":["{{url}}"],"query":[],"variable":[{"type":"any","value":"47184","key":"place_id"}]}},"response":[],"_postman_id":"8dde6b10-d458-4e59-b28d-cbbc6170fde2"},{"name":"/stores/:id/packs/subscriptions/:s_id","id":"6febeabb-abbb-44e6-82c6-7c563d8e0fe9","request":{"method":"DELETE","header":[{"key":"Authorization","value":"APIKEY {{api_key}}"},{"key":"Accept","value":"application/x.sl.v1+json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"{{language}}"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/public/stores/:id/packs/subscriptions/:s_id?now=0","description":"<p>Delete a pack subscription to remove a POI from a certain platform.</p>\n","urlObject":{"path":["public","stores",":id","packs","subscriptions",":s_id"],"host":["{{url}}"],"query":[{"description":{"content":"<p>1|0</p>\n","type":"text/plain"},"key":"now","value":"0"}],"variable":[{"id":"882d660e-0d45-4c65-a31c-b411bcd5dbe6","type":"string","value":"9535","key":"id"},{"id":"d4998afa-d39c-43bf-bb76-d03fdd393996","type":"string","value":"51","key":"s_id"}]}},"response":[],"_postman_id":"6febeabb-abbb-44e6-82c6-7c563d8e0fe9"}],"id":"888e57af-b6ac-4209-97b6-5024d974fc0a","description":"<p>Get information on store POIs such as electronics or fashion shops as well as craftsmen and service stores. To understand which store types are available start with /stores/types.</p>\n","event":[{"listen":"prerequest","script":{"id":"abde6f25-dda1-4110-85f2-86b68d8c7181","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"9ba31fff-0ca6-4bb5-aa7c-b64b29f8f8c6","type":"text/javascript","exec":[""]}}],"_postman_id":"888e57af-b6ac-4209-97b6-5024d974fc0a"},{"name":"/places/:id","id":"245e8775-6f41-4641-9a4c-6856fa2d7cce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"APIKEY {{api_key}}"},{"key":"Accept","value":"application/x.sl.v1+json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"{{language}}"}],"url":"{{url}}/public/places/:id","description":"<p>Get a specific place</p>\n","urlObject":{"path":["public","places",":id"],"host":["{{url}}"],"query":[{"disabled":true,"key":"display","value":"perday"},{"disabled":true,"key":"include","value":"translations"}],"variable":[{"type":"any","value":"767","key":"id"}]}},"response":[{"id":"2a0ca3b1-69c9-4a48-8883-ebd52e298811","name":"/places/:id","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"APIKEY {{api_key}}"},{"key":"Accept","value":"application/x.sl.v1+json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"{{language}}"}],"url":{"raw":"{{url}}/public/places/:id","host":["{{url}}"],"path":["public","places",":id"],"query":[{"key":"display","value":"perday","disabled":true},{"key":"include","value":"translations","disabled":true}],"variable":[{"key":"id","value":"6622","type":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Mon, 16 Dec 2019 12:25:14 GMT"},{"key":"ETag","value":"W/\"51a8d789c81206fd134d3f2683492c2f125a3314\""},{"key":"Server","value":"nginx/1.11.9"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Length","value":"2079"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 6622,\n        \"status\": 1,\n        \"corporate_color\": \"\",\n        \"pricelevel\": 0,\n        \"established\": 0,\n        \"closedate\": null,\n        \"show_address\": 1,\n        \"created_at\": \"2017-07-17T08:29:26+00:00\",\n        \"updated_at\": \"2019-10-10T07:56:01+00:00\",\n        \"name\": \"Old Wild West - Twenty\",\n        \"teaser\": \"Begeben Sie sich im Old Wild West im Twenty in Bozen auf eine unvergessliche Zeitreise!\",\n        \"description\": \"Im <strong>Old Wild West</strong> im Einkaufszentrum <strong>Twenty in Bozen</strong> haben Sie die Möglichkeit, in eine <strong>längst vergangene Epoche</strong> einzutauchen und entspannende Momente mit Freunden zu verbringen. Das freundliche Personal und die <strong>rustikale Atmosphäre</strong> werden dabei zu Ihrem Wohlgefühl beitragen. <br> <br>Probieren Sie die <strong>köstlichen Hamburger</strong> mit dem saftigen <strong>Black Angus Rindfleisch,</strong> dazu gibt's knusprige <strong>Pommes</strong>. Erleben Sie den einmaligen Geschmack von <strong>argentinischem Fleisch bester Qualität</strong> und begeben Sie sich auf eine Reise durch längst vergangene Zeiten. <br> <br>In einem <strong>einzigartigen Ambiente</strong> ist es im Old Wild West möglich, die <strong>Welt des legendären Wilden Westens</strong> selbst mitzuerleben. Die Gäste werden somit nicht nur <strong>was leckeres zum Essen</strong> finden, sondern können auch eine <strong>spannende Zeit mit Freunden</strong> verbringen. <br>\",\n        \"openinghoursnotes\": \"\",\n        \"member_of\": \"\",\n        \"address\": {\n            \"data\": {\n                \"city_id\": 12,\n                \"latitude\": \"46.48659300\",\n                \"longitude\": \"11.33650500\",\n                \"city_zip\": \"39100\",\n                \"street_number\": \"20\",\n                \"street_name\": \"Gallileistr.\",\n                \"city_name\": \"Bozen\",\n                \"city\": {\n                    \"data\": {\n                        \"id\": 12,\n                        \"county_id\": 1,\n                        \"parent_id\": null,\n                        \"type\": 1,\n                        \"zip\": \"39100\",\n                        \"name\": \"Bozen\"\n                    }\n                }\n            }\n        },\n        \"contact\": {\n            \"data\": {\n                \"phone\": \"+39 0471 203498\",\n                \"website\": \"https://www.oldwildwest.it/code/20006/Bolzano-Twenty\",\n                \"email\": \"\"\n            }\n        },\n        \"logo\": {\n            \"data\": {\n                \"public_id\": \"/logos/132964/20171116024159_132964.png\",\n                \"provider\": \"cdn\",\n                \"url\": \"https://sl-1.cdn.suedtirol.live/logos/132964/20171116024159_132964.png\",\n                \"url_alt\": {\n                    \"l\": \"https://sl-1.cdn.suedtirol.live/logos/132964/20171116024159_132964_l.png\",\n                    \"m\": \"https://sl-1.cdn.suedtirol.live/logos/132964/20171116024159_132964_m.png\",\n                    \"s\": \"https://sl-1.cdn.suedtirol.live/logos/132964/20171116024159_132964_s.png\"\n                },\n                \"type\": \"image\",\n                \"copyright\": \"\",\n                \"title\": \"\"\n            }\n        },\n        \"picture\": {\n            \"data\": {\n                \"public_id\": \"322850\",\n                \"provider\": \"sentres\",\n                \"url\": \"https://www.sentres.com/photos/322850/retina/old-wild-west-bozen-bozen-und-umgebung-suedtirol.jpg\",\n                \"url_alt\": {\n                    \"l\": \"https://www.sentres.com/photos/322850/retina/old-wild-west-bozen-bozen-und-umgebung-suedtirol.jpg\",\n                    \"m\": \"https://www.sentres.com/photos/322850/large/old-wild-west-bozen-bozen-und-umgebung-suedtirol.jpg\",\n                    \"s\": \"https://www.sentres.com/photos/322850/mobile/old-wild-west-bozen-bozen-und-umgebung-suedtirol.jpg\"\n                },\n                \"type\": \"image\",\n                \"copyright\": \"\",\n                \"title\": \"\"\n            }\n        },\n        \"media\": {\n            \"data\": [\n                {\n                    \"public_id\": \"322848\",\n                    \"provider\": \"sentres\",\n                    \"url\": \"https://www.sentres.com/photos/322848/medium/old-wild-west---rustikal---2.jpg\",\n                    \"url_alt\": {\n                        \"l\": \"https://www.sentres.com/photos/322848/medium/old-wild-west---rustikal---2.jpg\",\n                        \"m\": \"https://www.sentres.com/photos/322848/medium/old-wild-west---rustikal---2.jpg\",\n                        \"s\": \"https://www.sentres.com/photos/322848/medium/old-wild-west---rustikal---2.jpg\"\n                    },\n                    \"type\": \"image\",\n                    \"copyright\": \"\",\n                    \"title\": \"\"\n                },\n                {\n                    \"public_id\": \"322838\",\n                    \"provider\": \"sentres\",\n                    \"url\": \"https://www.sentres.com/photos/322838/medium/old-wild-west---koestlichkeiten---1.jpg\",\n                    \"url_alt\": {\n                        \"l\": \"https://www.sentres.com/photos/322838/medium/old-wild-west---koestlichkeiten---1.jpg\",\n                        \"m\": \"https://www.sentres.com/photos/322838/medium/old-wild-west---koestlichkeiten---1.jpg\",\n                        \"s\": \"https://www.sentres.com/photos/322838/medium/old-wild-west---koestlichkeiten---1.jpg\"\n                    },\n                    \"type\": \"image\",\n                    \"copyright\": \"\",\n                    \"title\": \"\"\n                },\n                {\n                    \"public_id\": \"322840\",\n                    \"provider\": \"sentres\",\n                    \"url\": \"https://www.sentres.com/photos/322840/medium/old-wild-west---koestlichkeiten---2.jpg\",\n                    \"url_alt\": {\n                        \"l\": \"https://www.sentres.com/photos/322840/medium/old-wild-west---koestlichkeiten---2.jpg\",\n                        \"m\": \"https://www.sentres.com/photos/322840/medium/old-wild-west---koestlichkeiten---2.jpg\",\n                        \"s\": \"https://www.sentres.com/photos/322840/medium/old-wild-west---koestlichkeiten---2.jpg\"\n                    },\n                    \"type\": \"image\",\n                    \"copyright\": \"\",\n                    \"title\": \"\"\n                },\n                {\n                    \"public_id\": \"322842\",\n                    \"provider\": \"sentres\",\n                    \"url\": \"https://www.sentres.com/photos/322842/medium/old-wild-west---rustikal---0.jpg\",\n                    \"url_alt\": {\n                        \"l\": \"https://www.sentres.com/photos/322842/medium/old-wild-west---rustikal---0.jpg\",\n                        \"m\": \"https://www.sentres.com/photos/322842/medium/old-wild-west---rustikal---0.jpg\",\n                        \"s\": \"https://www.sentres.com/photos/322842/medium/old-wild-west---rustikal---0.jpg\"\n                    },\n                    \"type\": \"image\",\n                    \"copyright\": \"\",\n                    \"title\": \"\"\n                },\n                {\n                    \"public_id\": \"322847\",\n                    \"provider\": \"sentres\",\n                    \"url\": \"https://www.sentres.com/photos/322847/medium/old-wild-west---rustikal---1.jpg\",\n                    \"url_alt\": {\n                        \"l\": \"https://www.sentres.com/photos/322847/medium/old-wild-west---rustikal---1.jpg\",\n                        \"m\": \"https://www.sentres.com/photos/322847/medium/old-wild-west---rustikal---1.jpg\",\n                        \"s\": \"https://www.sentres.com/photos/322847/medium/old-wild-west---rustikal---1.jpg\"\n                    },\n                    \"type\": \"image\",\n                    \"copyright\": \"\",\n                    \"title\": \"\"\n                },\n                {\n                    \"public_id\": \"322851\",\n                    \"provider\": \"sentres\",\n                    \"url\": \"https://www.sentres.com/photos/322851/retina/old-wild-west-bozen-bozen-und-umgebung-suedtirol.jpg\",\n                    \"url_alt\": {\n                        \"l\": \"https://www.sentres.com/photos/322851/retina/old-wild-west-bozen-bozen-und-umgebung-suedtirol.jpg\",\n                        \"m\": \"https://www.sentres.com/photos/322851/large/old-wild-west-bozen-bozen-und-umgebung-suedtirol.jpg\",\n                        \"s\": \"https://www.sentres.com/photos/322851/mobile/old-wild-west-bozen-bozen-und-umgebung-suedtirol.jpg\"\n                    },\n                    \"type\": \"image\",\n                    \"copyright\": \"\",\n                    \"title\": \"\"\n                },\n                {\n                    \"public_id\": \"322852\",\n                    \"provider\": \"sentres\",\n                    \"url\": \"https://www.sentres.com/photos/322852/retina/old-wild-west-bozen-bozen-und-umgebung-suedtirol.jpg\",\n                    \"url_alt\": {\n                        \"l\": \"https://www.sentres.com/photos/322852/retina/old-wild-west-bozen-bozen-und-umgebung-suedtirol.jpg\",\n                        \"m\": \"https://www.sentres.com/photos/322852/large/old-wild-west-bozen-bozen-und-umgebung-suedtirol.jpg\",\n                        \"s\": \"https://www.sentres.com/photos/322852/mobile/old-wild-west-bozen-bozen-und-umgebung-suedtirol.jpg\"\n                    },\n                    \"type\": \"image\",\n                    \"copyright\": \"\",\n                    \"title\": \"\"\n                },\n                {\n                    \"public_id\": \"322836\",\n                    \"provider\": \"sentres\",\n                    \"url\": \"https://www.sentres.com/photos/322836/medium/old-wild-west---koestlichkeiten---0.jpg\",\n                    \"url_alt\": {\n                        \"l\": \"https://www.sentres.com/photos/322836/medium/old-wild-west---koestlichkeiten---0.jpg\",\n                        \"m\": \"https://www.sentres.com/photos/322836/medium/old-wild-west---koestlichkeiten---0.jpg\",\n                        \"s\": \"https://www.sentres.com/photos/322836/medium/old-wild-west---koestlichkeiten---0.jpg\"\n                    },\n                    \"type\": \"image\",\n                    \"copyright\": \"\",\n                    \"title\": \"\"\n                }\n            ]\n        },\n        \"openinghours\": {\n            \"data\": [\n                {\n                    \"id\": 124108,\n                    \"place_id\": 6622,\n                    \"weekday\": 0,\n                    \"opentime\": \"11:30:00\",\n                    \"closetime\": \"23:00:00\"\n                },\n                {\n                    \"id\": 124097,\n                    \"place_id\": 6622,\n                    \"weekday\": 1,\n                    \"opentime\": \"12:00:00\",\n                    \"closetime\": \"15:00:00\"\n                },\n                {\n                    \"id\": 124098,\n                    \"place_id\": 6622,\n                    \"weekday\": 1,\n                    \"opentime\": \"18:30:00\",\n                    \"closetime\": \"23:00:00\"\n                },\n                {\n                    \"id\": 124099,\n                    \"place_id\": 6622,\n                    \"weekday\": 2,\n                    \"opentime\": \"12:00:00\",\n                    \"closetime\": \"15:00:00\"\n                },\n                {\n                    \"id\": 124100,\n                    \"place_id\": 6622,\n                    \"weekday\": 2,\n                    \"opentime\": \"18:30:00\",\n                    \"closetime\": \"23:00:00\"\n                },\n                {\n                    \"id\": 124101,\n                    \"place_id\": 6622,\n                    \"weekday\": 3,\n                    \"opentime\": \"12:00:00\",\n                    \"closetime\": \"15:00:00\"\n                },\n                {\n                    \"id\": 124102,\n                    \"place_id\": 6622,\n                    \"weekday\": 3,\n                    \"opentime\": \"18:30:00\",\n                    \"closetime\": \"23:00:00\"\n                },\n                {\n                    \"id\": 124103,\n                    \"place_id\": 6622,\n                    \"weekday\": 4,\n                    \"opentime\": \"12:00:00\",\n                    \"closetime\": \"15:00:00\"\n                },\n                {\n                    \"id\": 124104,\n                    \"place_id\": 6622,\n                    \"weekday\": 4,\n                    \"opentime\": \"18:30:00\",\n                    \"closetime\": \"23:00:00\"\n                },\n                {\n                    \"id\": 124105,\n                    \"place_id\": 6622,\n                    \"weekday\": 5,\n                    \"opentime\": \"12:00:00\",\n                    \"closetime\": \"15:00:00\"\n                },\n                {\n                    \"id\": 124106,\n                    \"place_id\": 6622,\n                    \"weekday\": 5,\n                    \"opentime\": \"18:30:00\",\n                    \"closetime\": \"00:00:00\"\n                },\n                {\n                    \"id\": 124107,\n                    \"place_id\": 6622,\n                    \"weekday\": 6,\n                    \"opentime\": \"11:30:00\",\n                    \"closetime\": \"00:00:00\"\n                }\n            ]\n        },\n        \"pack_subscriptions\": {\n            \"data\": [\n                {\n                    \"id\": 9024,\n                    \"pack_id\": 23,\n                    \"pack_plan_id\": 57,\n                    \"status\": 1,\n                    \"current_period_start\": \"2019-07-24T10:00:00+00:00\",\n                    \"current_period_end\": \"2020-07-24T10:00:00+00:00\",\n                    \"deactivate_at\": null,\n                    \"pack\": {\n                        \"data\": {\n                            \"id\": 23,\n                            \"alias\": \"place-expert-gastronomy-c1\",\n                            \"platform\": {\n                                \"data\": {\n                                    \"id\": 1,\n                                    \"alias\": \"sl\"\n                                }\n                            }\n                        }\n                    },\n                    \"plan\": {\n                        \"data\": {\n                            \"id\": 57,\n                            \"planname\": \"place-expert-gastronomy\",\n                            \"name\": \"jährlich\"\n                        }\n                    }\n                },\n                {\n                    \"id\": 11081,\n                    \"pack_id\": 23,\n                    \"pack_plan_id\": 57,\n                    \"status\": 1,\n                    \"current_period_start\": \"2019-07-24T10:00:00+00:00\",\n                    \"current_period_end\": \"2020-07-24T10:00:00+00:00\",\n                    \"deactivate_at\": null,\n                    \"pack\": {\n                        \"data\": {\n                            \"id\": 23,\n                            \"alias\": \"place-expert-gastronomy-c1\",\n                            \"platform\": {\n                                \"data\": {\n                                    \"id\": 1,\n                                    \"alias\": \"sl\"\n                                }\n                            }\n                        }\n                    },\n                    \"plan\": {\n                        \"data\": {\n                            \"id\": 57,\n                            \"planname\": \"place-expert-gastronomy\",\n                            \"name\": \"jährlich\"\n                        }\n                    }\n                }\n            ]\n        },\n        \"properties\": {\n            \"data\": [\n                {\n                    \"id\": 114,\n                    \"unit\": \"CHECK\",\n                    \"name\": \"Apple Pay\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"id\": 112,\n                    \"unit\": \"CHECK\",\n                    \"name\": \"Bankomat/Maestro\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"id\": 111,\n                    \"unit\": \"CHECK\",\n                    \"name\": \"Bar\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"id\": 211,\n                    \"unit\": \"CHECK\",\n                    \"name\": \"Burger\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"id\": 332,\n                    \"unit\": \"CHECK\",\n                    \"name\": \"Desserts\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"id\": 110,\n                    \"unit\": \"CHECK\",\n                    \"name\": \"EC-Karte\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"id\": 235,\n                    \"unit\": \"CHECK\",\n                    \"name\": \"Grill\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"id\": 218,\n                    \"unit\": \"CHECK\",\n                    \"name\": \"Internationale Küche\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"id\": 215,\n                    \"unit\": \"CHECK\",\n                    \"name\": \"Kindergerichte\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"id\": 247,\n                    \"unit\": \"CHECK\",\n                    \"name\": \"Kreditkarten\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"id\": 108,\n                    \"unit\": \"CHECK\",\n                    \"name\": \"Mastercard\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"id\": 233,\n                    \"unit\": \"CHECK\",\n                    \"name\": \"Mexikanisch\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"id\": 327,\n                    \"unit\": \"CHECK\",\n                    \"name\": \"Mit Lieferservice\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"id\": 236,\n                    \"unit\": \"CHECK\",\n                    \"name\": \"Parkplatz\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"id\": 141,\n                    \"unit\": \"PRICECLASS\",\n                    \"name\": \"Preiskategorie\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"id\": 240,\n                    \"unit\": \"CHECK\",\n                    \"name\": \"Regionale Produkte\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"id\": 331,\n                    \"unit\": \"CHECK\",\n                    \"name\": \"Salate\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"id\": 257,\n                    \"unit\": \"CHECK\",\n                    \"name\": \"Snacks/Imbiss\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"id\": 14034,\n                    \"unit\": \"CHECK\",\n                    \"name\": \"Takeaway\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"id\": 107,\n                    \"unit\": \"CHECK\",\n                    \"name\": \"Visa \",\n                    \"value\": \"1\"\n                },\n                {\n                    \"id\": 12004,\n                    \"unit\": \"CHECK\",\n                    \"name\": \"Vorspeisen\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"id\": 246,\n                    \"unit\": \"CHECK\",\n                    \"name\": \"WLAN / Wifi\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"id\": 224,\n                    \"unit\": \"CHECK\",\n                    \"name\": \"Wildgerichte\",\n                    \"value\": \"1\"\n                }\n            ]\n        },\n        \"types\": {\n            \"data\": [\n                {\n                    \"id\": 10154,\n                    \"name\": \"Restaurant\"\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"245e8775-6f41-4641-9a4c-6856fa2d7cce"}],"id":"0c358333-d07b-4ec5-b6c5-72c7b9b60a53","description":"<p>With the Places API you get access to the largest database of POIs in South Tyrol and its surrounding regions. </p>\n<p>Right now you can already use our endpoints for <em>accommodations</em> and <em>stores</em>. </p>\n<p><strong>At a future point many more types of POIs like restaurants and sights will be added to the SL API.</strong></p>\n<h2 id=\"your-subscription\">Your subscription</h2>\n<p>There are two options to access the POI data that depend on your chosen subscription.</p>\n<h4 id=\"basic\">Basic</h4>\n<p>Get access to the basic information of all POIs. </p>\n<h4 id=\"premium\">Premium</h4>\n<p>Get access to the all information of all POIs. With the Premium POI API you can also request all languages for an event at once as well as information on subscription and campaign data.</p>\n<p><strong>Note</strong> The premium API is only available for selected partners.</p>\n","event":[{"listen":"prerequest","script":{"id":"c05317fa-15d8-40e0-b2c5-d03b6feb5cdf","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"c9fd1d43-8bba-46e9-8fec-be2889f73104","type":"text/javascript","exec":[""]}}],"_postman_id":"0c358333-d07b-4ec5-b6c5-72c7b9b60a53"},{"name":"Search API","item":[{"name":"/search","id":"d32120e3-f5f9-49ec-9f00-91af113046d7","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{}},"request":{"method":"GET","header":[{"key":"Authorization","value":"APIKEY {{api_key}}"},{"key":"Accept","value":"application/x.sl.v1+json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"{{language}}"}],"url":"{{url}}/public/search?class=50&cc=0&l=1&size=50&order=random&filter[jobads-employmenttype]=14976;&q=koch","description":"<p>Search the entire SL catalogue for any object available.</p>\n<h2 id=\"request\">Request</h2>\n<p>Possible parameters:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>page</td>\n<td>Indicates the page of events. Every page contains 50 items.</td>\n</tr>\n<tr>\n<td>size</td>\n<td>Use the <em>size</em> parameter to get a bigger number of items</td>\n</tr>\n<tr>\n<td>include</td>\n<td>Use <em>details</em> to include all details of each event already in this call (alternatively use /events/:id). Use <em>translations</em> to include all translations at once.</td>\n</tr>\n<tr>\n<td>filter</td>\n<td>Possible filters: <em>county</em>, <em>region</em>, <em>city</em>, <em>datefrom</em>, <em>dateto</em>.</td>\n</tr>\n<tr>\n<td>class</td>\n<td>Filter the results based on a class, 1 = accommodations, 2 = sights, 3 = stores, 4 = activities, 5 = tours, 7 = events, 10 = gastronomy</td>\n</tr>\n<tr>\n<td>q</td>\n<td>Query string to search for</td>\n</tr>\n<tr>\n<td>cc</td>\n<td>Includes class count  <br />Possible values: 0 or 1</td>\n</tr>\n<tr>\n<td>l</td>\n<td>Enables or disables impression log.  <br />Possible values: 0 or 1</td>\n</tr>\n</tbody>\n</table>\n</div><p>Examples</p>\n<ul>\n<li>?page=2</li>\n<li>?q=drei zinnen</li>\n<li>?filter[region]=1003</li>\n<li>?filter[region]=1003,1010</li>\n<li>?filter[city]=1000</li>\n<li>?filter[county]=1</li>\n<li>?filter[city]=1000&amp;filter[county]=1</li>\n<li>?filter[datefrom]=2017-08-01T00:00:00+02:00</li>\n<li>?filter[dateto]=2017-08-02T00:00:00+02:00</li>\n</ul>\n<p>To understand which region, city or county IDs you can use, please refer to one of the <em>Geopgraphy</em> calls.</p>\n<h2 id=\"response\">Response</h2>\n<p>TBD</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>meta</td>\n<td>Meta data of the call</td>\n<td>Object</td>\n</tr>\n<tr>\n<td>pagination</td>\n<td>Pagination data of the result</td>\n<td>Object</td>\n</tr>\n<tr>\n<td>total</td>\n<td>Overall number of found events</td>\n<td>int</td>\n</tr>\n<tr>\n<td>count</td>\n<td>Number of events on the current page.</td>\n<td>int</td>\n</tr>\n<tr>\n<td>per_page</td>\n<td>Number of max. events on eachpage</td>\n<td>int</td>\n</tr>\n<tr>\n<td>current_page</td>\n<td>Current page according to <em>page</em> parameter. If not specified, page 1 will be returned.</td>\n<td>int</td>\n</tr>\n<tr>\n<td>total_pages</td>\n<td>Total number of pages for the result.</td>\n<td>int</td>\n</tr>\n</tbody>\n</table>\n</div><p>Possible outcomes:</p>\n<ul>\n<li>200</li>\n<li>401</li>\n</ul>\n","urlObject":{"path":["public","search"],"host":["{{url}}"],"query":[{"disabled":true,"key":"size","value":"1"},{"disabled":true,"key":"filter[sectortype]","value":"10172"},{"disabled":true,"key":"radius","value":"1"},{"disabled":true,"key":"position","value":"46.89890000,11.43180000"},{"disabled":true,"key":"filter[eventtype]","value":"20002"},{"disabled":true,"key":"filter[tourtype]","value":"60101"},{"disabled":true,"key":"","value":""},{"disabled":true,"key":"q","value":"bozen"},{"key":"class","value":"50"},{"key":"cc","value":"0"},{"key":"l","value":"1"},{"key":"size","value":"50"},{"key":"order","value":"random"},{"key":"filter[jobads-employmenttype]","value":"14976;"},{"key":"q","value":"koch"}],"variable":[]}},"response":[{"id":"1f3a693e-d368-49f4-abf7-c7107edb4f49","name":"A list of events in a specific region and time frame (one day)","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"APIKEY {{api_key}}"},{"key":"Accept","value":"application/x.sl.v1+json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"{{language}}"}],"url":{"raw":"{{url}}/public/search?q=drei%zinnen&class=5&size=1","host":["{{url}}"],"path":["public","search"],"query":[{"key":"q","value":"drei%zinnen"},{"key":"class","value":"5"},{"key":"size","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 7091,\n            \"class\": 5,\n            \"account_id\": 1,\n            \"status\": 1,\n            \"title\": \"Von Toblach zu den Drei Zinnen\",\n            \"teaser\": \"Bis 1962 verband eine Eisenbahnlinie Toblach mit Cortina. Eine perfekte Ausgangssituation für eine ruhige Radtour mit Überraschungseffekt: dem Ausblick auf das Wahrzeichen der Dolomiten, die Drei Zinnen!\",\n            \"difficulty\": 2,\n            \"duration\": \"03:30:00\",\n            \"distance\": 22620,\n            \"rating\": 0,\n            \"rating_count\": 0,\n            \"is_rated\": 0,\n            \"in_guidebook\": 0,\n            \"is_highlighted\": 0,\n            \"is_topsearch\": 0,\n            \"tracking_hash\": \"\",\n            \"url\": \"von-toblach-zu-den-drei-zinnen\",\n            \"langavl\": 1,\n            \"address\": {\n                \"data\": {\n                    \"id\": 16126,\n                    \"country_id\": 95,\n                    \"city_id\": 1004,\n                    \"latitude\": \"46.72454000\",\n                    \"longitude\": \"12.22538000\",\n                    \"city_zip\": \"39034\",\n                    \"street_number\": \"\",\n                    \"street_name\": \"\",\n                    \"city_name\": \"Toblach\"\n                }\n            },\n            \"picture\": {\n                \"data\": {\n                    \"id\": 167028,\n                    \"account_id\": 1,\n                    \"platform_id\": null,\n                    \"origin\": \"partner\",\n                    \"public_id\": \"97834\",\n                    \"context\": \"picture\",\n                    \"provider\": \"sentres\",\n                    \"version\": \"\",\n                    \"url\": \"https://www.sentres.com/photos/97834/retina/von-toblach-zu-den-drei-zinnen-radtour-toblach-drei-zinnen-dolomiten-suedtirol.jpg\",\n                    \"url_alt\": {\n                        \"l\": \"https://www.sentres.com/photos/97834/retina/von-toblach-zu-den-drei-zinnen-radtour-toblach-drei-zinnen-dolomiten-suedtirol.jpg\",\n                        \"m\": \"https://www.sentres.com/photos/97834/large/von-toblach-zu-den-drei-zinnen-radtour-toblach-drei-zinnen-dolomiten-suedtirol.jpg\",\n                        \"s\": \"https://www.sentres.com/photos/97834/mobile/von-toblach-zu-den-drei-zinnen-radtour-toblach-drei-zinnen-dolomiten-suedtirol.jpg\"\n                    },\n                    \"tags\": \"\",\n                    \"type\": \"image\",\n                    \"format\": \"jpg\",\n                    \"width\": 0,\n                    \"height\": 0,\n                    \"bytes\": 0,\n                    \"main_color\": {\n                        \"red\": null,\n                        \"green\": null,\n                        \"blue\": null\n                    },\n                    \"latitude\": \"0.00000000\",\n                    \"longitude\": \"0.00000000\",\n                    \"copyright\": \"\",\n                    \"expires_at\": null,\n                    \"created_by\": 3,\n                    \"updated_by\": 3,\n                    \"created_at\": \"2017-10-27T14:47:55+00:00\",\n                    \"updated_at\": \"2017-11-10T08:37:25+00:00\",\n                    \"langavl\": 1,\n                    \"title\": \"Vom Dürrensee aus gut zu sehen, die Drei Zinnen\",\n                    \"keywords\": \"\"\n                }\n            },\n            \"campaign_subscriptions\": {\n                \"data\": []\n            },\n            \"geopositions\": {\n                \"data\": [\n                    {\n                        \"distance\": null,\n                        \"latitude\": 46.72454,\n                        \"longitude\": 12.22538\n                    }\n                ]\n            },\n            \"types\": {\n                \"data\": [\n                    {\n                        \"id\": 60103,\n                        \"slug\": \"tour-bike\",\n                        \"schema\": \"\",\n                        \"name\": \"Radtour\",\n                        \"name_plural\": \"Radtouren\",\n                        \"url\": \"radtour\"\n                    }\n                ]\n            },\n            \"__cached_at\": \"2019-04-25T08:55:07+00:00\"\n        }\n    ],\n    \"meta\": {\n        \"topsearch\": {\n            \"data\": []\n        },\n        \"pagination\": {\n            \"total\": 19,\n            \"count\": 1,\n            \"per_page\": \"1\",\n            \"current_page\": 1,\n            \"total_pages\": 19,\n            \"links\": []\n        },\n        \"searchtype\": \"exact\",\n        \"class\": 5,\n        \"count\": [\n            {\n                \"class\": 1,\n                \"count\": 9,\n                \"score\": 15.297657012939453\n            },\n            {\n                \"class\": 7,\n                \"count\": 10,\n                \"score\": 15.297657012939453\n            },\n            {\n                \"class\": 2,\n                \"count\": 4,\n                \"score\": 11.47324275970459\n            },\n            {\n                \"class\": 3,\n                \"count\": 4,\n                \"score\": 11.47324275970459\n            },\n            {\n                \"class\": 5,\n                \"count\": 19,\n                \"score\": 11.47324275970459\n            },\n            {\n                \"class\": 9,\n                \"count\": 2,\n                \"score\": 3.8244142532348633\n            },\n            {\n                \"class\": 10,\n                \"count\": 1,\n                \"score\": 3.8244142532348633\n            }\n        ],\n        \"filters\": [\n            {\n                \"id\": \"region\",\n                \"type\": \"checkbox\",\n                \"name\": \"Region\",\n                \"items\": [\n                    {\n                        \"label\": \"Dolomiten\",\n                        \"county_id\": 1,\n                        \"value\": 1024,\n                        \"count\": 17\n                    },\n                    {\n                        \"label\": \"Eisacktal\",\n                        \"county_id\": 1,\n                        \"value\": 1004,\n                        \"count\": 1\n                    },\n                    {\n                        \"label\": \"Gadertal\",\n                        \"county_id\": 1,\n                        \"value\": 1001,\n                        \"count\": 1\n                    },\n                    {\n                        \"label\": \"Hochpustertal\",\n                        \"county_id\": 1,\n                        \"value\": 1005,\n                        \"count\": 16\n                    },\n                    {\n                        \"label\": \"Tauferer Ahrntal\",\n                        \"county_id\": 1,\n                        \"value\": 1019,\n                        \"count\": 1\n                    }\n                ]\n            },\n            {\n                \"id\": \"city\",\n                \"type\": \"checkbox\",\n                \"name\": \"Ort\",\n                \"items\": [\n                    {\n                        \"label\": \"Innichen\",\n                        \"county_id\": 1,\n                        \"value\": 41,\n                        \"count\": 1\n                    },\n                    {\n                        \"label\": \"La Val - Wengen\",\n                        \"county_id\": 1,\n                        \"value\": 112,\n                        \"count\": 1\n                    },\n                    {\n                        \"label\": \"Mühlbach\",\n                        \"county_id\": 1,\n                        \"value\": 80,\n                        \"count\": 1\n                    },\n                    {\n                        \"label\": \"Mühlwald\",\n                        \"county_id\": 1,\n                        \"value\": 84,\n                        \"count\": 1\n                    },\n                    {\n                        \"label\": \"Prags\",\n                        \"county_id\": 1,\n                        \"value\": 9,\n                        \"count\": 1\n                    },\n                    {\n                        \"label\": \"Sexten\",\n                        \"county_id\": 1,\n                        \"value\": 126,\n                        \"count\": 8\n                    },\n                    {\n                        \"label\": \"Toblach\",\n                        \"county_id\": 1,\n                        \"value\": 1004,\n                        \"count\": 6\n                    }\n                ]\n            },\n            {\n                \"id\": \"tourtype\",\n                \"type\": \"checkbox\",\n                \"name\": \"Kategorie\",\n                \"items\": [\n                    {\n                        \"label\": \"Laufen\",\n                        \"value\": 60006,\n                        \"count\": 1\n                    },\n                    {\n                        \"label\": \"Radtouren\",\n                        \"value\": 60001,\n                        \"count\": 5\n                    },\n                    {\n                        \"label\": \"Wandertouren\",\n                        \"value\": 60002,\n                        \"count\": 9\n                    },\n                    {\n                        \"label\": \"Wintertouren\",\n                        \"value\": 60004,\n                        \"count\": 4\n                    }\n                ]\n            },\n            {\n                \"id\": \"difficulty\",\n                \"type\": \"checkbox\",\n                \"name\": \"Schwierigkeit\",\n                \"items\": [\n                    {\n                        \"value\": \"1\",\n                        \"count\": 3\n                    },\n                    {\n                        \"value\": \"2\",\n                        \"count\": 8\n                    },\n                    {\n                        \"value\": \"3\",\n                        \"count\": 8\n                    }\n                ]\n            },\n            {\n                \"id\": \"duration\",\n                \"type\": \"checkbox\",\n                \"name\": \"Dauer\",\n                \"items\": [\n                    {\n                        \"value\": \"2\",\n                        \"count\": 4\n                    },\n                    {\n                        \"value\": \"24\",\n                        \"count\": 1\n                    },\n                    {\n                        \"value\": \"4\",\n                        \"count\": 5\n                    },\n                    {\n                        \"value\": \"8\",\n                        \"count\": 8\n                    }\n                ]\n            },\n            {\n                \"id\": \"months\",\n                \"type\": \"checkbox\",\n                \"name\": \"Empfohlene Monate\",\n                \"items\": [\n                    {\n                        \"value\": 1,\n                        \"count\": 3\n                    },\n                    {\n                        \"value\": 2,\n                        \"count\": 3\n                    },\n                    {\n                        \"value\": 3,\n                        \"count\": 2\n                    },\n                    {\n                        \"value\": 4,\n                        \"count\": 1\n                    },\n                    {\n                        \"value\": 5,\n                        \"count\": 4\n                    },\n                    {\n                        \"value\": 6,\n                        \"count\": 12\n                    },\n                    {\n                        \"value\": 7,\n                        \"count\": 15\n                    },\n                    {\n                        \"value\": 8,\n                        \"count\": 15\n                    },\n                    {\n                        \"value\": 9,\n                        \"count\": 15\n                    },\n                    {\n                        \"value\": 10,\n                        \"count\": 10\n                    },\n                    {\n                        \"value\": 12,\n                        \"count\": 2\n                    }\n                ]\n            },\n            {\n                \"id\": \"accessibility\",\n                \"type\": \"checkbox\",\n                \"name\": \"Geeignet für\",\n                \"items\": [\n                    {\n                        \"label\": \"Kinderwagen\",\n                        \"value\": 130,\n                        \"count\": 1\n                    }\n                ]\n            }\n        ]\n    }\n}"}],"_postman_id":"d32120e3-f5f9-49ec-9f00-91af113046d7"}],"id":"0faf1ce9-494c-4141-acdd-6df9ee2d2168","description":"<h2 id=\"search-api\">Search API</h2>\n<p>Search the entire SL API for any object available.</p>\n<p><strong>Note</strong> The Search API is only available for selected partners.</p>\n","event":[{"listen":"prerequest","script":{"id":"f9a8cdea-2c5f-49d8-9c59-ef712d59ec08","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"9681d4a5-a04d-4144-9119-220193d59aff","type":"text/javascript","exec":[""]}}],"_postman_id":"0faf1ce9-494c-4141-acdd-6df9ee2d2168"},{"name":"Tours API","item":[{"name":"/tours","id":"ff61dff7-5127-4766-b55f-d70a87ed097f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"APIKEY {{api_key}}"},{"key":"Accept","value":"application/x.sl.v1+json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"{{language}}"}],"url":"{{url}}/public/tours","description":"<p>Get a specific tour</p>\n","urlObject":{"path":["public","tours"],"host":["{{url}}"],"query":[{"disabled":true,"key":"display","value":"perday"},{"disabled":true,"key":"include","value":"translations"}],"variable":[]}},"response":[{"id":"a75df458-5d40-499b-8d23-ca914e2606f2","name":"Get a single event","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"APIKEY {{api_key}}"},{"key":"Accept","value":"application/x.sl.v1+json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"{{language}}"}],"url":{"raw":"{{url}}/public/events/75300?include=translations","host":["{{url}}"],"path":["public","events","75300"],"query":[{"key":"include","value":"translations"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"7941","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sat, 03 Feb 2018 09:48:47 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"Apache/2.2.16","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 75300,\n        \"is_eventserie\": 0,\n        \"eventserie_id\": null,\n        \"free_entry\": 1,\n        \"price\": null,\n        \"age_from\": 0,\n        \"age_to\": 0,\n        \"created_at\": \"2017-10-22T18:26:48+02:00\",\n        \"updated_at\": \"2017-10-22T18:26:48+02:00\",\n        \"organizer\": {\n            \"data\": {\n                \"address\": {\n                    \"data\": null\n                },\n                \"logo\": {\n                    \"data\": null\n                },\n                \"contact\": {\n                    \"data\": null\n                },\n                \"translations\": {\n                    \"de\": {\n                        \"name\": \"Victoria Dejaco\"\n                    },\n                    \"it\": {\n                        \"name\": \"Victoria Dejaco\"\n                    }\n                }\n            }\n        },\n        \"translations\": {\n            \"de\": {\n                \"title\": \"Bunker Now 3, Tarnrasen - Catrin Bolt\",\n                \"teaser\": \"Der Bunker 15 an der Autobahnausfahrt Süd/Ss12 gegenüber der Eni Tankstelle wird von Künstlerin Catrin Bolt mit Tarnmustern umgestaltet.\",\n                \"deeplink\": \"https://www.kultur.bz.it/index.php?mode=event&evtID=75300\",\n                \"description\": \"In Südtirol befinden sich über 450 Bunker, militärische Anlagen und Wehrbauten aus dem Zweiten Weltkrieg, die Italien gegen Deutschland, den eigenen Alliierten, schützen sollten. Dieser Krieg hat sich, durch die schwerwiegenderen Konsequenzen für die lokale Bevölkerung, tiefer in die Geschichte der Region eingeschrieben als der erste. Verständlich, dass die Öffentlichkeit mit verhaltener Begeisterung und offener Ablehnung diesem Erbe gegenübersteht.<br />Doch diese Güter in Vergessenheit geraten zu lassen, sie auszulöschen oder aus den Augen zu wünschen läuft Gefahr Geschichte zu beschönigen. Wir sehen uns vor einem ähnlichen Dilemma wie die Vereinigten Staaten mit den Denkmälern der Konföderierten. Es muss Wege geben, die abscheulichsten Momente der Geschichte in Erinnerung zu behalten, ohne sie zu verleugnen oder zu glorifizieren. Das passiert durch Kontextualisierung, Bildung und kritische Auseinandersetzung um Bewusstsein zu schaffen.<br />Die Kuratorin Victoria Dejaco wurde vom Verein Kasematte Bunkerforum eingeladen, zu diesem Thema einen Beitrag zu leisten. Dafür wurde als Ort der Bunker 15 an der Autobahnausfahrt Süd in Bozen wurde für eine Intervention der Künstlerin Catrin Bolt bereits 2016 ausgewählt. Die Künstlerin realisierte bereits Mahnmale in Graz (2013) und Wien (2914) zur jüdischen Geschichte dieser Städte im Zweiten Weltkrieg und war prädestiniert für diesen Auftrag. 2015 gewann sie den Otto Maurer Preis, den renommiertesten Preis für junge Kunst in Österreich.<br />Der Bunker 15 an der Autobahnausfahrt Süd bei der SS12 wurde in den 90er Jahren im Zuge der MeBo Bauarbeiten unter einem Erdhügel begraben. Er ist Teil von einem Gesamtgefüge. Sein Zwillingsbau ist noch unversehrt und freistehend einige Hundert Meter weiter östlich. Passend zum Umstand des Bunkers, der nun verschüttet ist, hat sich Catrin Bolt in ihrem Projekt mit Verstecken und Camouflage befasst. Das gesamte Areal wird mit Camouflagemustern aus Rasenmarkierungsfarben gestaltet werden, um die Blicke der Vorbeifahrenden auf sich zu ziehen. Die militärische Funktion des Versteckens wird somit ins Gegenteil verkehrt. Geplant ist den Hügel drei Mal umzugestalten in den nächsten Monaten. Einmal mit dem üblichen militärischen Camouflagemuster, einmal mit dem Dazzle-Effekt, einem Muster, das die Form von Objekten irritierend dekonstruiert und ein Muster der Tech-Ära: dem \\\"Auspixeln\\\" wie es von Google Maps benutzt wird um (militärische) Territorien unerkennbar zu machen. Die Intervention wird das bedeutendste Werk von Land Art, das in Südtirol je umgesetzt wurde.<br />\",\n                \"sale_description\": \"\",\n                \"sale_link\": \"\"\n            },\n            \"it\": {\n                \"title\": \"Bunker Now 3, Tarnrasen - Catrin Bolt\",\n                \"teaser\": \"Der Bunker 15 an der Autobahnausfahrt Süd/Ss12 gegenüber der Eni Tankstelle wird von Künstlerin Catrin Bolt mit Tarnmustern umgestaltet.\",\n                \"deeplink\": \"https://www.cultura.bz.it/index.php?mode=event&evtID=75300\",\n                \"description\": \"In Südtirol befinden sich über 450 Bunker, militärische Anlagen und Wehrbauten aus dem Zweiten Weltkrieg, die Italien gegen Deutschland, den eigenen Alliierten, schützen sollten. Dieser Krieg hat sich, durch die schwerwiegenderen Konsequenzen für die lokale Bevölkerung, tiefer in die Geschichte der Region eingeschrieben als der erste. Verständlich, dass die Öffentlichkeit mit verhaltener Begeisterung und offener Ablehnung diesem Erbe gegenübersteht.<br />Doch diese Güter in Vergessenheit geraten zu lassen, sie auszulöschen oder aus den Augen zu wünschen läuft Gefahr Geschichte zu beschönigen. Wir sehen uns vor einem ähnlichen Dilemma wie die Vereinigten Staaten mit den Denkmälern der Konföderierten. Es muss Wege geben, die abscheulichsten Momente der Geschichte in Erinnerung zu behalten, ohne sie zu verleugnen oder zu glorifizieren. Das passiert durch Kontextualisierung, Bildung und kritische Auseinandersetzung um Bewusstsein zu schaffen.<br />Die Kuratorin Victoria Dejaco wurde vom Verein Kasematte Bunkerforum eingeladen, zu diesem Thema einen Beitrag zu leisten. Dafür wurde als Ort der Bunker 15 an der Autobahnausfahrt Süd in Bozen wurde für eine Intervention der Künstlerin Catrin Bolt bereits 2016 ausgewählt. Die Künstlerin realisierte bereits Mahnmale in Graz (2013) und Wien (2914) zur jüdischen Geschichte dieser Städte im Zweiten Weltkrieg und war prädestiniert für diesen Auftrag. 2015 gewann sie den Otto Maurer Preis, den renommiertesten Preis für junge Kunst in Österreich.<br />Der Bunker 15 an der Autobahnausfahrt Süd bei der SS12 wurde in den 90er Jahren im Zuge der MeBo Bauarbeiten unter einem Erdhügel begraben. Er ist Teil von einem Gesamtgefüge. Sein Zwillingsbau ist noch unversehrt und freistehend einige Hundert Meter weiter östlich. Passend zum Umstand des Bunkers, der nun verschüttet ist, hat sich Catrin Bolt in ihrem Projekt mit Verstecken und Camouflage befasst. Das gesamte Areal wird mit Camouflagemustern aus Rasenmarkierungsfarben gestaltet werden, um die Blicke der Vorbeifahrenden auf sich zu ziehen. Die militärische Funktion des Versteckens wird somit ins Gegenteil verkehrt. Geplant ist den Hügel drei Mal umzugestalten in den nächsten Monaten. Einmal mit dem üblichen militärischen Camouflagemuster, einmal mit dem Dazzle-Effekt, einem Muster, das die Form von Objekten irritierend dekonstruiert und ein Muster der Tech-Ära: dem \\\"Auspixeln\\\" wie es von Google Maps benutzt wird um (militärische) Territorien unerkennbar zu machen. Die Intervention wird das bedeutendste Werk von Land Art, das in Südtirol je umgesetzt wurde.<br />\",\n                \"sale_description\": \"\",\n                \"sale_link\": \"\"\n            }\n        },\n        \"deadline\": null,\n        \"sale_hotline\": \"\",\n        \"types\": {\n            \"data\": [\n                {\n                    \"id\": 24,\n                    \"translations\": {\n                        \"de\": {\n                            \"name\": \"Ausstellungen\"\n                        },\n                        \"it\": {\n                            \"name\": \"Mostre\"\n                        }\n                    }\n                }\n            ]\n        },\n        \"picture\": {\n            \"data\": {\n                \"file\": \"https://img.kultur.bz.it/img.php?id=75300&img=imgUafqLr.jpg\",\n                \"type\": \"image\",\n                \"copyright\": \"Google\",\n                \"provider\": \"kbz\",\n                \"public_id\": \"85337e62b32c62faa6ccaa61f3fe5367\",\n                \"url_alt\": {\n                    \"l\": \"https://img.kultur.bz.it/img.php?id=75300&img=imgUafqLr.jpg&size=1300x0x0\",\n                    \"m\": \"https://img.kultur.bz.it/img.php?id=75300&img=imgUafqLr.jpg&size=900x0x0\",\n                    \"s\": \"https://img.kultur.bz.it/img.php?id=75300&img=imgUafqLr.jpg&size=500x0x0\"\n                },\n                \"translations\": {\n                    \"de\": {\n                        \"title\": \"Lageplan Bunker\"\n                    },\n                    \"it\": {\n                        \"title\": \"Lageplan Bunker\"\n                    }\n                }\n            }\n        },\n        \"media\": {\n            \"data\": []\n        },\n        \"targetgroups\": {\n            \"data\": []\n        },\n        \"dategroups\": {\n            \"data\": [\n                {\n                    \"place_id\": 13644,\n                    \"translations\": {\n                        \"de\": {\n                            \"description\": \"Art in public space, accesso illimitato, freier Zutritt zu allen Tageszeiten\"\n                        },\n                        \"it\": {\n                            \"description\": \"Art in public space, accesso illimitato, freier Zutritt zu allen Tageszeiten\"\n                        }\n                    },\n                    \"times\": {\n                        \"data\": [\n                            {\n                                \"starttime\": \"00:00:00\",\n                                \"endtime\": null\n                            }\n                        ]\n                    },\n                    \"dates\": [\n                        \"2017-10-28\",\n                        \"2017-10-29\",\n                        \"2017-10-30\",\n                        \"2017-10-31\",\n                        \"2017-11-01\",\n                        \"2017-11-02\",\n                        \"2017-11-03\",\n                        \"2017-11-04\",\n                        \"2017-11-05\",\n                        \"2017-11-06\",\n                        \"2017-11-07\",\n                        \"2017-11-08\",\n                        \"2017-11-09\",\n                        \"2017-11-10\",\n                        \"2017-11-11\",\n                        \"2017-11-12\",\n                        \"2017-11-13\",\n                        \"2017-11-14\",\n                        \"2017-11-15\",\n                        \"2017-11-16\",\n                        \"2017-11-17\",\n                        \"2017-11-18\",\n                        \"2017-11-19\",\n                        \"2017-11-20\",\n                        \"2017-11-21\",\n                        \"2017-11-22\",\n                        \"2017-11-23\",\n                        \"2017-11-24\",\n                        \"2017-11-25\",\n                        \"2017-11-26\",\n                        \"2017-11-27\",\n                        \"2017-11-28\",\n                        \"2017-11-29\",\n                        \"2017-11-30\",\n                        \"2017-12-01\",\n                        \"2017-12-02\",\n                        \"2017-12-03\",\n                        \"2017-12-04\",\n                        \"2017-12-05\",\n                        \"2017-12-06\",\n                        \"2017-12-07\",\n                        \"2017-12-08\",\n                        \"2017-12-09\",\n                        \"2017-12-10\",\n                        \"2017-12-11\",\n                        \"2017-12-12\",\n                        \"2017-12-13\",\n                        \"2017-12-14\",\n                        \"2017-12-15\",\n                        \"2017-12-16\",\n                        \"2017-12-17\",\n                        \"2017-12-18\",\n                        \"2017-12-19\",\n                        \"2017-12-20\",\n                        \"2017-12-21\",\n                        \"2017-12-22\",\n                        \"2017-12-23\",\n                        \"2017-12-24\",\n                        \"2017-12-25\",\n                        \"2017-12-26\",\n                        \"2017-12-27\",\n                        \"2017-12-28\",\n                        \"2017-12-29\",\n                        \"2017-12-30\",\n                        \"2017-12-31\",\n                        \"2018-01-01\",\n                        \"2018-01-02\",\n                        \"2018-01-03\",\n                        \"2018-01-04\",\n                        \"2018-01-05\",\n                        \"2018-01-06\",\n                        \"2018-01-07\",\n                        \"2018-01-08\",\n                        \"2018-01-09\",\n                        \"2018-01-10\",\n                        \"2018-01-11\",\n                        \"2018-01-12\",\n                        \"2018-01-13\",\n                        \"2018-01-14\",\n                        \"2018-01-15\",\n                        \"2018-01-16\",\n                        \"2018-01-17\",\n                        \"2018-01-18\",\n                        \"2018-01-19\",\n                        \"2018-01-20\",\n                        \"2018-01-21\",\n                        \"2018-01-22\",\n                        \"2018-01-23\",\n                        \"2018-01-24\",\n                        \"2018-01-25\",\n                        \"2018-01-26\",\n                        \"2018-01-27\",\n                        \"2018-01-28\",\n                        \"2018-01-29\",\n                        \"2018-01-30\",\n                        \"2018-01-31\",\n                        \"2018-02-01\",\n                        \"2018-02-02\",\n                        \"2018-02-03\",\n                        \"2018-02-04\",\n                        \"2018-02-05\",\n                        \"2018-02-06\",\n                        \"2018-02-07\",\n                        \"2018-02-08\",\n                        \"2018-02-09\",\n                        \"2018-02-10\",\n                        \"2018-02-11\",\n                        \"2018-02-12\",\n                        \"2018-02-13\",\n                        \"2018-02-14\",\n                        \"2018-02-15\",\n                        \"2018-02-16\",\n                        \"2018-02-17\",\n                        \"2018-02-18\",\n                        \"2018-02-19\",\n                        \"2018-02-20\",\n                        \"2018-02-21\",\n                        \"2018-02-22\",\n                        \"2018-02-23\",\n                        \"2018-02-24\",\n                        \"2018-02-25\",\n                        \"2018-02-26\",\n                        \"2018-02-27\",\n                        \"2018-02-28\",\n                        \"2018-03-01\",\n                        \"2018-03-02\",\n                        \"2018-03-03\",\n                        \"2018-03-04\",\n                        \"2018-03-05\",\n                        \"2018-03-06\",\n                        \"2018-03-07\",\n                        \"2018-03-08\",\n                        \"2018-03-09\",\n                        \"2018-03-10\",\n                        \"2018-03-11\",\n                        \"2018-03-12\",\n                        \"2018-03-13\",\n                        \"2018-03-14\",\n                        \"2018-03-15\",\n                        \"2018-03-16\",\n                        \"2018-03-17\",\n                        \"2018-03-18\",\n                        \"2018-03-19\",\n                        \"2018-03-20\",\n                        \"2018-03-21\",\n                        \"2018-03-22\",\n                        \"2018-03-23\",\n                        \"2018-03-24\",\n                        \"2018-03-25\",\n                        \"2018-03-26\",\n                        \"2018-03-27\",\n                        \"2018-03-28\",\n                        \"2018-03-29\",\n                        \"2018-03-30\",\n                        \"2018-03-31\",\n                        \"2018-04-01\",\n                        \"2018-04-02\",\n                        \"2018-04-03\",\n                        \"2018-04-04\",\n                        \"2018-04-05\",\n                        \"2018-04-06\",\n                        \"2018-04-07\",\n                        \"2018-04-08\",\n                        \"2018-04-09\",\n                        \"2018-04-10\",\n                        \"2018-04-11\",\n                        \"2018-04-12\",\n                        \"2018-04-13\",\n                        \"2018-04-14\",\n                        \"2018-04-15\",\n                        \"2018-04-16\",\n                        \"2018-04-17\",\n                        \"2018-04-18\",\n                        \"2018-04-19\",\n                        \"2018-04-20\",\n                        \"2018-04-21\",\n                        \"2018-04-22\",\n                        \"2018-04-23\",\n                        \"2018-04-24\",\n                        \"2018-04-25\",\n                        \"2018-04-26\",\n                        \"2018-04-27\",\n                        \"2018-04-28\",\n                        \"2018-04-29\",\n                        \"2018-04-30\",\n                        \"2018-05-01\"\n                    ],\n                    \"price_categories\": {\n                        \"data\": []\n                    },\n                    \"place\": {\n                        \"data\": {\n                            \"id\": 13644,\n                            \"created_at\": \"2017-10-22T17:56:00+02:00\",\n                            \"updated_at\": \"2017-10-22T17:56:00+02:00\",\n                            \"translations\": {\n                                \"de\": {\n                                    \"name\": \"Johannes-Kepler-Straße, 1 Ecke SS12\",\n                                    \"teaser\": \"\",\n                                    \"openinghoursnotes\": \"\"\n                                },\n                                \"it\": {\n                                    \"name\": \"Johannes-Kepler-Straße, 1 Ecke SS12\",\n                                    \"teaser\": \"\",\n                                    \"openinghoursnotes\": \"\"\n                                }\n                            },\n                            \"address\": {\n                                \"data\": {\n                                    \"city_id\": 12,\n                                    \"city_zip\": \"39100\",\n                                    \"translations\": {\n                                        \"de\": {\n                                            \"city_name\": \"Bozen\",\n                                            \"street_name\": \"\"\n                                        },\n                                        \"it\": {\n                                            \"city_name\": \"Bolzano\",\n                                            \"street_name\": \"\"\n                                        }\n                                    },\n                                    \"street_number\": \"\",\n                                    \"latitude\": null,\n                                    \"longitude\": null\n                                }\n                            },\n                            \"contact\": {\n                                \"data\": null\n                            },\n                            \"types\": {\n                                \"data\": []\n                            }\n                        }\n                    }\n                },\n                {\n                    \"place_id\": 13644,\n                    \"translations\": [],\n                    \"times\": {\n                        \"data\": [\n                            {\n                                \"starttime\": \"15:00:00\",\n                                \"endtime\": \"18:00:00\"\n                            }\n                        ]\n                    },\n                    \"dates\": [\n                        \"2017-10-28\"\n                    ],\n                    \"price_categories\": {\n                        \"data\": []\n                    },\n                    \"place\": {\n                        \"data\": {\n                            \"id\": 13644,\n                            \"created_at\": \"2017-10-22T17:56:00+02:00\",\n                            \"updated_at\": \"2017-10-22T17:56:00+02:00\",\n                            \"translations\": {\n                                \"de\": {\n                                    \"name\": \"Johannes-Kepler-Straße, 1 Ecke SS12\",\n                                    \"teaser\": \"\",\n                                    \"openinghoursnotes\": \"\"\n                                },\n                                \"it\": {\n                                    \"name\": \"Johannes-Kepler-Straße, 1 Ecke SS12\",\n                                    \"teaser\": \"\",\n                                    \"openinghoursnotes\": \"\"\n                                }\n                            },\n                            \"address\": {\n                                \"data\": {\n                                    \"city_id\": 12,\n                                    \"city_zip\": \"39100\",\n                                    \"translations\": {\n                                        \"de\": {\n                                            \"city_name\": \"Bozen\",\n                                            \"street_name\": \"\"\n                                        },\n                                        \"it\": {\n                                            \"city_name\": \"Bolzano\",\n                                            \"street_name\": \"\"\n                                        }\n                                    },\n                                    \"street_number\": \"\",\n                                    \"latitude\": null,\n                                    \"longitude\": null\n                                }\n                            },\n                            \"contact\": {\n                                \"data\": null\n                            },\n                            \"types\": {\n                                \"data\": []\n                            }\n                        }\n                    }\n                }\n            ]\n        },\n        \"properties\": {\n            \"data\": [\n                {\n                    \"id\": 128,\n                    \"translations\": {\n                        \"de\": {\n                            \"name\": \"Begrüßung\"\n                        },\n                        \"it\": {\n                            \"name\": \"Saluto\"\n                        }\n                    },\n                    \"value\": \"Victoria Dejaco\"\n                },\n                {\n                    \"id\": 129,\n                    \"translations\": {\n                        \"de\": {\n                            \"name\": \"Einführung\"\n                        },\n                        \"it\": {\n                            \"name\": \"Introduzione\"\n                        }\n                    },\n                    \"value\": \"Victoria Dejaco\"\n                },\n                {\n                    \"id\": 104,\n                    \"translations\": {\n                        \"de\": {\n                            \"name\": \"Künstler\"\n                        },\n                        \"it\": {\n                            \"name\": \"Artisti\"\n                        }\n                    },\n                    \"value\": \"Catrin Bolt\"\n                }\n            ]\n        }\n    },\n    \"meta\": []\n}"}],"_postman_id":"ff61dff7-5127-4766-b55f-d70a87ed097f"},{"name":"/tours/:id","id":"02de8dec-93ac-4f29-94ef-0060eb697843","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"APIKEY {{api_key}}"},{"key":"Accept","value":"application/x.sl.v1+json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"{{language}}"}],"url":"{{url}}/public/tours/:id","description":"<p>Get a specific tour</p>\n","urlObject":{"path":["public","tours",":id"],"host":["{{url}}"],"query":[{"disabled":true,"key":"display","value":"perday"},{"disabled":true,"key":"include","value":"translations"}],"variable":[{"id":"34089fea-63e5-45c4-bf79-48a7e8260952","type":"string","value":"6622","key":"id"}]}},"response":[{"id":"e9f91651-3671-41cd-b1ac-20233b8fccb9","name":"Get a single event","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"APIKEY {{api_key}}"},{"key":"Accept","value":"application/x.sl.v1+json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"{{language}}"}],"url":{"raw":"{{url}}/public/events/75300?include=translations","host":["{{url}}"],"path":["public","events","75300"],"query":[{"key":"include","value":"translations"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"7941","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sat, 03 Feb 2018 09:48:47 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"Apache/2.2.16","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 75300,\n        \"is_eventserie\": 0,\n        \"eventserie_id\": null,\n        \"free_entry\": 1,\n        \"price\": null,\n        \"age_from\": 0,\n        \"age_to\": 0,\n        \"created_at\": \"2017-10-22T18:26:48+02:00\",\n        \"updated_at\": \"2017-10-22T18:26:48+02:00\",\n        \"organizer\": {\n            \"data\": {\n                \"address\": {\n                    \"data\": null\n                },\n                \"logo\": {\n                    \"data\": null\n                },\n                \"contact\": {\n                    \"data\": null\n                },\n                \"translations\": {\n                    \"de\": {\n                        \"name\": \"Victoria Dejaco\"\n                    },\n                    \"it\": {\n                        \"name\": \"Victoria Dejaco\"\n                    }\n                }\n            }\n        },\n        \"translations\": {\n            \"de\": {\n                \"title\": \"Bunker Now 3, Tarnrasen - Catrin Bolt\",\n                \"teaser\": \"Der Bunker 15 an der Autobahnausfahrt Süd/Ss12 gegenüber der Eni Tankstelle wird von Künstlerin Catrin Bolt mit Tarnmustern umgestaltet.\",\n                \"deeplink\": \"https://www.kultur.bz.it/index.php?mode=event&evtID=75300\",\n                \"description\": \"In Südtirol befinden sich über 450 Bunker, militärische Anlagen und Wehrbauten aus dem Zweiten Weltkrieg, die Italien gegen Deutschland, den eigenen Alliierten, schützen sollten. Dieser Krieg hat sich, durch die schwerwiegenderen Konsequenzen für die lokale Bevölkerung, tiefer in die Geschichte der Region eingeschrieben als der erste. Verständlich, dass die Öffentlichkeit mit verhaltener Begeisterung und offener Ablehnung diesem Erbe gegenübersteht.<br />Doch diese Güter in Vergessenheit geraten zu lassen, sie auszulöschen oder aus den Augen zu wünschen läuft Gefahr Geschichte zu beschönigen. Wir sehen uns vor einem ähnlichen Dilemma wie die Vereinigten Staaten mit den Denkmälern der Konföderierten. Es muss Wege geben, die abscheulichsten Momente der Geschichte in Erinnerung zu behalten, ohne sie zu verleugnen oder zu glorifizieren. Das passiert durch Kontextualisierung, Bildung und kritische Auseinandersetzung um Bewusstsein zu schaffen.<br />Die Kuratorin Victoria Dejaco wurde vom Verein Kasematte Bunkerforum eingeladen, zu diesem Thema einen Beitrag zu leisten. Dafür wurde als Ort der Bunker 15 an der Autobahnausfahrt Süd in Bozen wurde für eine Intervention der Künstlerin Catrin Bolt bereits 2016 ausgewählt. Die Künstlerin realisierte bereits Mahnmale in Graz (2013) und Wien (2914) zur jüdischen Geschichte dieser Städte im Zweiten Weltkrieg und war prädestiniert für diesen Auftrag. 2015 gewann sie den Otto Maurer Preis, den renommiertesten Preis für junge Kunst in Österreich.<br />Der Bunker 15 an der Autobahnausfahrt Süd bei der SS12 wurde in den 90er Jahren im Zuge der MeBo Bauarbeiten unter einem Erdhügel begraben. Er ist Teil von einem Gesamtgefüge. Sein Zwillingsbau ist noch unversehrt und freistehend einige Hundert Meter weiter östlich. Passend zum Umstand des Bunkers, der nun verschüttet ist, hat sich Catrin Bolt in ihrem Projekt mit Verstecken und Camouflage befasst. Das gesamte Areal wird mit Camouflagemustern aus Rasenmarkierungsfarben gestaltet werden, um die Blicke der Vorbeifahrenden auf sich zu ziehen. Die militärische Funktion des Versteckens wird somit ins Gegenteil verkehrt. Geplant ist den Hügel drei Mal umzugestalten in den nächsten Monaten. Einmal mit dem üblichen militärischen Camouflagemuster, einmal mit dem Dazzle-Effekt, einem Muster, das die Form von Objekten irritierend dekonstruiert und ein Muster der Tech-Ära: dem \\\"Auspixeln\\\" wie es von Google Maps benutzt wird um (militärische) Territorien unerkennbar zu machen. Die Intervention wird das bedeutendste Werk von Land Art, das in Südtirol je umgesetzt wurde.<br />\",\n                \"sale_description\": \"\",\n                \"sale_link\": \"\"\n            },\n            \"it\": {\n                \"title\": \"Bunker Now 3, Tarnrasen - Catrin Bolt\",\n                \"teaser\": \"Der Bunker 15 an der Autobahnausfahrt Süd/Ss12 gegenüber der Eni Tankstelle wird von Künstlerin Catrin Bolt mit Tarnmustern umgestaltet.\",\n                \"deeplink\": \"https://www.cultura.bz.it/index.php?mode=event&evtID=75300\",\n                \"description\": \"In Südtirol befinden sich über 450 Bunker, militärische Anlagen und Wehrbauten aus dem Zweiten Weltkrieg, die Italien gegen Deutschland, den eigenen Alliierten, schützen sollten. Dieser Krieg hat sich, durch die schwerwiegenderen Konsequenzen für die lokale Bevölkerung, tiefer in die Geschichte der Region eingeschrieben als der erste. Verständlich, dass die Öffentlichkeit mit verhaltener Begeisterung und offener Ablehnung diesem Erbe gegenübersteht.<br />Doch diese Güter in Vergessenheit geraten zu lassen, sie auszulöschen oder aus den Augen zu wünschen läuft Gefahr Geschichte zu beschönigen. Wir sehen uns vor einem ähnlichen Dilemma wie die Vereinigten Staaten mit den Denkmälern der Konföderierten. Es muss Wege geben, die abscheulichsten Momente der Geschichte in Erinnerung zu behalten, ohne sie zu verleugnen oder zu glorifizieren. Das passiert durch Kontextualisierung, Bildung und kritische Auseinandersetzung um Bewusstsein zu schaffen.<br />Die Kuratorin Victoria Dejaco wurde vom Verein Kasematte Bunkerforum eingeladen, zu diesem Thema einen Beitrag zu leisten. Dafür wurde als Ort der Bunker 15 an der Autobahnausfahrt Süd in Bozen wurde für eine Intervention der Künstlerin Catrin Bolt bereits 2016 ausgewählt. Die Künstlerin realisierte bereits Mahnmale in Graz (2013) und Wien (2914) zur jüdischen Geschichte dieser Städte im Zweiten Weltkrieg und war prädestiniert für diesen Auftrag. 2015 gewann sie den Otto Maurer Preis, den renommiertesten Preis für junge Kunst in Österreich.<br />Der Bunker 15 an der Autobahnausfahrt Süd bei der SS12 wurde in den 90er Jahren im Zuge der MeBo Bauarbeiten unter einem Erdhügel begraben. Er ist Teil von einem Gesamtgefüge. Sein Zwillingsbau ist noch unversehrt und freistehend einige Hundert Meter weiter östlich. Passend zum Umstand des Bunkers, der nun verschüttet ist, hat sich Catrin Bolt in ihrem Projekt mit Verstecken und Camouflage befasst. Das gesamte Areal wird mit Camouflagemustern aus Rasenmarkierungsfarben gestaltet werden, um die Blicke der Vorbeifahrenden auf sich zu ziehen. Die militärische Funktion des Versteckens wird somit ins Gegenteil verkehrt. Geplant ist den Hügel drei Mal umzugestalten in den nächsten Monaten. Einmal mit dem üblichen militärischen Camouflagemuster, einmal mit dem Dazzle-Effekt, einem Muster, das die Form von Objekten irritierend dekonstruiert und ein Muster der Tech-Ära: dem \\\"Auspixeln\\\" wie es von Google Maps benutzt wird um (militärische) Territorien unerkennbar zu machen. Die Intervention wird das bedeutendste Werk von Land Art, das in Südtirol je umgesetzt wurde.<br />\",\n                \"sale_description\": \"\",\n                \"sale_link\": \"\"\n            }\n        },\n        \"deadline\": null,\n        \"sale_hotline\": \"\",\n        \"types\": {\n            \"data\": [\n                {\n                    \"id\": 24,\n                    \"translations\": {\n                        \"de\": {\n                            \"name\": \"Ausstellungen\"\n                        },\n                        \"it\": {\n                            \"name\": \"Mostre\"\n                        }\n                    }\n                }\n            ]\n        },\n        \"picture\": {\n            \"data\": {\n                \"file\": \"https://img.kultur.bz.it/img.php?id=75300&img=imgUafqLr.jpg\",\n                \"type\": \"image\",\n                \"copyright\": \"Google\",\n                \"provider\": \"kbz\",\n                \"public_id\": \"85337e62b32c62faa6ccaa61f3fe5367\",\n                \"url_alt\": {\n                    \"l\": \"https://img.kultur.bz.it/img.php?id=75300&img=imgUafqLr.jpg&size=1300x0x0\",\n                    \"m\": \"https://img.kultur.bz.it/img.php?id=75300&img=imgUafqLr.jpg&size=900x0x0\",\n                    \"s\": \"https://img.kultur.bz.it/img.php?id=75300&img=imgUafqLr.jpg&size=500x0x0\"\n                },\n                \"translations\": {\n                    \"de\": {\n                        \"title\": \"Lageplan Bunker\"\n                    },\n                    \"it\": {\n                        \"title\": \"Lageplan Bunker\"\n                    }\n                }\n            }\n        },\n        \"media\": {\n            \"data\": []\n        },\n        \"targetgroups\": {\n            \"data\": []\n        },\n        \"dategroups\": {\n            \"data\": [\n                {\n                    \"place_id\": 13644,\n                    \"translations\": {\n                        \"de\": {\n                            \"description\": \"Art in public space, accesso illimitato, freier Zutritt zu allen Tageszeiten\"\n                        },\n                        \"it\": {\n                            \"description\": \"Art in public space, accesso illimitato, freier Zutritt zu allen Tageszeiten\"\n                        }\n                    },\n                    \"times\": {\n                        \"data\": [\n                            {\n                                \"starttime\": \"00:00:00\",\n                                \"endtime\": null\n                            }\n                        ]\n                    },\n                    \"dates\": [\n                        \"2017-10-28\",\n                        \"2017-10-29\",\n                        \"2017-10-30\",\n                        \"2017-10-31\",\n                        \"2017-11-01\",\n                        \"2017-11-02\",\n                        \"2017-11-03\",\n                        \"2017-11-04\",\n                        \"2017-11-05\",\n                        \"2017-11-06\",\n                        \"2017-11-07\",\n                        \"2017-11-08\",\n                        \"2017-11-09\",\n                        \"2017-11-10\",\n                        \"2017-11-11\",\n                        \"2017-11-12\",\n                        \"2017-11-13\",\n                        \"2017-11-14\",\n                        \"2017-11-15\",\n                        \"2017-11-16\",\n                        \"2017-11-17\",\n                        \"2017-11-18\",\n                        \"2017-11-19\",\n                        \"2017-11-20\",\n                        \"2017-11-21\",\n                        \"2017-11-22\",\n                        \"2017-11-23\",\n                        \"2017-11-24\",\n                        \"2017-11-25\",\n                        \"2017-11-26\",\n                        \"2017-11-27\",\n                        \"2017-11-28\",\n                        \"2017-11-29\",\n                        \"2017-11-30\",\n                        \"2017-12-01\",\n                        \"2017-12-02\",\n                        \"2017-12-03\",\n                        \"2017-12-04\",\n                        \"2017-12-05\",\n                        \"2017-12-06\",\n                        \"2017-12-07\",\n                        \"2017-12-08\",\n                        \"2017-12-09\",\n                        \"2017-12-10\",\n                        \"2017-12-11\",\n                        \"2017-12-12\",\n                        \"2017-12-13\",\n                        \"2017-12-14\",\n                        \"2017-12-15\",\n                        \"2017-12-16\",\n                        \"2017-12-17\",\n                        \"2017-12-18\",\n                        \"2017-12-19\",\n                        \"2017-12-20\",\n                        \"2017-12-21\",\n                        \"2017-12-22\",\n                        \"2017-12-23\",\n                        \"2017-12-24\",\n                        \"2017-12-25\",\n                        \"2017-12-26\",\n                        \"2017-12-27\",\n                        \"2017-12-28\",\n                        \"2017-12-29\",\n                        \"2017-12-30\",\n                        \"2017-12-31\",\n                        \"2018-01-01\",\n                        \"2018-01-02\",\n                        \"2018-01-03\",\n                        \"2018-01-04\",\n                        \"2018-01-05\",\n                        \"2018-01-06\",\n                        \"2018-01-07\",\n                        \"2018-01-08\",\n                        \"2018-01-09\",\n                        \"2018-01-10\",\n                        \"2018-01-11\",\n                        \"2018-01-12\",\n                        \"2018-01-13\",\n                        \"2018-01-14\",\n                        \"2018-01-15\",\n                        \"2018-01-16\",\n                        \"2018-01-17\",\n                        \"2018-01-18\",\n                        \"2018-01-19\",\n                        \"2018-01-20\",\n                        \"2018-01-21\",\n                        \"2018-01-22\",\n                        \"2018-01-23\",\n                        \"2018-01-24\",\n                        \"2018-01-25\",\n                        \"2018-01-26\",\n                        \"2018-01-27\",\n                        \"2018-01-28\",\n                        \"2018-01-29\",\n                        \"2018-01-30\",\n                        \"2018-01-31\",\n                        \"2018-02-01\",\n                        \"2018-02-02\",\n                        \"2018-02-03\",\n                        \"2018-02-04\",\n                        \"2018-02-05\",\n                        \"2018-02-06\",\n                        \"2018-02-07\",\n                        \"2018-02-08\",\n                        \"2018-02-09\",\n                        \"2018-02-10\",\n                        \"2018-02-11\",\n                        \"2018-02-12\",\n                        \"2018-02-13\",\n                        \"2018-02-14\",\n                        \"2018-02-15\",\n                        \"2018-02-16\",\n                        \"2018-02-17\",\n                        \"2018-02-18\",\n                        \"2018-02-19\",\n                        \"2018-02-20\",\n                        \"2018-02-21\",\n                        \"2018-02-22\",\n                        \"2018-02-23\",\n                        \"2018-02-24\",\n                        \"2018-02-25\",\n                        \"2018-02-26\",\n                        \"2018-02-27\",\n                        \"2018-02-28\",\n                        \"2018-03-01\",\n                        \"2018-03-02\",\n                        \"2018-03-03\",\n                        \"2018-03-04\",\n                        \"2018-03-05\",\n                        \"2018-03-06\",\n                        \"2018-03-07\",\n                        \"2018-03-08\",\n                        \"2018-03-09\",\n                        \"2018-03-10\",\n                        \"2018-03-11\",\n                        \"2018-03-12\",\n                        \"2018-03-13\",\n                        \"2018-03-14\",\n                        \"2018-03-15\",\n                        \"2018-03-16\",\n                        \"2018-03-17\",\n                        \"2018-03-18\",\n                        \"2018-03-19\",\n                        \"2018-03-20\",\n                        \"2018-03-21\",\n                        \"2018-03-22\",\n                        \"2018-03-23\",\n                        \"2018-03-24\",\n                        \"2018-03-25\",\n                        \"2018-03-26\",\n                        \"2018-03-27\",\n                        \"2018-03-28\",\n                        \"2018-03-29\",\n                        \"2018-03-30\",\n                        \"2018-03-31\",\n                        \"2018-04-01\",\n                        \"2018-04-02\",\n                        \"2018-04-03\",\n                        \"2018-04-04\",\n                        \"2018-04-05\",\n                        \"2018-04-06\",\n                        \"2018-04-07\",\n                        \"2018-04-08\",\n                        \"2018-04-09\",\n                        \"2018-04-10\",\n                        \"2018-04-11\",\n                        \"2018-04-12\",\n                        \"2018-04-13\",\n                        \"2018-04-14\",\n                        \"2018-04-15\",\n                        \"2018-04-16\",\n                        \"2018-04-17\",\n                        \"2018-04-18\",\n                        \"2018-04-19\",\n                        \"2018-04-20\",\n                        \"2018-04-21\",\n                        \"2018-04-22\",\n                        \"2018-04-23\",\n                        \"2018-04-24\",\n                        \"2018-04-25\",\n                        \"2018-04-26\",\n                        \"2018-04-27\",\n                        \"2018-04-28\",\n                        \"2018-04-29\",\n                        \"2018-04-30\",\n                        \"2018-05-01\"\n                    ],\n                    \"price_categories\": {\n                        \"data\": []\n                    },\n                    \"place\": {\n                        \"data\": {\n                            \"id\": 13644,\n                            \"created_at\": \"2017-10-22T17:56:00+02:00\",\n                            \"updated_at\": \"2017-10-22T17:56:00+02:00\",\n                            \"translations\": {\n                                \"de\": {\n                                    \"name\": \"Johannes-Kepler-Straße, 1 Ecke SS12\",\n                                    \"teaser\": \"\",\n                                    \"openinghoursnotes\": \"\"\n                                },\n                                \"it\": {\n                                    \"name\": \"Johannes-Kepler-Straße, 1 Ecke SS12\",\n                                    \"teaser\": \"\",\n                                    \"openinghoursnotes\": \"\"\n                                }\n                            },\n                            \"address\": {\n                                \"data\": {\n                                    \"city_id\": 12,\n                                    \"city_zip\": \"39100\",\n                                    \"translations\": {\n                                        \"de\": {\n                                            \"city_name\": \"Bozen\",\n                                            \"street_name\": \"\"\n                                        },\n                                        \"it\": {\n                                            \"city_name\": \"Bolzano\",\n                                            \"street_name\": \"\"\n                                        }\n                                    },\n                                    \"street_number\": \"\",\n                                    \"latitude\": null,\n                                    \"longitude\": null\n                                }\n                            },\n                            \"contact\": {\n                                \"data\": null\n                            },\n                            \"types\": {\n                                \"data\": []\n                            }\n                        }\n                    }\n                },\n                {\n                    \"place_id\": 13644,\n                    \"translations\": [],\n                    \"times\": {\n                        \"data\": [\n                            {\n                                \"starttime\": \"15:00:00\",\n                                \"endtime\": \"18:00:00\"\n                            }\n                        ]\n                    },\n                    \"dates\": [\n                        \"2017-10-28\"\n                    ],\n                    \"price_categories\": {\n                        \"data\": []\n                    },\n                    \"place\": {\n                        \"data\": {\n                            \"id\": 13644,\n                            \"created_at\": \"2017-10-22T17:56:00+02:00\",\n                            \"updated_at\": \"2017-10-22T17:56:00+02:00\",\n                            \"translations\": {\n                                \"de\": {\n                                    \"name\": \"Johannes-Kepler-Straße, 1 Ecke SS12\",\n                                    \"teaser\": \"\",\n                                    \"openinghoursnotes\": \"\"\n                                },\n                                \"it\": {\n                                    \"name\": \"Johannes-Kepler-Straße, 1 Ecke SS12\",\n                                    \"teaser\": \"\",\n                                    \"openinghoursnotes\": \"\"\n                                }\n                            },\n                            \"address\": {\n                                \"data\": {\n                                    \"city_id\": 12,\n                                    \"city_zip\": \"39100\",\n                                    \"translations\": {\n                                        \"de\": {\n                                            \"city_name\": \"Bozen\",\n                                            \"street_name\": \"\"\n                                        },\n                                        \"it\": {\n                                            \"city_name\": \"Bolzano\",\n                                            \"street_name\": \"\"\n                                        }\n                                    },\n                                    \"street_number\": \"\",\n                                    \"latitude\": null,\n                                    \"longitude\": null\n                                }\n                            },\n                            \"contact\": {\n                                \"data\": null\n                            },\n                            \"types\": {\n                                \"data\": []\n                            }\n                        }\n                    }\n                }\n            ]\n        },\n        \"properties\": {\n            \"data\": [\n                {\n                    \"id\": 128,\n                    \"translations\": {\n                        \"de\": {\n                            \"name\": \"Begrüßung\"\n                        },\n                        \"it\": {\n                            \"name\": \"Saluto\"\n                        }\n                    },\n                    \"value\": \"Victoria Dejaco\"\n                },\n                {\n                    \"id\": 129,\n                    \"translations\": {\n                        \"de\": {\n                            \"name\": \"Einführung\"\n                        },\n                        \"it\": {\n                            \"name\": \"Introduzione\"\n                        }\n                    },\n                    \"value\": \"Victoria Dejaco\"\n                },\n                {\n                    \"id\": 104,\n                    \"translations\": {\n                        \"de\": {\n                            \"name\": \"Künstler\"\n                        },\n                        \"it\": {\n                            \"name\": \"Artisti\"\n                        }\n                    },\n                    \"value\": \"Catrin Bolt\"\n                }\n            ]\n        }\n    },\n    \"meta\": []\n}"}],"_postman_id":"02de8dec-93ac-4f29-94ef-0060eb697843"}],"id":"24511586-0040-4ded-a3be-b0b6258aba3b","_postman_id":"24511586-0040-4ded-a3be-b0b6258aba3b","description":""},{"name":"Custom Data","item":[{"name":"/custom_data","id":"c4a95f10-c11e-45a8-a40d-57242c07502c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"APIKEY {{api_key}}"},{"key":"Accept","value":"application/x.sl.v1+json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"{{language}}"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/public/custom_data","description":"<p>Loads custom data into the system, if and only if the given <code>id</code> in the <code>additional_data</code> field has a valid mapping to one of our entities.</p>\n<h2 id=\"request\">Request</h2>\n<p>Required body parameters:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>scope</td>\n<td>string</td>\n<td>Indicates from which system the data is coming from.</td>\n</tr>\n<tr>\n<td>data</td>\n<td>json</td>\n<td>The custom data</td>\n</tr>\n<tr>\n<td>additional_data</td>\n<td>json</td>\n<td>A JSON object containing at least the ID to which the data relates to.</td>\n</tr>\n<tr>\n<td>additional_data.origin_id</td>\n<td>string</td>\n<td>Mandatory origin  ID which uniquely identifies the entity the data relates to. Can be a UUID or a numeric ID.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response\">Response</h2>\n<p>Possible outcomes:</p>\n<ul>\n<li>200</li>\n<li>401</li>\n<li>404 - When the given <code>id</code> has no valid mapping.</li>\n</ul>\n","urlObject":{"path":["public","custom_data"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"8a42b2ee-6092-49d1-8aeb-70cc12ceed5f","name":"Push custom data ","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"APIKEY {{api_key}}"},{"key":"Accept","value":"application/x.sl.v1+json"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept-Language","value":"{{language}}"}],"body":{"mode":"raw","raw":"{\n\t\"scope\": \"your-app\",\n\t\"data\":{\"foo\": \"bar\"},\n\t\"additional_data\": {\"origin_id\": 1}\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/public/custom_data"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"c4a95f10-c11e-45a8-a40d-57242c07502c"}],"id":"b08dcbc0-7141-4a1a-a3ae-62a750476fdf","description":"<h2 id=\"custom-data\">Custom Data</h2>\n<p>The custom data API allows you to push specific custom data for further processing in suedtirol.live and connected portals. It requires coordination between your and our development team to set up custom data transfer.</p>\n","event":[{"listen":"prerequest","script":{"id":"d6f0bb4a-db42-41cb-86f8-030fabeeda85","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"79b45122-b506-4434-8dc1-932127f0be7b","type":"text/javascript","exec":[""]}}],"_postman_id":"b08dcbc0-7141-4a1a-a3ae-62a750476fdf"}],"event":[{"listen":"prerequest","script":{"id":"3871bea0-fb80-4287-a891-affce246676f","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"9118b60f-5c0b-466d-a125-a53d414b6332","type":"text/javascript","exec":[""]}}]}