{"id":5596,"date":"2026-05-30T13:31:23","date_gmt":"2026-05-30T11:31:23","guid":{"rendered":"https:\/\/hotel-raphael.de\/?page_id=5596"},"modified":"2026-09-17T14:55:33","modified_gmt":"2026-09-17T12:55:33","slug":"culinary-world-tour","status":"publish","type":"page","link":"https:\/\/www.hotel-raphael.de\/en\/celebrations\/culinary-world-tour\/","title":{"rendered":"Culinary World Tour"},"content":{"rendered":"\n<!-- === Fullscreen Video Hero === -->\n<section class=\"raphael-hero booting\" id=\"raphael-hero\">\n\n      <img\n      src=\"https:\/\/www.hotel-raphael.de\/wp-content\/uploads\/Restaurant_8-1200x666.jpg\"\n      alt=\"\"\n      class=\"raphael-hero-image\"\n      loading=\"eager\"\n      decoding=\"async\"\n    >\n  \n  <div class=\"raphael-video-overlay\"><\/div>\n\n  <div class=\"raphael-hero-content\">\n    <div class=\"raphael-hero-text fade-in-item delay-1\">\n              <h1 class=\"raphael-hero-heading\">\n                      <span class=\"subtitel-top\">Culinary World Tour in Kempten<\/span>\n                                <span class=\"raphael-hero-title fade-in-item delay-2\">\n              The Netherlands                              <span>this September<\/span>\n                          <\/span>\n                  <\/h1>\n      \n \n    <\/div>\n\n      <\/div>\n\n  \n  <!-- Optional: Highlight-Circle wie im neuen Header, aktuell noch statisch -->\n\t\n<\/section>\n\n<script>\njQuery(function($){\n\n  var $body     = $('body');\n  var $modal    = $('#popup');\n  var $backdrop = $('.modal-backdrop');\n  var $video    = $('#myVideo');\n\n  if (!$modal.length || !$video.length) return;\n\n  var initialized = false;\n\n  function ensureBackdrop() {\n    if (!$backdrop.length) {\n      $backdrop = $('<div class=\"modal-backdrop\" style=\"display:none;\"><\/div>').appendTo($body);\n    }\n  }\n\n  \/\/ Lazyload nur f\u00fcr das Modal-Video (Hero l\u00e4uft \u00fcber dein globales Lazyload-Script)\n  function initVideoSrc() {\n    if (initialized) return;\n\n    var dataSrc = $video.attr('data-src');\n    if (dataSrc && !$video.attr('src')) {\n      $video.attr('src', dataSrc);\n    }\n\n    $video.find('source[data-src]').each(function () {\n      var $s   = $(this);\n      var sSrc = $s.attr('data-src');\n      if (sSrc && !$s.attr('src')) {\n        $s.attr('src', sSrc);\n      }\n    });\n\n    initialized = true;\n  }\n\n  function startPlayback() {\n    var el = $video[0];\n    el.muted  = false;\n    el.volume = 1;\n\n    var playPromise = el.play();\n    if (playPromise && playPromise.catch) {\n      playPromise.catch(function(err){\n        console.warn('Video play() wurde blockiert:', err);\n      });\n    }\n  }\n\n  function openModal(trigger) {\n    ensureBackdrop();\n    initVideoSrc();\n\n    $modal\n      .data('open', true)\n      .attr('aria-hidden', 'false')\n      .addClass('in');\n\n    $backdrop.show().addClass('in');\n    $body.addClass('modal-open');\n\n    startPlayback();\n  }\n\n  function closeModal() {\n    if (!$modal.data('open')) return;\n\n    var el = $video[0];\n    try { el.pause(); } catch(e){}\n\n    $modal\n      .data('open', false)\n      .attr('aria-hidden', 'true')\n      .removeClass('in');\n\n    $body.removeClass('modal-open');\n\n    if ($backdrop && $backdrop.length) {\n      $backdrop.removeClass('in').hide();\n    }\n  }\n\n  $(document).on('click', '[data-toggle=\"modal\"][data-target=\"#popup\"], a[href=\"#popup\"]', function(e){\n    e.preventDefault();\n    openModal(this);\n  });\n\n  $(document).on('click', '[data-dismiss=\"modal\"]', function(e){\n    e.preventDefault();\n    closeModal();\n  });\n\n  $modal.on('mousedown', function(e){\n    if ($(e.target).is('.modal')) {\n      closeModal();\n    }\n  });\n\n  $(document).on('keydown', function(e){\n    if (e.key === 'Escape') {\n      closeModal();\n    }\n  });\n\n});\n<\/script>\n\n<script>\n(function () {\n  const hero = document.getElementById('raphael-hero');\n  if (!hero) return; \/\/ Auf Seiten ohne Hero: sofort aussteigen\n\n  const heroContent = hero.querySelector('.raphael-hero-content');\n  const video       = document.getElementById('raphael-video');\n\n  let heroStart  = 0;\n  let heroHeight = 0;\n  let resizeTO;\n\n  \/* --------------------------------\n     Hero-Position f\u00fcr Text-Fade\n  ----------------------------------- *\/\n  function measureHero() {\n    const r = hero.getBoundingClientRect();\n    const scrollY = window.scrollY || window.pageYOffset || 0;\n    heroStart  = scrollY + r.top;\n    heroHeight = r.height || heroHeight || window.innerHeight || 0;\n  }\n\n  \/* --------------------------------\n     Hero-Scroll: Text langsam ausblenden\n  ----------------------------------- *\/\n  function updateHeroOnScroll() {\n    if (!heroContent) return;\n\n    const y = window.scrollY || window.pageYOffset || 0;\n    const progressRaw = (y - heroStart) \/ heroHeight;\n    const progress    = Math.max(0, Math.min(1, progressRaw));\n\n    const fadeStart = 0.45; \/\/ bis 45% im Hero: Text voll sichtbar\n    const fadeEnd   = 0.98; \/\/ kurz vorm Ende: Text weg\n\n    let alpha    = 1;\n    let translate = 0;\n\n    if (progress <= fadeStart) {\n      alpha = 1;\n      translate = 0;\n    } else if (progress >= fadeEnd) {\n      alpha = 0;\n      translate = 20;\n    } else {\n      const t = (progress - fadeStart) \/ (fadeEnd - fadeStart); \/\/ 0 \u2192 1\n      alpha    = 1 - t;\n      translate = t * 20; \/\/ bis 20px nach unten\n    }\n\n    heroContent.style.opacity   = alpha;\n    heroContent.style.transform = 'translateY(' + translate + 'px)';\n  }\n\n  \/* --------------------------------\n     Boot: Hero einblenden, Video fixen\n  ----------------------------------- *\/\n  function bootHero() {\n    measureHero();\n    updateHeroOnScroll();\n\n    \/\/ Sicherstellen, dass das Video nur leicht gezoomt ist (kein Parallax-Transform \u00fcbrig)\n    if (video) {\n      video.style.transform = 'scale(1.05)';\n    }\n\n    \/\/ Boot-Zustand sauber entfernen, damit CSS-Transitions greifen\n    if (hero.classList.contains('booting')) {\n      requestAnimationFrame(function () {\n        hero.classList.remove('booting');\n      });\n    }\n  }\n\n  \/\/ Scroll-Listener nur f\u00fcr Hero-Text\n  window.addEventListener('scroll', updateHeroOnScroll, { passive: true });\n\n  \/\/ Resize-Listener (debounced)\n  window.addEventListener('resize', function () {\n    clearTimeout(resizeTO);\n    resizeTO = setTimeout(function () {\n      measureHero();\n      updateHeroOnScroll();\n    }, 120);\n  });\n\n  \/\/ Nach vollst\u00e4ndigem Laden (absichern gegen Layout-Shifts)\n  window.addEventListener('load', function () {\n    measureHero();\n    updateHeroOnScroll();\n  });\n\n  \/\/ Starten\n  if (document.readyState === 'loading') {\n    document.addEventListener('DOMContentLoaded', bootHero, { once: true });\n  } else {\n    bootHero();\n  }\n\n})();\n<\/script>\n\n\n<div class=\"hsr-dining\">\n<section class=\"hsr-dining-hero\" aria-labelledby=\"dining-title\"><div class=\"hsr-dining-wrap hsr-dining-grid\">\n<div class=\"hsr-dining-intro\"><p class=\"hsr-dining-eyebrow\">St. Raphael Restaurant \u00b7 Kempten<\/p><h2 id=\"dining-title\">Our September menu<br><strong>Three courses. Your choice.<\/strong><\/h2><p class=\"hsr-dining-lead\">Bitterballen, pork fillet or kibbeling, followed by appeltaart: three courses from the Netherlands.<\/p><div class=\"hsr-dining-actions\"><div class=\"wp-block-buttons is-layout-flex\"><div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"tel:+498315404330\">Call to reserve a table<\/a><\/div><\/div><a class=\"hsr-dining-email\" href=\"mailto:anfrage@hotel-raphael.de?subject=Table%20request%20%E2%80%93%20Culinary%20World%20Tour%20September%202026&amp;body=Hello%2C%0A%0AI%20would%20like%20to%20request%20a%20table%20for%20the%20Culinary%20World%20Tour.%0A%0ADate%3A%0ATime%3A%0AParty%20size%3A%0AName%3A%0AContact%20telephone%3A%0ARequests%20%2F%20food%20intolerances%3A%0A%0APlease%20confirm%20my%20reservation.%20Thank%20you%21\">Request a table by email \u2197<\/a><\/div><section class=\"hsr-upcoming\" aria-label=\"Coming next\"><h3>Coming next<\/h3><div class=\"hsr-upcoming-cards\"><article class=\"hsr-upcoming-card\"><p class=\"hsr-upcoming-month\">October 2026<\/p><h4>France<\/h4><p>A taste of France.<\/p><\/article><article class=\"hsr-upcoming-card\"><p class=\"hsr-upcoming-month\">November 2026<\/p><h4>Norway<\/h4><p>Next stop: the north.<\/p><\/article><article class=\"hsr-upcoming-card\"><p class=\"hsr-upcoming-month\">December 2026<\/p><h4>Coming soon<\/h4><p>The next destination will be announced soon.<\/p><\/article><\/div><\/section><\/div>\n<div class=\"hsr-dining-menu\" id=\"monatsmenue\"><p class=\"hsr-dining-eyebrow\">Culinary World Tour \u00b7 September 2026<\/p><h2>Your <strong>menu<\/strong><\/h2>\n<div class=\"hsr-dining-course\" data-course=\"starter\"><p class=\"hsr-dining-label\">01 \u00b7 Starter<\/p><h3 lang=\"nl\">Bitterballen met kaas<\/h3><p>Chilli mayonnaise \u00b7 chives<\/p><\/div>\n<div class=\"hsr-dining-course\" data-course=\"main\"><p class=\"hsr-dining-label\">02 \u00b7 Your choice of main<\/p><h3 lang=\"nl\">Varkenshaas met Mosterdsaus<\/h3><p>Sliced pork fillet \u00b7 creamy mustard sauce \u00b7 new potatoes \u00b7 carrots<\/p><p class=\"hsr-dining-or\">or<\/p><h3 lang=\"nl\">Kibbeling<\/h3><p>Battered saithe \u00b7 remoulade \u00b7 French fries<\/p><\/div>\n<div class=\"hsr-dining-course\" data-course=\"dessert\"><p class=\"hsr-dining-label\">03 \u00b7 Dessert<\/p><h3 lang=\"nl\">Appeltaart<\/h3><p>Vanilla ice cream \u00b7 caramel sauce<\/p><\/div>\n<p class=\"hsr-dining-menu-price\"><strong>\u20ac39.90<\/strong> \u00b7 per person \u00b7 3 courses<\/p><p class=\"hsr-dining-small\">All prices include VAT.<\/p><\/div>\n<\/div><\/section>\n<section class=\"hsr-dining-alacarte hsr-central-menu\" id=\"speisekarte\" aria-labelledby=\"alacarte-title\"><div class=\"hsr-dining-wrap\"><header><p class=\"hsr-dining-eyebrow\">Restaurant St. Raphael<\/p><h2 id=\"alacarte-title\">Prefer \u00e0 la carte?<\/h2><p>Choose your favourites: Allg\u00e4u classics, fish, vegetarian and vegan dishes, followed by something sweet. Browse our menu here.<\/p><\/header><nav class=\"hsr-menu-tabs\" aria-label=\"Menu categories\"><a href=\"#speisekarte-1\">Starters<\/a><a href=\"#speisekarte-2\">Main courses<\/a><a href=\"#speisekarte-3\">Desserts<\/a><\/nav><div class=\"hsr-menu-categories\"><details class=\"hsr-menu-category\" id=\"speisekarte-1\" open><summary><span class=\"hsr-menu-category-title\">Starters<\/span><span class=\"hsr-menu-count\">4 dishes<\/span><span class=\"hsr-menu-toggle\" aria-hidden=\"true\">+<\/span><\/summary><div class=\"hsr-menu-dish-grid\"><article class=\"hsr-menu-dish\"><div class=\"hsr-menu-dish-head\"><h3>Premium Allg\u00e4u beef carpaccio<\/h3><div class=\"hsr-menu-prices\"><strong>\u20ac16.90<\/strong><\/div><\/div><p>Fresh rocket \u00b7 olive oil \u00b7 calamansi vinegar \u00b7 Grana Padano \u00b7 baguette<\/p><\/article><article class=\"hsr-menu-dish\"><div class=\"hsr-menu-dish-head\"><h3>Smoked Norwegian salmon fillet<\/h3><div class=\"hsr-menu-prices\"><strong>\u20ac15.90<\/strong><\/div><\/div><p>Baked r\u00f6sti \u00b7 dressed mixed leaves \u00b7 honey, dill and mustard sauce<\/p><\/article><article class=\"hsr-menu-dish\"><div class=\"hsr-menu-dish-head\"><h3>Rich Allg\u00e4u beef broth<\/h3><div class=\"hsr-menu-prices\"><strong>\u20ac7.90<\/strong><\/div><\/div><p>Homemade herb pancake strips \u00b7 crispy soup pearls \u00b7 chives<\/p><\/article><article class=\"hsr-menu-dish\"><div class=\"hsr-menu-dish-head\"><h3>Mixed seasonal salad<\/h3><div class=\"hsr-menu-prices\"><span>Side<\/span><strong>\u20ac6.90<\/strong><span>Main<\/span><strong>\u20ac12.90<\/strong><\/div><\/div><p>Vinaigrette \u00b7 marinated raw vegetables \u00b7 croutons \u00b7 mixed cress<\/p><\/article><\/div><\/details><details class=\"hsr-menu-category\" id=\"speisekarte-2\"><summary><span class=\"hsr-menu-category-title\">Main courses<\/span><span class=\"hsr-menu-count\">7 dishes<\/span><span class=\"hsr-menu-toggle\" aria-hidden=\"true\">+<\/span><\/summary><div class=\"hsr-menu-dish-grid\"><article class=\"hsr-menu-dish\"><div class=\"hsr-menu-dish-head\"><h3>Grilled premium Allg\u00e4u rump steak<\/h3><div class=\"hsr-menu-prices\"><strong>\u20ac32.90<\/strong><\/div><\/div><p>Homemade herb butter \u00b7 French fries \u00b7 small salad<\/p><\/article><article class=\"hsr-menu-dish\"><div class=\"hsr-menu-dish-head\"><h3>Premium Allg\u00e4u beef with crispy onions<\/h3><div class=\"hsr-menu-prices\"><strong>\u20ac29.90<\/strong><\/div><\/div><p>Rosemary jus \u00b7 Allg\u00e4u cheese sp\u00e4tzle \u00b7 crispy fried onions<\/p><\/article><article class=\"hsr-menu-dish\"><div class=\"hsr-menu-dish-head\"><h3>Allg\u00e4u beef Stroganoff<\/h3><div class=\"hsr-menu-prices\"><strong>\u20ac26.90<\/strong><\/div><\/div><p>Cream sauce \u00b7 mushrooms \u00b7 onions \u00b7 pickled gherkins \u00b7 sour cream \u00b7 buttered sp\u00e4tzle<\/p><\/article><article class=\"hsr-menu-dish\"><div class=\"hsr-menu-dish-head\"><h3>Skin-on pan-fried pike-perch fillet<\/h3><div class=\"hsr-menu-prices\"><strong>\u20ac27.90<\/strong><\/div><\/div><p>Herb cream sauce \u00b7 baked r\u00f6sti \u00b7 fresh seasonal vegetables<\/p><\/article><article class=\"hsr-menu-dish\"><div class=\"hsr-menu-dish-head\"><h3>Hearty Allg\u00e4u pork cordon bleu<\/h3><div class=\"hsr-menu-prices\"><strong>\u20ac23.90<\/strong><\/div><\/div><p>Wild lingonberries \u00b7 French fries \u00b7 lemon \u00b7 small salad<\/p><\/article><article class=\"hsr-menu-dish\"><div class=\"hsr-menu-dish-head\"><h3>Allg\u00e4u cheese sp\u00e4tzle<\/h3><div class=\"hsr-menu-prices\"><strong>\u20ac18.90<\/strong><\/div><\/div><p>Handmade sp\u00e4tzle \u00b7 crispy fried onions \u00b7 chives \u00b7 small salad<\/p><span class=\"hsr-menu-tag\">Vegetarian<\/span><\/article><article class=\"hsr-menu-dish\"><div class=\"hsr-menu-dish-head\"><h3>Baked r\u00f6sti<\/h3><div class=\"hsr-menu-prices\"><strong>\u20ac16.90<\/strong><\/div><\/div><p>Garden-herb soya yoghurt \u00b7 fresh seasonal vegetables<\/p><span class=\"hsr-menu-tag\">Vegan \u00b7 gluten-free \u00b7 lactose-free<\/span><\/article><\/div><\/details><details class=\"hsr-menu-category\" id=\"speisekarte-3\"><summary><span class=\"hsr-menu-category-title\">Desserts<\/span><span class=\"hsr-menu-count\">2 dishes<\/span><span class=\"hsr-menu-toggle\" aria-hidden=\"true\">+<\/span><\/summary><div class=\"hsr-menu-dish-grid\"><article class=\"hsr-menu-dish\"><div class=\"hsr-menu-dish-head\"><h3>Individual Basque cheesecake<\/h3><div class=\"hsr-menu-prices\"><strong>\u20ac8.90<\/strong><\/div><\/div><p>Raspberry pur\u00e9e \u00b7 amarettini crumbs<\/p><\/article><article class=\"hsr-menu-dish\"><div class=\"hsr-menu-dish-head\"><h3>Affogato al caff\u00e8<\/h3><div class=\"hsr-menu-prices\"><strong>\u20ac4.90<\/strong><\/div><\/div><p>Freshly brewed espresso \u00b7 Bourbon vanilla ice cream<\/p><\/article><\/div><\/details><\/div><p class=\"hsr-menu-note\">All prices are in euros and include VAT.\nChanging a side dish: \u20ac2.00; changing to cheese sp\u00e4tzle or fried potatoes: \u20ac3.50. Smaller portions are not available.<\/p><div class=\"hsr-dining-actions\"><div class=\"wp-block-buttons is-layout-flex\"><div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"tel:+498315404330\">Call to reserve a table<\/a><\/div><\/div><a class=\"hsr-dining-email\" href=\"mailto:anfrage@hotel-raphael.de?subject=Table%20request%20%E2%80%93%20Culinary%20World%20Tour%20September%202026&amp;body=Hello%2C%0A%0AI%20would%20like%20to%20request%20a%20table%20for%20the%20Culinary%20World%20Tour.%0A%0ADate%3A%0ATime%3A%0AParty%20size%3A%0AName%3A%0AContact%20telephone%3A%0ARequests%20%2F%20food%20intolerances%3A%0A%0APlease%20confirm%20my%20reservation.%20Thank%20you%21\">Request a table by email \u2197<\/a><\/div><\/div><\/section>\n<section class=\"hsr-dining-section hsr-dining-wrap\" aria-labelledby=\"dining-visit\"><p class=\"hsr-dining-eyebrow\">St. Raphael \u00b7 Kempten im Allg\u00e4u<\/p><h2 id=\"dining-visit\">Plan your evening<\/h2><div class=\"hsr-dining-facts\">\n<div><h3>Evening opening hours<\/h3><p>Monday to Saturday<br><strong>6\u201310 pm<\/strong><\/p><p class=\"hsr-dining-small\">Please call to check public holiday opening hours.<\/p><\/div>\n<div><h3>Find us here<\/h3><p>Bischof-Freundorfer-Weg 24<br>87439 Kempten<\/p><a href=\"https:\/\/www.google.com\/maps\/dir\/?api=1&#038;destination=Hotel+St.+Raphael+Kempten&#038;destination_place_id=ChIJXcsFKgB5nEcRFbEgQM-kzUs\" target=\"_blank\" rel=\"noopener\">Get directions \u2197<\/a><\/div>\n<div id=\"tisch-anfragen\"><h3>How to book<\/h3><p>Call us or email your preferred date, time and party size. We will confirm your table personally.<\/p><a href=\"tel:+498315404330\">+49 831 540 4330<\/a><br><a href=\"mailto:anfrage@hotel-raphael.de?subject=Table%20request%20%E2%80%93%20Culinary%20World%20Tour%20September%202026&amp;body=Hello%2C%0A%0AI%20would%20like%20to%20request%20a%20table%20for%20the%20Culinary%20World%20Tour.%0A%0ADate%3A%0ATime%3A%0AParty%20size%3A%0AName%3A%0AContact%20telephone%3A%0ARequests%20%2F%20food%20intolerances%3A%0A%0APlease%20confirm%20my%20reservation.%20Thank%20you%21\">anfrage@hotel-raphael.de<\/a><\/div><\/div><\/section>\n<section class=\"hsr-dining-section hsr-dining-wrap hsr-dining-faq\"><h2>Before you visit<\/h2><details><summary>Can I choose my main course?<\/summary><p>Yes. In September, choose between pork fillet in mustard sauce and kibbeling. The starter and dessert are part of the three-course menu at \u20ac39.90 per person.<\/p><\/details><details><summary>Are vegetarian or vegan dishes available?<\/summary><p>Our regular menu includes vegetarian Allg\u00e4u cheese sp\u00e4tzle and vegan potato r\u00f6sti. Please discuss any requests for the monthly menu or food intolerances with our team in advance.<\/p><\/details><details><summary>Do I need to be staying at the hotel?<\/summary><p>No. You can reserve a table in our restaurant without booking an overnight stay.<\/p><\/details><details><summary>Where will the Culinary World Tour go next?<\/summary><p>A different country takes centre stage each month. The cards above show the next destinations; the dishes will follow once confirmed by our kitchen.<\/p><\/details><\/section><section class=\"hsr-dining-close\"><div class=\"hsr-dining-wrap\"><h2>An evening inspired<br><strong>by the Netherlands?<\/strong><\/h2><p>Your table is here in Kempten. Contact us with your preferred date.<\/p><div class=\"hsr-dining-actions\"><div class=\"wp-block-buttons is-layout-flex\"><div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"tel:+498315404330\">Call to reserve a table<\/a><\/div><\/div><a class=\"hsr-dining-email\" href=\"mailto:anfrage@hotel-raphael.de?subject=Table%20request%20%E2%80%93%20Culinary%20World%20Tour%20September%202026&amp;body=Hello%2C%0A%0AI%20would%20like%20to%20request%20a%20table%20for%20the%20Culinary%20World%20Tour.%0A%0ADate%3A%0ATime%3A%0AParty%20size%3A%0AName%3A%0AContact%20telephone%3A%0ARequests%20%2F%20food%20intolerances%3A%0A%0APlease%20confirm%20my%20reservation.%20Thank%20you%21\">Request a table by email \u2197<\/a><\/div><\/div><\/section><\/div>","protected":false},"excerpt":{"rendered":"<p>An evening for people who enjoy trying something new and sharing good food around the table.<\/p>\n","protected":false},"author":0,"featured_media":5251,"parent":2224,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-5596","page","type-page","status-publish","has-post-thumbnail","hentry"],"acf":[],"_links":{"self":[{"href":"https:\/\/www.hotel-raphael.de\/en\/wp-json\/wp\/v2\/pages\/5596","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.hotel-raphael.de\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.hotel-raphael.de\/en\/wp-json\/wp\/v2\/types\/page"}],"replies":[{"embeddable":true,"href":"https:\/\/www.hotel-raphael.de\/en\/wp-json\/wp\/v2\/comments?post=5596"}],"version-history":[{"count":10,"href":"https:\/\/www.hotel-raphael.de\/en\/wp-json\/wp\/v2\/pages\/5596\/revisions"}],"predecessor-version":[{"id":5807,"href":"https:\/\/www.hotel-raphael.de\/en\/wp-json\/wp\/v2\/pages\/5596\/revisions\/5807"}],"up":[{"embeddable":true,"href":"https:\/\/www.hotel-raphael.de\/en\/wp-json\/wp\/v2\/pages\/2224"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.hotel-raphael.de\/en\/wp-json\/wp\/v2\/media\/5251"}],"wp:attachment":[{"href":"https:\/\/www.hotel-raphael.de\/en\/wp-json\/wp\/v2\/media?parent=5596"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}