{"id":2933,"date":"2025-08-30T13:03:02","date_gmt":"2025-08-30T11:03:02","guid":{"rendered":"https:\/\/www.staywin.pl\/strona-glowna\/"},"modified":"2026-06-03T13:24:01","modified_gmt":"2026-06-03T11:24:01","slug":"strona-glowna","status":"publish","type":"page","link":"https:\/\/www.staywin.pl\/en\/","title":{"rendered":"Homepage"},"content":{"rendered":"<section class=\"u-border-2 u-border-no-left u-border-no-right u-border-no-top u-border-palette-1-base u-clearfix u-image u-shading lazyload u-section-2\" id=\"block-1\" data-image-width=\"1280\" data-image-height=\"853\" data-bg=\"linear-gradient(to bottom, rgba(24, 29, 36, 0.75), rgba(24, 29, 36, 0.75)), url('https:\/\/www.staywin.pl\/wp-content\/uploads\/2025\/08\/buildings-7323716_1280-1.jpg')\">\n      <div class=\"u-clearfix u-sheet u-sheet-1\">\n        <h1 class=\"animacjastaywin-text u-align-center u-text u-text-white u-text-1\"> Apartments designed for you<br>in the heart of Gda\u0144sk \n        <\/h1>\n        <div class=\"u-clearfix u-custom-html u-expanded-width u-custom-html-1\">\n          <meta charset=\"UTF-8\">\n          <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n          <link rel=\"stylesheet\" href=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/font-awesome\/6.5.0\/css\/all.min.css\">\n          <link rel=\"stylesheet\" href=\"https:\/\/cdn.jsdelivr.net\/npm\/flatpickr\/dist\/flatpickr.min.css\">\n          <script src=\"https:\/\/cdn.jsdelivr.net\/npm\/flatpickr\"><\/script>\n          <script src=\"https:\/\/cdn.jsdelivr.net\/npm\/flatpickr\/dist\/l10n\/pl.js\"><\/script>\n          <script src=\"https:\/\/cdn.jsdelivr.net\/npm\/flatpickr\/dist\/l10n\/en.js\"><\/script>\n          <script src=\"https:\/\/cdn.jsdelivr.net\/npm\/flatpickr\/dist\/l10n\/de.js\"><\/script>\n          <style> :root{--primary:#c59c6c;}\nbody{\n    background:#1b1b1b;\n    color:#fff;\n    margin:0;\n    font-family:system-ui,-apple-system,Segoe UI,Roboto,Inter,Helvetica,Arial,sans-serif;\n    transition:opacity .4s ease;\n}\nbody.fade-out{opacity:0;}\n.calendar-wrapper{\n    display:grid;\n    place-items:center;\n    padding:40px 24px;\n}\n.calendar-container{\n    display:flex;\n    gap:12px;\n    align-items:center;\n    flex-wrap:wrap;\n    max-width:1080px;\n    width:100%;\n}\n.calendar-item{\n    display:flex;\n    flex-direction:column;\n    gap:8px;\n    min-width:220px;\n    flex:1 1 0;\n}\n.calendar-cell{\n    position:relative;\n    display:flex;\n    align-items:center;\n    gap:10px;\n    padding-inline:10px;\n    padding-bottom:7px;\n    border-bottom:1px solid #fff;\n    color:#fff;\n}\n.calendar-cell input{\n    border:none;\n    outline:none;\n    background:transparent;\n    width:100%;\n    color:#fff;\n    font-size:16px;\n}\n.calendar-button{\n    background:transparent;\n    color:#fff;\n    border:1px solid #fff;\n    padding:16px 28px;\n    border-radius:999px;\n    font-size:14px;\n    cursor:pointer;\n    transition:.12s ease-in-out;\n}\n.calendar-button:hover{background:#000;}\n.flatpickr-day.selected,\n.flatpickr-day.startRange,\n.flatpickr-day.endRange{\n    background-color:var(--primary)!important;\n    color:#fff!important;\n    border:none;\n} <\/style>\n          <div class=\"calendar-wrapper\">\n            <div class=\"calendar-container\"><!-- ARRIVAL -->\n              <div class=\"calendar-item\">\n                <div class=\"calendar-cell\">\n                  <input type=\"text\" id=\"arrivalDate\" placeholder=\"Check-in\" readonly=\"\"><i class=\"fa-caret-down fa-solid\"><\/i>\n                <\/div>\n              <\/div><!-- DEPARTURE -->\n              <div class=\"calendar-item\">\n                <div class=\"calendar-cell\">\n                  <input type=\"text\" id=\"departureDate\" placeholder=\"Check-out\" readonly=\"\"><i class=\"fa-caret-down fa-solid\"><\/i>\n                <\/div>\n              <\/div><!-- BUTTON -->\n              <div class=\"calendar-item\" style=\"flex:0 0 auto;\">\n                <button class=\"calendar-button\" onclick=\"redirectToBooking()\"> Find reservation <\/button>\n              <\/div>\n            <\/div>\n          <\/div>\n          <script> document.addEventListener('DOMContentLoaded', () => {\n    \/* ======================================================\n       1. LANGUAGE DETECTION (BEST PRACTICE)\n    ====================================================== *\/\n    const isEN =\n        window.location.pathname.includes('\/en\/') ||\n        document.documentElement.lang.startsWith('en') ||\n        new URLSearchParams(window.location.search).get('lang') === 'en';\n    const isDE =\n        window.location.pathname.includes('\/de\/') ||\n        document.documentElement.lang.startsWith('de') ||\n        new URLSearchParams(window.location.search).get('lang') === 'de';\n    const lang = isEN ? 'en' : isDE ? 'de' : 'pl';\n    \/* ======================================================\n       2. TEXTS\n    ====================================================== *\/\n    const TEXT = {\n        pl: {\n            arr: 'Data przyjazdu',\n            dep: 'Data wyjazdu',\n            btn: 'Znajd\u017a rezerwacj\u0119',\n            req: 'Wybierz daty'\n        },\n        en: {\n            arr: 'Arrival date',\n            dep: 'Departure date',\n            btn: 'Book now',\n            req: 'Please select dates'\n        },\n        de: {\n            arr: 'Ankunftsdatum',\n            dep: 'Abreisedatum',\n            btn: 'Buchen',\n            req: 'Bitte Daten w\u00e4hlen'\n        }\n    }[lang];\n    document.getElementById('arrivalDate').placeholder = TEXT.arr;\n    document.getElementById('departureDate').placeholder = TEXT.dep;\n    document.querySelector('.calendar-button').textContent = TEXT.btn;\n    \/* ======================================================\n       3. FLATPICKR LOCALE FIX (KLUCZOWE!)\n    ====================================================== *\/\n    let locale =\n        lang === 'en'\n            ? flatpickr.l10ns.en\n            : lang === 'de'\n                ? flatpickr.l10ns.de\n                : flatpickr.l10ns.pl;\n    flatpickr('#arrivalDate, #departureDate', {\n        mode: 'range',\n        dateFormat: 'd.m.Y',\n        locale: locale,\n        minDate: 'today',\n        onChange: function(dates) {\n            if (dates.length === 2) {\n                const fmt = d =>\n                    String(d.getDate()).padStart(2,'0') + '.' +\n                    String(d.getMonth()+1).padStart(2,'0') + '.' +\n                    d.getFullYear();\n                document.getElementById('arrivalDate').value = fmt(dates[0]);\n                document.getElementById('departureDate').value = fmt(dates[1]);\n            }\n        }\n    });\n    \/* ======================================================\n       4. REDIRECT (LANG PASSED TO PREVIO)\n    ====================================================== *\/\n    window.redirectToBooking = () => {\n        const arrival = document.getElementById('arrivalDate').value;\n        const departure = document.getElementById('departureDate').value;\n        if (!arrival || !departure) {\n            alert(TEXT.req);\n            return;\n        }\n        const url = new URL(\n            window.location.pathname.includes('\/en\/')\n                ? '\/en\/rezerwacja'\n                : '\/rezerwacja',\n            window.location.origin\n        );\n        url.searchParams.set('arrival', arrival);\n        url.searchParams.set('departure', departure);\n        url.searchParams.set('lang', lang);\n        document.body.classList.add('fade-out');\n        setTimeout(() => {\n            window.location.href = url.toString();\n        }, 400);\n    };\n}); <\/script>\n        <\/div>\n      <\/div>\n    <\/section>\n    <section class=\"u-clearfix u-gradient u-section-3\" id=\"sec-3fb6\">\n      <div class=\"u-clearfix u-sheet u-sheet-1\"><\/div>\n    <\/section>\n    <section class=\"u-border-2 u-border-palette-2-base u-clearfix u-section-4\" id=\"block-10\">\n      <div class=\"u-clearfix u-sheet u-sheet-1\">\n        <div class=\"data-layout-selected u-clearfix u-expanded-width u-layout-wrap u-layout-wrap-1\">\n          <div class=\"u-layout\">\n            <div class=\"u-layout-col\">\n              <div class=\"u-size-30\">\n                <div class=\"u-layout-row\">\n                  <div class=\"u-container-style u-layout-cell u-size-40 u-layout-cell-1\" data-animation-name=\"customAnimationIn\" data-animation-duration=\"1000\" data-animation-delay=\"0\" data-animation-out=\"0\">\n                    <div class=\"u-container-layout u-container-layout-1\">\n                      <h3 class=\"u-text u-text-default u-text-grey-30 u-text-1\">About us<\/h3>\n                      <h2 class=\"u-text u-text-2\" data-animation-name=\"customAnimationIn\" data-animation-duration=\"2000\" data-animation-delay=\"0\" data-animation-out=\"0\"> Modern, comfortable, and fully equipped apartments<span class=\"u-text-palette-1-base\">\n                          <br>at attractive prices! \n                        <\/span>\n                      <\/h2>\n                    <\/div>\n                  <\/div>\n                  <div class=\"u-container-style u-layout-cell u-size-20 u-layout-cell-2\" data-animation-name=\"fadeIn\" data-animation-duration=\"1000\" data-animation-delay=\"2000\" data-animation-out=\"0\">\n                    <div class=\"u-container-layout u-valign-top-lg u-valign-top-xl u-container-layout-2\">\n                      <img class=\"custom-expanded nawierzchstaywin u-align-right u-border-3 u-border-palette-1-base u-expanded-width-md u-image u-image-round u-radius lazyload u-image-1\" alt=\"\" data-image-width=\"2560\" data-image-height=\"1707\" data-src=\"https:\/\/www.staywin.pl\/wp-content\/uploads\/2025\/08\/3-scaled-2.jpg\" loading=\"lazy\">\n                    <\/div>\n                  <\/div>\n                <\/div>\n              <\/div>\n              <div class=\"u-size-30\">\n                <div class=\"u-layout-row\">\n                  <div class=\"u-container-style u-layout-cell u-size-17 u-layout-cell-3\" data-animation-name=\"customAnimationIn\" data-animation-duration=\"1000\" data-animation-delay=\"1000\" data-animation-out=\"0\">\n                    <div class=\"u-container-layout u-valign-top-xl u-container-layout-3\">\n                      <img class=\"u-border-3 u-border-palette-1-base u-expanded-width-md u-expanded-width-sm u-expanded-width-xs u-image u-image-round u-radius lazyload u-image-2\" alt=\"\" data-image-width=\"1333\" data-image-height=\"2000\" data-src=\"https:\/\/www.staywin.pl\/wp-content\/uploads\/2025\/08\/2149204629-1.jpg\" loading=\"lazy\">\n                    <\/div>\n                  <\/div>\n                  <div class=\"u-container-style u-layout-cell u-size-23 u-layout-cell-4\" data-animation-name=\"customAnimationIn\" data-animation-duration=\"1000\" data-animation-delay=\"0\" data-animation-out=\"0\">\n                    <div class=\"u-container-layout u-container-layout-4\">\n                      <p class=\"u-text u-text-default u-text-3\" data-animation-name=\"customAnimationIn\" data-animation-duration=\"3000\" data-animation-delay=\"0\" data-animation-out=\"0\">\n                        <span style=\"font-weight: 700;\">Staywin Apartments<\/span> they are located near the Old Town, right in the heart of cultural life, close to art galleries, theaters, cinemas, museums, and other attractions that guarantee a pleasant stay in Gda\u0144sk. There is no more beautiful city on the Polish coast than Gda\u0144sk. Apartments rented for shorter or longer stays allow you to explore this unique place, boasting an impressive history, beautiful beaches, excellent restaurants, and clean air. \n                      <\/p>\n                      <a href=\"https:\/\/www.staywin.pl\/en\/rezerwacja\/\" class=\"u-align-center-xs u-border-none u-btn u-button-style u-hover-feature u-hover-palette-1-dark-1 u-palette-1-base u-btn-1\" title=\"Book online\" target=\"_blank\">Book your stay <\/a>\n                    <\/div>\n                  <\/div>\n                  <div class=\"u-container-align-left u-container-style u-layout-cell u-size-20 u-layout-cell-5\" data-animation-name=\"customAnimationIn\" data-animation-duration=\"1000\" data-animation-delay=\"1500\" data-animation-out=\"0\">\n                    <div class=\"u-container-layout u-valign-middle-md u-valign-top-xl u-container-layout-5\">\n                      <img class=\"custom-expanded nawierzchstaywin u-border-3 u-border-palette-1-base u-expanded-width-md u-image u-image-round u-radius lazyload u-image-3\" alt=\"\" data-image-width=\"2560\" data-image-height=\"1707\" data-src=\"https:\/\/www.staywin.pl\/wp-content\/uploads\/2025\/08\/17-scaled-2.jpg\" loading=\"lazy\">\n                    <\/div>\n                  <\/div>\n                <\/div>\n              <\/div>\n            <\/div>\n          <\/div>\n        <\/div>\n      <\/div>\n      \n    <\/section>\n    <section class=\"u-align-center u-clearfix u-container-align-center u-section-5\" id=\"sec-848c\">\n      <div class=\"u-clearfix u-sheet u-sheet-1\">\n        <div class=\"u-expanded-width u-list u-list-1\">\n          <div class=\"u-repeater u-repeater-1\">\n            <div class=\"u-align-center u-container-align-center u-container-style u-list-item u-repeater-item u-list-item-1\" data-animation-name=\"customAnimationIn\" data-animation-duration=\"1000\" data-animation-delay=\"0\" data-animation-out=\"0\">\n              <div class=\"u-container-layout u-similar-container u-valign-top u-container-layout-1\">\n                <h3 class=\"u-align-center u-text u-text-default u-text-1\" data-animation-name=\"counter\" data-animation-event=\"scroll\" data-animation-duration=\"3000\">5831+<\/h3>\n                <p class=\"u-align-center u-text u-text-2\" data-animation-name=\"customAnimationIn\" data-animation-duration=\"1000\" data-animation-delay=\"0\" data-animation-out=\"0\">Recommending guests<\/p>\n                <p class=\"u-align-center u-text u-text-3\" data-animation-name=\"customAnimationIn\" data-animation-duration=\"1000\" data-animation-delay=\"0\" data-animation-out=\"0\"> Guests return to us every year because they feel at home<\/p>\n              <\/div>\n            <\/div>\n            <div class=\"u-align-center u-container-align-center u-container-style u-list-item u-repeater-item u-list-item-2\" data-animation-name=\"customAnimationIn\" data-animation-duration=\"1000\" data-animation-delay=\"0\" data-animation-out=\"0\">\n              <div class=\"u-container-layout u-similar-container u-valign-top u-container-layout-2\">\n                <h3 class=\"u-align-center u-text u-text-default u-text-4\" data-animation-name=\"counter\" data-animation-event=\"scroll\" data-animation-duration=\"3000\">7<\/h3>\n                <p class=\"u-align-center u-text u-text-5\" data-animation-name=\"customAnimationIn\" data-animation-duration=\"1000\" data-animation-delay=\"0\" data-animation-out=\"0\">Days of the week<\/p>\n                <p class=\"u-align-center u-text u-text-6\" data-animation-name=\"customAnimationIn\" data-animation-duration=\"1000\" data-animation-delay=\"0\" data-animation-out=\"0\"> We are available for guests on-site and remotely<\/p>\n              <\/div>\n            <\/div>\n            <div class=\"u-align-center u-container-align-center u-container-style u-list-item u-repeater-item u-list-item-3\" data-animation-name=\"customAnimationIn\" data-animation-duration=\"1000\" data-animation-delay=\"0\" data-animation-out=\"0\">\n              <div class=\"u-container-layout u-similar-container u-valign-top u-container-layout-3\">\n                <h3 class=\"u-align-center u-text u-text-default u-text-7\" data-animation-name=\"counter\" data-animation-event=\"scroll\" data-animation-duration=\"3000\">32400+<\/h3>\n                <p class=\"u-align-center u-text u-text-8\" data-animation-name=\"customAnimationIn\" data-animation-duration=\"1000\" data-animation-delay=\"0\" data-animation-out=\"0\">Number of reservations<\/p>\n                <p class=\"u-align-center u-text u-text-9\" data-animation-name=\"customAnimationIn\" data-animation-duration=\"1000\" data-animation-delay=\"0\" data-animation-out=\"0\"> Reservations made quickly, conveniently, and hassle-free<\/p>\n              <\/div>\n            <\/div>\n            <div class=\"u-align-center u-container-align-center u-container-style u-list-item u-repeater-item u-list-item-4\" data-animation-name=\"customAnimationIn\" data-animation-duration=\"1000\" data-animation-delay=\"0\" data-animation-out=\"0\">\n              <div class=\"u-container-layout u-similar-container u-valign-top u-container-layout-4\">\n                <h3 class=\"u-align-center u-text u-text-default u-text-10\" data-animation-name=\"counter\" data-animation-event=\"scroll\" data-animation-duration=\"3000\">9,3<\/h3>\n                <p class=\"u-align-center u-text u-text-11\" data-animation-name=\"customAnimationIn\" data-animation-duration=\"1000\" data-animation-delay=\"0\" data-animation-out=\"0\">Average stay rating<\/p>\n                <p class=\"u-align-center u-text u-text-12\" data-animation-name=\"customAnimationIn\" data-animation-duration=\"1000\" data-animation-delay=\"0\" data-animation-out=\"0\"> High quality confirmed by guest reviews<\/p>\n              <\/div>\n            <\/div>\n          <\/div>\n        <\/div>\n      <\/div>\n    <\/section>\n    <section class=\"u-border-2 u-border-no-left u-border-no-right u-border-palette-1-base u-clearfix u-palette-2-dark-2 u-valign-middle u-section-6\" id=\"sec-1612\">\n      <div class=\"u-expanded-width u-shortcode u-shortcode-1\">\n  \n<!-- Swiper CSS & JS -->\n<link rel=\"stylesheet\" href=\"https:\/\/unpkg.com\/swiper\/swiper-bundle.min.css\"\/>\n<script src=\"https:\/\/unpkg.com\/swiper\/swiper-bundle.min.js\"><\/script>\n\n<style>\n  \/* \u2014\u2014\u2014\u2014\u2014 kontener i podstawowe style \u2014\u2014\u2014\u2014\u2014 *\/\n  .apc-wrapper {\n    color: #fff;\n    padding: 40px 0;\n    max-width: 1350px;\n    margin: auto;\n  }\n\n  .swiper-button-prev{\n    color: #fff;\n    background: red;\n    border-radius: 50%;\n\n    font-size: 12px;\n  }\n  .apc-filters {\n    text-align: center;\n    margin-bottom: 30px;\n  }\n  .apc-filters button {\n    background: transparent;\n    border: 1.5px solid #fff;\n    font-size: 12px;\n    color: #E5DFDA;\n    padding: 4px 24px;\n    margin: 0 6px;\n    border-radius: 50px;\n    cursor: pointer;\n  }\n  .apc-filters button.active {\n    background: #c6976d;\n    border: 1.5px solid #95785e;\n    color: #E5DFDA;\n  }\n  .apc-content {\n    display: flex;\n    gap: 20px;\n    flex-wrap: wrap;\n    align-items: center;\n    justify-content: center;\n    transition: opacity 0.4s ease, transform 0.4s ease;\n  }\n .apc-content.transition-exit-next {\n   opacity: 0;\n   transform: translateX(-20px);\n }\n .apc-content.transition-exit-prev {\n   opacity: 0;\n   transform: translateX(20px);\n }\n\n .apc-content.transition-exit-fade {\n   opacity: 0;\n   transform: translateX(0);\n }\n \/* enter ten sam co dla slide, bo translateX(0) = brak przesuni\u0119cia *\/\n .apc-content.transition-enter {\n   opacity: 1;\n   transform: translateX(0);\n }\n\n \/* wsp\u00f3lna klasa enter (do \u015brodka) *\/\n .apc-content.transition-enter {\n   opacity: 1;\n   transform: translateX(0);\n }\n\n  .apc-left,\n  .apc-right {\n    flex: 1 1 50%;\n    min-width: 300px;\n    max-width: 600px;\n    height: 550px;\n  }\n\n  \/* nowe: rozci\u0105gni\u0119cie prawej kolumny na ca\u0142\u0105 wysoko\u015b\u0107 i flex-kolumna *\/\n  .apc-right {\n    display: flex;\n    flex-direction: column;\n    justify-content: flex-start;\n    align-items: flex-start;\n  }\n\n  .apc-left {\n    position: relative;\n    overflow: hidden;\n  }\n\n  .apc-price {\n    font-size: 24px;\n    display: inline-block;\n    padding: 16px 40px;\n    border: 1px solid #fff;\n    border-radius: 80px;\n    margin-bottom: 20px;\n  }\n\n  \/* tytu\u0142 \u2013 max 2 linie z ellips\u0105 *\/\n  .apc-title {\n    font-size: 32px;\n    margin-bottom: 12px;\n    line-height: 1.2;\n    height: calc(1.2em * 2);\n    overflow: hidden;\n    display: -webkit-box;\n    -webkit-line-clamp: 2;\n    -webkit-box-orient: vertical;\n  }\n\n  \/* opis \u2013 max 4 linie z ellips\u0105 *\/\n  .apc-desc {\n    font-size: 16px;\n    line-height: 1.8;\n    display: -webkit-box;\n    -webkit-line-clamp: 4;\n    -webkit-box-orient: vertical;\n    overflow: hidden;\n    text-overflow: ellipsis;\n    max-height: calc(1.8em * 4);\n  }\n\n  \/* udogodnienia \u2013 sta\u0142a wysoko\u015b\u0107 4 wierszy, ukrycie nadmiaru *\/\n\/*   .apc-fac { *\/\n\/*     display: grid; *\/\n\/*     grid-template-columns: repeat(2,1fr); *\/\n\/*     gap: 8px 24px; *\/\n\/*     margin-bottom: 24px; *\/\n\n\/*      *\/\/* dok\u0142adnie 4 wiersze * 1.8em linii *\/\n\/*     height: calc(1.8em * 4); *\/\n\/*     overflow: hidden; *\/\n\/*   } *\/\n\n\n.apc-fac-list {\n  list-style-type: square;\n  margin: 0 0 24px 20px;\n  list-style-position: inside;\n  padding-left: 20px;\n  padding: 0;\n  line-height: 1.8;\n  max-height: calc(1.8em * 4); \/* 4 wiersze *\/\n  overflow: hidden;\n  columns: 2;               \/* dwie kolumny *\/\n  column-gap: 40px;         \/* odst\u0119p mi\u0119dzy kolumnami *\/\n}\n.apc-fac-list li {\n  margin-bottom: 4px;\n  font-size: 16px;\n}\n\n  .apc-buttons {\n    display: flex;\n    gap: 12px;\n    flex-direction: column;\n    width: 100%;\n    margin-top: auto;\n  }\n  .apc-buttons a {\n    display: inline-block;\n    text-decoration: none;\n    text-align: center;\n    padding: 12px 32px;\n    border-radius: 50px;\n    font-size: 15px;\n  }\n  .apc-buttons .reserve {\n    background: #c6976d;\n    color: #fff;\n      transition: 0.12s ease-in-out;\n\n  }\n  .apc-buttons .details {\n    border: 1px solid #fff;\n    color: #fff;\n    background: transparent;\n      transition: 0.12s ease-in-out;\n  }\n\n    .apc-buttons .details:hover {\n      background: black;\n      transition: 0.12s ease-in-out;\n\n    } .apc-buttons .reserve:hover {\n      background: #95785e;\n      transition: 0.12s ease-in-out;\n    }\n\n  .apc-nav {\n    display: flex;\n    justify-content: space-between;\n    margin-top: 30px;\n  }\n  .apc-nav button {\n    background: transparent;\n    border: none;\n    color: #fff;\n    font-size: 18px;\n    cursor: pointer;\n  }\n  .apc-nav button:hover {\n    color: #c6976d;\n    transition: 0.12s ease-in-out;\n  }\n\n  \/* \u2014\u2014\u2014\u2014\u2014 wymuszona wysoko\u015b\u0107 Swiper \u2014\u2014\u2014\u2014\u2014 *\/\n  .apc-left .swiper {\n    width: 100%;\n    height: 100%;\n    overflow: visible;\n  }\n  .apc-left .swiper-slide img {\n    width: 100%;\n    height: 100%;\n    object-fit: cover;\n  }\n\n  \/* \u2014\u2014\u2014\u2014\u2014 custom Swiper arrows \u2014\u2014\u2014\u2014\u2014 *\/\n  .apc-left .swiper-button-prev,\n  .apc-left .swiper-button-next {\n    \/* domy\u015blny stan: #8D8B55 na 85% *\/\n    background-color: #c6976d;\n    color: #fff;              \/* ikona wewn\u0105trz *\/\n    width: 48px;\n    height: 48px;\n    border-radius: 50%;\n    top: 50%;\n    transform: translateY(-50%);\n  }\n\n  \/* wi\u0119ksza ikona i dziedziczenie koloru *\/\n  .apc-left .swiper-button-prev::after,\n  .apc-left .swiper-button-next::after {\n    font-size: 14px;\n    color: inherit;\n  }\n  .apc-left .swiper-button-prev::after{\n    margin-right: 2px;\n  }\n   .apc-left .swiper-button-next::after{\n      margin-left: 2px;\n    }\n\n  \/* hover: #2C2C2C na 85% *\/\n  .apc-left .swiper-button-prev:hover,\n  .apc-left .swiper-button-next:hover {\n    background-color: #080a0e;\n  }\n\n  \/* ewentualnie dostosuj pozycj\u0119 prev\/next *\/\n  .apc-left .swiper-button-prev {\n    left: 10px;\n  }\n  .apc-left .swiper-button-next {\n    right: 10px;\n  }\n  .apc-prev, .apc-next {\n    display: flex;\n    align-items: center;\n    gap: 10px;\n  }\n  .apc-next-name, .apc-prev-name{\n    font-size: 13px;\n  }\n\n@media (max-width: 768px) {\n    .apc-filters{\n    display: flex;\n        flex-direction: column;\n        gap: 6px;\n    }\n.apc-price{\n    width: 100%;\n    text-align: center;\n}\n.apc-content{\n    margin-inline: 15px;\n}\n.apc-left{\n    height: 320px;\n}\n.swiper-button-next, .swiper-button-prev{\n    transform: none !important;\n}\n}\n\n\n<\/style>\n\n<div class=\"apc-wrapper\">\n  <!-- 1) Filtry kategorii -->\n  <div class=\"apc-filters\">\n            <button\n          data-cat=\"Wyspa Spichrz\u00f3w\"\n          class=\"active\"        >\n          Granary Island        <\/button>\n            <button\n          data-cat=\"Stare Miasto i Marina\"\n                  >\n          Old Town and Marina        <\/button>\n            <button\n          data-cat=\"Widok Na Rzek\u0119\"\n                  >\n          River View        <\/button>\n      <\/div>\n\n  <!-- 2) Sekcja g\u0142\u00f3wna: galeria i dane -->\n  <div class=\"apc-content\">\n    <div class=\"apc-left\">\n      <div class=\"swiper apc-gallery\">\n        <div class=\"swiper-wrapper\"><\/div>\n        <div class=\"swiper-button-prev\"><\/div>\n        <div class=\"swiper-button-next\"><\/div>\n      <\/div>\n    <\/div>\n    <div class=\"apc-right\">\n      <div class=\"apc-price\">\n        <span class=\"apc-price-val\"><\/span>\n        <span class=\"apc-price-cur\"><\/span> \/night\n      <\/div>\n      <div class=\"apc-title\"><\/div>\n      <div class=\"apc-desc\"><\/div>\n      <div class=\"apc-fac\"><\/div>\n      <div class=\"apc-buttons\">\n        <a href=\"#\" class=\"reserve\" target=\"_blank\">Book now<\/a>\n        <a href=\"#\" class=\"details\" target=\"_blank\">Details<\/a>\n      <\/div>\n    <\/div>\n  <\/div>\n\n  <!-- 3) Nawigacja mi\u0119dzy apartamentami -->\n  <div class=\"apc-nav\">\n    <button class=\"apc-prev\">&larr; <span class=\"apc-prev-name\">Poprzedni apartament<\/span><\/button>\n    <button class=\"apc-next\"><span class=\"apc-next-name\">Nast\u0119pny apartament<\/span> &rarr;<\/button>\n  <\/div>\n<\/div>\n\n<script>\n  \/\/ funkcja do generowania \u201eslug\u201d z nazwy\n  function generateSlugFromName(name) {\n    return name\n      .normalize(\"NFD\")\n      .replace(\/[\\u0300-\\u036f]\/g, '')\n      .toLowerCase()\n      .replace(\/ \/g, '-')\n      .replace(\/[^a-z0-9-]\/g, '');\n  }\n\n  \/**\n   * Zwraca list\u0119 kategorii (slug\u00f3w) dla danego apartamentu\n   * bazuj\u0105c na polu apt.category (np. \"Dla dwojga, Z jacuzzi\")\n   *\/\n  function getCategories(apt) {\n    if (!apt.category || typeof apt.category !== 'string') {\n      return [];\n    }\n    return apt.category\n      .split(',')\n      .map(s =>\n        s\n          .trim()\n          .toLowerCase()\n          .normalize('NFD')\n          .replace(\/[\\u0300-\\u036f]\/g, '')\n      )\n      .filter(Boolean);\n  }\n\n  document.addEventListener('DOMContentLoaded', function() {\n    \/\/ dane z PHP\n    const apartments     = [{\"obkId\":\"682434\",\"name\":\"Angielska Grobla 173\",\"description\":\"Przestronny, dwupoziomowy apartament w Gda\u0144sku o powierzchni 120 m\u00b2 oferuje komfortowe zakwaterowanie dla maksymalnie 10 os\u00f3b. Sk\u0142ada si\u0119 z 5 pokoi, w tym 4 sypialni wyposa\u017conych w \u0142\u00f3\u017cka ma\u0142\u017ce\u0144skie. Do dyspozycji go\u015bci s\u0105 dwa balkony lub taras z widokiem na miasto, aneks kuchenny z lod\u00f3wk\u0105, czajnikiem elektrycznym i ekspresem do kawy, a tak\u017ce przestronny salon. Apartament posiada dwie \u0142azienki z prysznicem, WC i suszark\u0105 do w\u0142os\u00f3w. Go\u015bcie mog\u0105 korzysta\u0107 z telewizora oraz bezprzewodowego internetu, co zapewnia wygodny pobyt w wysokim standardzie.\",\"category\":\"Stare Miasto i Marina\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260324082822_WbrG5Y.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260324082822_9VfFum.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260324082822_B730kF.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260324082822_SBdVhd.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260324082822_YiHxSP.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260324082822_UyA5oM.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260324082822_SxJNJx.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260324082822_Zrohdw.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260324082822_MX8Dve.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260324082822_YD3GZm.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260324082822_2DsWyo.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260324082822_cCy2wi.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260324082823_mrqyTp.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260324082823_x8KKjo.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260324082823_fu8THI.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260324082823_wRWxfu.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260324082823_udZ3uU.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260324082823_VS4zwG.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260324082823_W93zig.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260324082823_UiVgoc.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260324082823_FMy6Tn.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260324082823_QU12Zj.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260324082823_wkWPPe.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260324082823_vaG9Kt.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260324082823_1iiB2d.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190919182124_SAJRyI.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190919182123_dha1Q8.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\",\"attributes\":[{\"praId\":30,\"value\":\"1\"}]},\"1\":{\"okpId\":10,\"value\":\"\"},\"10\":{\"okpId\":26,\"value\":\"\"},\"22\":{\"okpId\":94,\"value\":\"120\"},\"24\":{\"okpId\":97,\"value\":\"4\"},\"25\":{\"okpId\":98,\"value\":\"5\"}},\"price\":1300,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=682434\",\"detailsUrl\":\"\\\/682434\"},{\"obkId\":\"988519\",\"name\":\"Angielska Grobla 5\",\"description\":\"Apartament znajduje si\u0119 na w pobli\u017cu historycznego centrum miasta.Od Bramy Zielonej dzieli go 850 m czyli oko\u0142o 12 minut drogi spacerem.W pobli\u017cu apartamentu znajduj\u0105 si\u0119 restauracje, kawiarnie i sklepy.Apartament sk\u0142ada si\u0119 z przestronnego salonu z aneksem kuchennym.W salonie znajduje si\u0119 sofa (bez funkcji spania) oraz telewizor.Aneks kuchenny wyposa\u017cony jest we wszystkie niezb\u0119dne sprz\u0119ty i naczynia.Znajduje si\u0119 tam piekarnik, p\u0142yta indukcyjna, lod\u00f3wka, zmywarka, czajnik i ekspres przelewowy.W apartamencie s\u0105 dwie sypialnie.Jedna wyposa\u017cona jest w \u0142o\u017ce o wymiarach 160 x 200 cm, a druga w rozk\u0142adan\u0105 sof\u0119 140 x 200 cmW \u0142azience znajduje si\u0119 wanna.W apartamencie jest tak\u017ce dodatkowa toaleta z pralk\u0105.\",\"category\":\"Stare Miasto i Marina\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260112141958_ujVTSK.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260112141958_5johTE.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260112141958_LkhrWH.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260112141958_PYXuHA.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260112141958_Jt86F2.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260112141958_jAnWDR.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260112141959_UJ78Eq.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260112141959_2yK2xP.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251225115129_AT9eIV.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260112141959_CUKkPU.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251225115129_bNPaPn.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260112141959_TyACvC.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260112141959_JAoo2T.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260112141959_fHqV5n.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260112141959_gAnnAq.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260112141959_okqA97.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260112141959_PlPShO.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260112141959_fi3OXq.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260112141959_H9Gggf.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260112141959_sDUCHj.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"10\":{\"okpId\":26,\"value\":\"\"},\"16\":{\"okpId\":94,\"value\":\"60\"},\"18\":{\"okpId\":97,\"value\":\"2\"},\"19\":{\"okpId\":98,\"value\":\"3\"}},\"price\":350,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=988519\",\"detailsUrl\":\"\\\/988519\"},{\"obkId\":\"686486\",\"name\":\"Apartament 11\",\"description\":\"\",\"category\":\"Widok Na Rzek\u0119\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260324082127_NvltpT.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260324082127_EF1WcU.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260324082127_EyBjir.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260324082127_UY7inA.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260324082127_i41FFo.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260324082127_lbRRWu.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260324082127_ceBL9K.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260324082127_oYet0F.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260324082127_C4odCr.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260324082127_ilHUVW.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191002215149_NQRft0.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260324082127_77v6FY.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191002215149_Yuijeb.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260324082127_y9Rrvj.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260324082127_neUzcm.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260324082127_xiIixe.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260324082127_Zlt11F.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260324082127_AEYA6q.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260324082127_qYpqh1.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"9\":{\"okpId\":26,\"value\":\"\"},\"15\":{\"okpId\":94,\"value\":\"45\"},\"17\":{\"okpId\":97,\"value\":\"1\"},\"18\":{\"okpId\":98,\"value\":\"2\"}},\"price\":200,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=686486\",\"detailsUrl\":\"\\\/686486\"},{\"obkId\":\"736641\",\"name\":\"Apartament 11\\\/26  E\",\"description\":\"\",\"category\":\"Widok Na Rzek\u0119\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200602104646_n8Ib8x.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200602104646_08Wtjm.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200602104646_bvuVZY.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200602104646_kYGaJy.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200602104646_anVe01.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200602104646_7GLRBt.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200602104646_WQysNQ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200602104646_rzmem6.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200602104646_zfbfIp.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200602104646_k29dzB.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200602104646_rEloHK.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200602104646_qoiV7k.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200602104646_nre4D7.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200602104646_rheOdg.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200602104646_0YU3sr.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200602104646_9iXBlE.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200602104646_qg1Bn7.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200602104646_n5DjQa.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"9\":{\"okpId\":26,\"value\":\"\"},\"19\":{\"okpId\":94,\"value\":\"55\"},\"21\":{\"okpId\":97,\"value\":\"2\"},\"22\":{\"okpId\":98,\"value\":\"3\"}},\"price\":300,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=736641\",\"detailsUrl\":\"\\\/736641\"},{\"obkId\":\"800133\",\"name\":\"Apartament 11\\\/39\",\"description\":\"\",\"category\":\"Widok Na Rzek\u0119\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210519173804_R31KLp.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210519173804_JCxwzB.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210519173804_T6o3Ss.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210519173804_mQKo8F.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210519173804_FHGTey.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210519173804_99TxmC.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210519173804_MMuYCh.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210519173804_d3Zi9U.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210519173804_bZseBg.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210519173804_DX3K8S.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210519173804_ZMvqwW.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210519173804_RoxPFW.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210519173804_m2WwTH.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210519173804_0OrirA.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210519173804_BMf45U.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210519173804_oySx5N.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210519173804_IEQ8bF.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210608125453_dByU6P.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"9\":{\"okpId\":26,\"value\":\"\"},\"13\":{\"okpId\":94,\"value\":\"55\"},\"15\":{\"okpId\":97,\"value\":\"1\"},\"16\":{\"okpId\":98,\"value\":\"2\"}},\"price\":200,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=800133\",\"detailsUrl\":\"\\\/800133\"},{\"obkId\":\"816735\",\"name\":\"Apartament 112 (bez parkingu)\",\"description\":\"\",\"category\":\"Wyspa Spichrz\u00f3w\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210828103246_YSaPXW.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210828103246_y92X01.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210828103246_ZRhGvX.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210828103246_bqx4iC.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210828103246_aT5NJr.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210828103246_OZuMQO.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210828103246_JMUl7R.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210828103246_paXUXN.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210828103246_Bvbwji.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210828103246_n7G9vZ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210828103246_FSmYA1.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210828103246_J7TFLR.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210828103246_mMoYr9.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210828103246_yXJHkP.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210828103246_dlgiWz.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210828103246_Q8Wv1o.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210828103246_HOdneh.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\",\"attributes\":[{\"praId\":30,\"value\":\"1\"}]},\"1\":{\"okpId\":10,\"value\":\"\"},\"10\":{\"okpId\":26,\"value\":\"\"},\"19\":{\"okpId\":94,\"value\":\"58\"},\"21\":{\"okpId\":97,\"value\":\"1\"},\"22\":{\"okpId\":98,\"value\":\"2\"}},\"price\":200,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=816735\",\"detailsUrl\":\"\\\/816735\"},{\"obkId\":\"687626\",\"name\":\"Apartament 114\",\"description\":\"\",\"category\":\"Wyspa Spichrz\u00f3w\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210203153739_SYEVcB.png\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210203153739_LIi62Q.png\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210203153739_BZksod.png\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210203153739_1nag7x.png\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210203153739_4YlI32.png\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210203153739_9bVOYH.png\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210203153739_yfljUW.png\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210203153739_7u8xkM.png\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210203153739_4U82un.png\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210203153739_ywzWtd.png\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210203153739_E6qpbM.png\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210203153739_aKTI0l.png\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210203153739_U1rAKY.png\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210203153739_JcGfgG.png\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210203153739_sS5fKC.png\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210203153739_7bJrFf.png\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210203153739_xSGlTB.png\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210203153739_pjEUwX.png\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210203153739_7NWRVu.png\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210203153739_l5d4AU.png\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210203153739_SIPEbJ.png\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210203153739_fkkPLv.png\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210203153739_3OH1Dt.png\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210203153739_PtpMwg.png\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210203153739_TQVdKA.png\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210203153739_3jQufx.png\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210203153739_13jNgl.png\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210203153739_IDwkrr.png\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210203153739_xonc8x.png\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210203153739_WetSQS.png\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210203153739_P4y20v.png\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210203153739_5kF7Ul.png\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210203153739_MFnMZW.png\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210203153739_pB5YrH.png\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210203153739_rQgbZ2.png\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210203153739_m2avvv.png\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210203153739_NJzLTB.png\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210203153739_tRuXTA.png\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210203153739_j2VnvU.png\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210203153739_asm3jx.png\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210203153739_qoR7vB.png\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210203153739_85ugtc.png\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"10\":{\"okpId\":26,\"value\":\"\"},\"16\":{\"okpId\":94,\"value\":\"74\"},\"18\":{\"okpId\":97,\"value\":\"2\"},\"19\":{\"okpId\":98,\"value\":\"3\"}},\"price\":800,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=687626\",\"detailsUrl\":\"\\\/687626\"},{\"obkId\":\"687628\",\"name\":\"Apartament 116\",\"description\":\"\",\"category\":\"Widok Na Rzek\u0119\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260227140709_ICrlbb.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260227140709_W3ah0U.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260227140710_a0Lz6H.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260227140710_OLCYCc.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260227140710_WMTgSu.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260227140710_mmyH9b.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260227140710_T70tlW.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260227140710_tDHXNy.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260227140710_MSFpTD.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260227140710_Q25Lbh.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260227140710_HxwLK2.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260227140710_09gDPl.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260227140710_3WPvch.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260227140710_wV4BRe.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260227140710_TmX4rX.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260227140710_qkVb1z.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260227140710_RxSu0K.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260227140710_ITfIwL.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191007195832_zgvxUm.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260227140710_wgVizz.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191007195832_RaEwnV.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260227140711_GQrtOF.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260227140711_ePbMYH.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"9\":{\"okpId\":26,\"value\":\"\"},\"15\":{\"okpId\":94,\"value\":\"100\"},\"17\":{\"okpId\":97,\"value\":\"3\"},\"18\":{\"okpId\":98,\"value\":\"4\"}},\"price\":700,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=687628\",\"detailsUrl\":\"\\\/687628\"},{\"obkId\":\"687632\",\"name\":\"Apartament 128\",\"description\":\"\",\"category\":\"Widok Na Rzek\u0119\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260227141138_imeqs9.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260227141138_WSAPBc.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260227141138_0W0KET.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260227141138_G4XaOH.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260227141138_PgPdLp.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260227141138_qZy9Mf.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260227141138_eg36n2.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260227141138_tGkLMW.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260227141138_ofbTuo.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260227141138_zawiGr.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260227141138_wULcsD.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260227141138_2EjKzv.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260227141138_nIAxUw.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260227141138_05hxEL.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191007200807_sAKyoI.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191007200807_3bUO1B.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260227141138_1KiVs6.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191007200807_W9R9nn.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191007200807_JrJ4Rj.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260227141138_KXPZRn.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260227141138_W7YpWk.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260227141138_UJfFuz.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"10\":{\"okpId\":26,\"value\":\"\"},\"16\":{\"okpId\":94,\"value\":\"75\"},\"18\":{\"okpId\":97,\"value\":\"2\"},\"19\":{\"okpId\":98,\"value\":\"3\"}},\"price\":350,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=687632\",\"detailsUrl\":\"\\\/687632\"},{\"obkId\":\"718631\",\"name\":\"Apartament 132A\",\"description\":\"Eleganckie mieszkanie w Gda\u0144sku o powierzchni 45\u202fm\u00b2 dla 4 os\u00f3b. Sk\u0142ada si\u0119 z 2 pokoi i 1 sypialni z du\u017cym \u0142\u00f3\u017ckiem ma\u0142\u017ce\u0144skim. Do dyspozycji go\u015bci jest balkon z widokiem na rzek\u0119, w pe\u0142ni wyposa\u017cony aneks kuchenny, \u0142azienka z prysznicem, suszarka do w\u0142os\u00f3w oraz telewizor. Mieszkanie oferuje bezprzewodowy internet, centralne ogrzewanie, r\u0119czniki i po\u015bciel, zapewniaj\u0105c komfortowy pobyt w wysokim standardzie.\",\"category\":\"Wyspa Spichrz\u00f3w\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241204211444_Mi4RoH.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241204211444_A6XKBl.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241204211444_Im4ZGp.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241204211444_9eNbad.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241204211444_QS0dHQ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241204211444_e9NR7j.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241204211444_RYtmwX.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241204211444_RopteE.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241204211445_zOEhyY.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241204211445_3weW97.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241204211445_YbGoCq.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241204211445_OljtfH.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241204211445_dXOzsE.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241204211445_nLMAeU.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241204211445_VykMBX.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241204211445_jX1YvJ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241204211445_l51TVE.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241204211445_D8if4E.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"9\":{\"okpId\":26,\"value\":\"\"},\"16\":{\"okpId\":97,\"value\":\"1\"},\"17\":{\"okpId\":98,\"value\":\"2\"}},\"price\":350,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=718631\",\"detailsUrl\":\"\\\/718631\"},{\"obkId\":\"718633\",\"name\":\"Apartament 132B (bez parkingu)\",\"description\":\"Apartament zlokalizowany w Gda\u0144sku przy ulicy Toru\u0144skiej 15.Odleg\u0142o\u015b\u0107 do Starego Miasta to oko\u0142o 700 m czyli 10 minut spacerem.Jest to apartament typu studio - jedno pomieszczenie z \u0142\u00f3\u017ckiem.Wyposa\u017cony w telewizor oraz \u0142azienk\u0119 z prysznicem. Posiada r\u00f3wnie\u017c aneks kuchenny a w nim niezb\u0119dne naczynia, szk\u0142o, garnki i patelnie oraz p\u0142yta indukcyjna i zmywarka.W mieszkaniu nie ma balkonu, pralki ani piekarnika.Mieszkanie idealne dla 2 os\u00f3b.Zapraszamy do rezerwacji.\",\"category\":\"Wyspa Spichrz\u00f3w\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241211222141_g8KOT0.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241211222141_lFm5wu.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241211222141_6cGQ0S.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241211222141_KSGIYN.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241211222141_81GVzD.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241211222141_jDEiLm.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241211222141_pokWfK.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241211222141_GxOv0E.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241211222141_sCYNYZ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241211222141_M9322D.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241211222141_nLa7zg.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241211222141_MHCi7T.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241211222141_33CUAO.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241211222141_EeevGQ.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"10\":{\"okpId\":94,\"value\":\"30\"},\"13\":{\"okpId\":97,\"value\":\"1\"},\"14\":{\"okpId\":98,\"value\":\"2\"}},\"price\":250,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=718633\",\"detailsUrl\":\"\\\/718633\"},{\"obkId\":\"687638\",\"name\":\"Apartament 134\",\"description\":\"\",\"category\":\"Widok Na Rzek\u0119\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191007202822_srXFkj.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191007202822_dgpSS9.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191007202822_IVtmvZ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191007202822_gSx2ZK.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191007202822_cLenCM.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191007202822_7LSxNf.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191007202822_g4dmqX.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191007202822_KvbEh9.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191007202822_1ouLi0.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191007202822_9JQ95E.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191007202822_h6011k.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191007202822_htRdW5.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191007202822_ND84CX.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191007202822_rfp6sk.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191007202822_tqf0Zc.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191007202822_AsB4P8.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191007202822_2PT3Cc.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191007202822_KZv194.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191007202823_GugIUd.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191007202823_hkTV83.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"10\":{\"okpId\":26,\"value\":\"\"},\"15\":{\"okpId\":94,\"value\":\"100\"},\"17\":{\"okpId\":97,\"value\":\"2\"},\"18\":{\"okpId\":98,\"value\":\"3\"}},\"price\":350,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=687638\",\"detailsUrl\":\"\\\/687638\"},{\"obkId\":\"721397\",\"name\":\"Apartament 17  F\",\"description\":\"\",\"category\":\"Wyspa Spichrz\u00f3w\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260324082413_KJ6tTA.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260324082413_MTvXAf.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260324082413_NeXL56.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260324082413_ZMADG0.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260324082413_oPs4ih.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260324082413_lfLjdM.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260324082413_i3Dplq.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260324082413_rszdG0.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260324082413_7TaqTU.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260324082413_B8GXJz.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260324082413_ioOZAT.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200318111836_F2cNIF.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200318111836_YdnHWS.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260324082413_pZx8uq.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200318111836_ftK63v.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260324082413_nPmsQX.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260324082413_CTAifT.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260324082413_HOSyll.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260324082413_zQPEUx.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260324082413_aW9QDE.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260324082413_p3AqBQ.jpg\"],\"facilities\":{\"0\":{\"okpId\":26,\"value\":\"\"},\"2\":{\"okpId\":94,\"value\":\"100\"},\"3\":{\"okpId\":97,\"value\":\"2\"},\"4\":{\"okpId\":98,\"value\":\"3\"}},\"price\":400,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=721397\",\"detailsUrl\":\"\\\/721397\"},{\"obkId\":\"688134\",\"name\":\"Apartament 178A C\",\"description\":\"Przytulny apartament w Gda\u0144sku o powierzchni 30 m\u00b2, dla 4 os\u00f3b. Sk\u0142ada si\u0119 z jednego pomieszczenia z \u0142\u00f3\u017ckiem podw\u00f3jnym i rozk\u0142adan\u0105 sof\u0105. Do dyspozycji go\u015bci jest balkon, aneks kuchenny z lod\u00f3wk\u0105, zmywark\u0105, czajnikiem elektrycznym, ekspresem do kawy oraz zestawem do parzenia kawy i herbaty. W \u0142azience znajduje si\u0119 prysznic i suszarka do w\u0142os\u00f3w. Apartament wyposa\u017cony jest w centralne ogrzewanie, bezprzewodowy internet, a tak\u017ce zapewnia hotelowe tekstylia i r\u0119czniki, gwarantuj\u0105c komfortowy pobyt w wysokim standardzie\",\"category\":\"Wyspa Spichrz\u00f3w\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240411143414_xStVuE.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240411143414_O0KcG8.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240411143414_ZnNVOn.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240411143414_tnoS8j.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240411143414_qDjjTO.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240411143414_SAC9CA.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240411143415_dRQyzF.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240411143415_n73BHm.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240411143415_fi4rbh.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240411143415_PyIVjG.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240411143415_DuxS9O.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240411143415_8MNvm7.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240411143415_jgZ2MO.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240411143415_r7QR3z.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240411143415_Wl0LTA.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240411143415_mHMvyB.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240411143642_FrNu1p.jpg\"],\"facilities\":{\"0\":{\"okpId\":10,\"value\":\"\"},\"8\":{\"okpId\":26,\"value\":\"\"},\"13\":{\"okpId\":94,\"value\":\"30\"},\"15\":{\"okpId\":97,\"value\":\"0\"},\"16\":{\"okpId\":98,\"value\":\"1\"}},\"price\":200,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=688134\",\"detailsUrl\":\"\\\/688134\"},{\"obkId\":\"688136\",\"name\":\"Apartament 178B (bez parkingu)\",\"description\":\"Apartament zlokalizowany w Gda\u0144sku przy ulicy Toru\u0144skiej 15.Odleg\u0142o\u015b\u0107 do Starego Miasta to oko\u0142o 700 m czyli 10 minut spacerem.Jest to apartament typu studio - jedno pomieszczenie z \u0142\u00f3\u017ckiem.Wyposa\u017cony w telewizor oraz \u0142azienk\u0119 z prysznicem. Posiada r\u00f3wnie\u017c aneks kuchenny a w nim niezb\u0119dne naczynia, szk\u0142o, garnki i patelnie oraz p\u0142yta indukcyjna i zmywarka.W mieszkaniu nie ma balkonu, pralki ani piekarnika.Mieszkanie idealne dla 2 os\u00f3b.Zapraszamy do rezerwacji.\",\"category\":\"Wyspa Spichrz\u00f3w\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240411143617_md8N9k.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240411143617_KxgAeH.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240411143617_kzuwvd.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240411143617_LZ98cy.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240411143617_siIoLJ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240411143617_vPC1O8.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240411143617_3sgkgx.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240411143617_qh5KW8.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240411143617_b51eIO.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240411143617_7X85jh.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240411143617_CusEcv.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240411143617_r9cCC4.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240411143617_wqPfRs.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240411143617_7fKkb2.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240411143617_vIXyjg.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240411143617_OL2k0g.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"11\":{\"okpId\":94,\"value\":\"30\"},\"14\":{\"okpId\":97,\"value\":\"1\"},\"15\":{\"okpId\":98,\"value\":\"0\"}},\"price\":200,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=688136\",\"detailsUrl\":\"\\\/688136\"},{\"obkId\":\"718635\",\"name\":\"Apartament 179A\",\"description\":\"Przytulny apartament w Gda\u0144sku o powierzchni 30 m\u00b2, dla 4 os\u00f3b. Sk\u0142ada si\u0119 z jednego pomieszczenia z \u0142\u00f3\u017ckiem podw\u00f3jnym i rozk\u0142adan\u0105 sof\u0105. Do dyspozycji go\u015bci jest balkon, aneks kuchenny z lod\u00f3wk\u0105, zmywark\u0105, czajnikiem elektrycznym, ekspresem do kawy oraz zestawem do parzenia kawy i herbaty. W \u0142azience znajduje si\u0119 prysznic i suszarka do w\u0142os\u00f3w. Apartament wyposa\u017cony jest w centralne ogrzewanie, bezprzewodowy internet, a tak\u017ce zapewnia hotelowe tekstylia i r\u0119czniki, gwarantuj\u0105c komfortowy pobyt w wysokim standardzie\",\"category\":\"Wyspa Spichrz\u00f3w\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250127134827_d4HbM7.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250127134827_mdzfE9.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250127134827_uOsl2f.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250127134827_VVb8lX.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250127134827_wUF4pN.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250127134827_1lfRy2.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250127134827_w0i42x.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250127134827_WXujp8.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250127134827_iUc5tj.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250127134827_xuOHcW.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250127134827_mQFX6Z.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250127134827_5JDyGS.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250127134827_XjqU6I.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250127134827_58RQgb.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250127134827_4pzNRL.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250127134827_8DNdLn.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"9\":{\"okpId\":26,\"value\":\"\"},\"13\":{\"okpId\":94,\"value\":\"27\"},\"15\":{\"okpId\":97,\"value\":\"1\"},\"16\":{\"okpId\":98,\"value\":\"2\"}},\"price\":200,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=718635\",\"detailsUrl\":\"\\\/718635\"},{\"obkId\":\"718637\",\"name\":\"Apartament 179B (bez parkingu)\",\"description\":\"Apartament zlokalizowany w Gda\u0144sku przy ulicy Toru\u0144skiej 15.Odleg\u0142o\u015b\u0107 do Starego Miasta to oko\u0142o 700 m czyli 10 minut spacerem.Jest to apartament typu studio - jedno pomieszczenie z \u0142\u00f3\u017ckiem.Wyposa\u017cony w telewizor oraz \u0142azienk\u0119 z prysznicem. Posiada r\u00f3wnie\u017c aneks kuchenny a w nim niezb\u0119dne naczynia, szk\u0142o, garnki i patelnie oraz p\u0142yta indukcyjna i zmywarka.W mieszkaniu nie ma balkonu, pralki ani piekarnika.Mieszkanie idealne dla 2 os\u00f3b.Zapraszamy do rezerwacji.\",\"category\":\"Wyspa Spichrz\u00f3w\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241211134823_IkBmJ2.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241211134823_AG1e2N.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241211134823_rrqdlG.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241211134823_Bvp9MC.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241211134823_D3qsTO.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241211134824_lZwAxx.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241211134823_R4d2Gz.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241211134823_b2B7Pp.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241211134823_6EyVJ6.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241211134824_NHfSbt.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241211134824_xx2qgQ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241211134824_IKlKEJ.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"11\":{\"okpId\":94,\"value\":\"30\"},\"14\":{\"okpId\":97,\"value\":\"1\"},\"15\":{\"okpId\":98,\"value\":\"2\"}},\"price\":250,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=718637\",\"detailsUrl\":\"\\\/718637\"},{\"obkId\":\"688138\",\"name\":\"Apartament 183A\",\"description\":\"\u200bPrzytulny apartament w Gda\u0144sku o powierzchni 30 m\u00b2, dla 4 os\u00f3b. Sk\u0142ada si\u0119 z jednego pomieszczenia z \u0142\u00f3\u017ckiem podw\u00f3jnym i rozk\u0142adan\u0105 sof\u0105. Do dyspozycji go\u015bci jest balkon, aneks kuchenny z lod\u00f3wk\u0105, zmywark\u0105, czajnikiem elektrycznym, ekspresem do kawy oraz zestawem do parzenia kawy i herbaty. W \u0142azience znajduje si\u0119 prysznic i suszarka do w\u0142os\u00f3w. Apartament wyposa\u017cony jest w centralne ogrzewanie, bezprzewodowy internet, a tak\u017ce zapewnia hotelowe tekstylia i r\u0119czniki, gwarantuj\u0105c komfortowy pobyt w wysokim standardzie\",\"category\":\"Wyspa Spichrz\u00f3w\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250313120447_MYVvAn.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250313120447_B0RYAy.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250313120447_2pNVJ8.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250313120447_K4AEpe.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250313120447_00iOvn.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250313120447_H0P7fv.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250313120447_mhYv5x.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250313120447_w8X5wr.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250313120447_DQBoMD.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250313120447_r062H0.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250313120447_8DvIGH.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250313120447_FXgwlT.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250313120447_VbyQLR.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250313120447_XvCwic.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250313120448_FNb47H.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250313120448_XQuM7o.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250313120448_deeMtu.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"9\":{\"okpId\":26,\"value\":\"\"},\"15\":{\"okpId\":94,\"value\":\"37\"},\"18\":{\"okpId\":97,\"value\":\"1\"},\"19\":{\"okpId\":98,\"value\":\"2\"}},\"price\":200,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=688138\",\"detailsUrl\":\"\\\/688138\"},{\"obkId\":\"688140\",\"name\":\"Apartament 183B (bez parkingu)\",\"description\":\"Apartament zlokalizowany w Gda\u0144sku przy ulicy Toru\u0144skiej 15.Odleg\u0142o\u015b\u0107 do Starego Miasta to oko\u0142o 700 m czyli 10 minut spacerem.Jest to apartament typu studio - jedno pomieszczenie z \u0142\u00f3\u017ckiem.Wyposa\u017cony w telewizor oraz \u0142azienk\u0119 z prysznicem. Posiada r\u00f3wnie\u017c aneks kuchenny a w nim niezb\u0119dne naczynia, szk\u0142o, garnki i patelnie oraz p\u0142yta indukcyjna i zmywarka.W mieszkaniu nie ma balkonu, pralki ani piekarnika.Mieszkanie idealne dla 2 os\u00f3b.Zapraszamy do rezerwacji.\",\"category\":\"Wyspa Spichrz\u00f3w\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250313114315_m08lk4.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250313114315_JQum5m.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250313114315_WwmQAR.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250313114315_GSPP0j.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250313114315_n50It2.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250313114315_EoExFP.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250313114315_y5Iiq1.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250313114315_CKEynW.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250313114315_dJEDiH.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250313114315_qYUkIE.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250313114315_aRiuwV.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250313114315_RbYg2D.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250313114315_DS64jU.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250313114315_Rad5zk.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"14\":{\"okpId\":94,\"value\":\"30\"},\"17\":{\"okpId\":97,\"value\":\"1\"},\"18\":{\"okpId\":98,\"value\":\"1\"}},\"price\":250,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=688140\",\"detailsUrl\":\"\\\/688140\"},{\"obkId\":\"688142\",\"name\":\"Apartament 184A\",\"description\":\"\u200b\u200bPrzytulny apartament w Gda\u0144sku o powierzchni 30 m\u00b2, dla 4 os\u00f3b. Sk\u0142ada si\u0119 z jednego pomieszczenia z \u0142\u00f3\u017ckiem podw\u00f3jnym i rozk\u0142adan\u0105 sof\u0105. Do dyspozycji go\u015bci jest balkon, aneks kuchenny z lod\u00f3wk\u0105, zmywark\u0105, czajnikiem elektrycznym, ekspresem do kawy oraz zestawem do parzenia kawy i herbaty. W \u0142azience znajduje si\u0119 prysznic i suszarka do w\u0142os\u00f3w. Apartament wyposa\u017cony jest w centralne ogrzewanie, bezprzewodowy internet, a tak\u017ce zapewnia hotelowe tekstylia i r\u0119czniki, gwarantuj\u0105c komfortowy pobyt w wysokim standardzie\",\"category\":\"Wyspa Spichrz\u00f3w\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191009191933_FVpear.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191009191933_SAB74k.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191009191933_TFO7nY.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191009191933_ceRaqq.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191009191933_5W3KOf.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191009191933_KRfvQM.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191009191933_in9Y23.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191009191933_DbMPlN.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191009191933_5ZpbZo.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191009191933_EPVBl3.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"9\":{\"okpId\":26,\"value\":\"\"},\"13\":{\"okpId\":94,\"value\":\"37\"},\"15\":{\"okpId\":97,\"value\":\"1\"},\"16\":{\"okpId\":98,\"value\":\"1\"}},\"price\":200,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=688142\",\"detailsUrl\":\"\\\/688142\"},{\"obkId\":\"688144\",\"name\":\"Apartament 184B (bez parkingu)\",\"description\":\"Apartament zlokalizowany w Gda\u0144sku przy ulicy Toru\u0144skiej 15.Odleg\u0142o\u015b\u0107 do Starego Miasta to oko\u0142o 700 m czyli 10 minut spacerem.Jest to apartament typu studio - jedno pomieszczenie z \u0142\u00f3\u017ckiem.Wyposa\u017cony w telewizor oraz \u0142azienk\u0119 z prysznicem. Posiada r\u00f3wnie\u017c aneks kuchenny a w nim niezb\u0119dne naczynia, szk\u0142o, garnki i patelnie oraz p\u0142yta indukcyjna i zmywarka.W mieszkaniu nie ma balkonu, pralki ani piekarnika.Mieszkanie idealne dla 2 os\u00f3b.Zapraszamy do rezerwacji.\",\"category\":\"Wyspa Spichrz\u00f3w\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191009192451_GtWzvo.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191009192451_YBF0jF.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191009192451_oqNB0K.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191009192451_LoQEDl.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191009192451_idGzXw.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191009192451_OxPMNL.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191009192451_8hE9QM.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191009192451_w3OR0W.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191009192451_HHUzcv.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"14\":{\"okpId\":94,\"value\":\"30\"},\"17\":{\"okpId\":97,\"value\":\"1\"},\"18\":{\"okpId\":98,\"value\":\"1\"}},\"price\":200,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=688144\",\"detailsUrl\":\"\\\/688144\"},{\"obkId\":\"688148\",\"name\":\"Apartament 189A\",\"description\":\"\u200bPrzytulny apartament w Gda\u0144sku o powierzchni 30 m\u00b2, dla 4 os\u00f3b. Sk\u0142ada si\u0119 z jednego pomieszczenia z \u0142\u00f3\u017ckiem podw\u00f3jnym i rozk\u0142adan\u0105 sof\u0105. Do dyspozycji go\u015bci jest balkon, aneks kuchenny z lod\u00f3wk\u0105, zmywark\u0105, czajnikiem elektrycznym, ekspresem do kawy oraz zestawem do parzenia kawy i herbaty. W \u0142azience znajduje si\u0119 prysznic i suszarka do w\u0142os\u00f3w. Apartament wyposa\u017cony jest w centralne ogrzewanie, bezprzewodowy internet, a tak\u017ce zapewnia hotelowe tekstylia i r\u0119czniki, gwarantuj\u0105c komfortowy pobyt w wysokim standardzie\",\"category\":\"Wyspa Spichrz\u00f3w\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191009194458_qg8X2G.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191009194458_dvS6Ys.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191009194458_B8zjfK.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191009194458_XVBFZj.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191009194458_Kyz1Ka.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191009194458_wvZlAy.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191009194458_cU0Do2.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191009194458_Ohan9H.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191009194458_8aanEo.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191009194458_drlY1O.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191009194458_q2C2LC.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"9\":{\"okpId\":26,\"value\":\"\"},\"15\":{\"okpId\":94,\"value\":\"37\"},\"17\":{\"okpId\":97,\"value\":\"1\"},\"18\":{\"okpId\":98,\"value\":\"2\"}},\"price\":350,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=688148\",\"detailsUrl\":\"\\\/688148\"},{\"obkId\":\"688150\",\"name\":\"Apartament 189B (bez parkingu)\",\"description\":\"Apartament zlokalizowany w Gda\u0144sku przy ulicy Toru\u0144skiej 15.Odleg\u0142o\u015b\u0107 do Starego Miasta to oko\u0142o 700 m czyli 10 minut spacerem.Jest to apartament typu studio - jedno pomieszczenie z \u0142\u00f3\u017ckiem.Wyposa\u017cony w telewizor oraz \u0142azienk\u0119 z prysznicem. Posiada r\u00f3wnie\u017c aneks kuchenny a w nim niezb\u0119dne naczynia, szk\u0142o, garnki i patelnie oraz p\u0142yta indukcyjna i zmywarka.W mieszkaniu nie ma balkonu, pralki ani piekarnika.Mieszkanie idealne dla 2 os\u00f3b.Zapraszamy do rezerwacji.\",\"category\":\"Wyspa Spichrz\u00f3w\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191009195715_wWU9Et.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191009195715_NhDZJy.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191009195715_kAVBlp.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191009195715_fIsYu1.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191009195715_YGJdX3.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191009195715_E4vubl.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191009195715_zBjHNZ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191009195715_HrhnxL.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191009195715_Gu0HAu.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"13\":{\"okpId\":94,\"value\":\"30\"},\"15\":{\"okpId\":97,\"value\":\"1\"},\"16\":{\"okpId\":98,\"value\":\"1\"}},\"price\":150,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=688150\",\"detailsUrl\":\"\\\/688150\"},{\"obkId\":\"688152\",\"name\":\"Apartament 190A\",\"description\":\"Przytulny apartament w Gda\u0144sku o powierzchni 30 m\u00b2, dla 4 os\u00f3b. Sk\u0142ada si\u0119 z jednego pomieszczenia z \u0142\u00f3\u017ckiem podw\u00f3jnym i rozk\u0142adan\u0105 sof\u0105. Do dyspozycji go\u015bci jest balkon, aneks kuchenny z lod\u00f3wk\u0105, zmywark\u0105, czajnikiem elektrycznym, ekspresem do kawy oraz zestawem do parzenia kawy i herbaty. W \u0142azience znajduje si\u0119 prysznic i suszarka do w\u0142os\u00f3w. Apartament wyposa\u017cony jest w centralne ogrzewanie, bezprzewodowy internet, a tak\u017ce zapewnia hotelowe tekstylia i r\u0119czniki, gwarantuj\u0105c komfortowy pobyt w wysokim standardzie\",\"category\":\"Wyspa Spichrz\u00f3w\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191009200346_2Rassm.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191009200347_qmKlK4.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191009200347_xsTCZA.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191009200347_LSYlaw.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191009200347_d9lOcj.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191009200347_fc7lmH.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191009200347_s7wuB6.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191009200347_WxwIbe.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191009200347_If1eUo.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191009200347_42L8fV.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"9\":{\"okpId\":26,\"value\":\"\"},\"13\":{\"okpId\":94,\"value\":\"36\"},\"15\":{\"okpId\":97,\"value\":\"1\"},\"16\":{\"okpId\":98,\"value\":\"1\"}},\"price\":200,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=688152\",\"detailsUrl\":\"\\\/688152\"},{\"obkId\":\"688154\",\"name\":\"Apartament 190B (bez parkingu)\",\"description\":\"Apartament zlokalizowany w Gda\u0144sku przy ulicy Toru\u0144skiej 15.Odleg\u0142o\u015b\u0107 do Starego Miasta to oko\u0142o 700 m czyli 10 minut spacerem.Jest to apartament typu studio - jedno pomieszczenie z \u0142\u00f3\u017ckiem.Wyposa\u017cony w telewizor oraz \u0142azienk\u0119 z prysznicem. Posiada r\u00f3wnie\u017c aneks kuchenny a w nim niezb\u0119dne naczynia, szk\u0142o, garnki i patelnie oraz p\u0142yta indukcyjna i zmywarka.W mieszkaniu nie ma balkonu, pralki ani piekarnika.Mieszkanie idealne dla 2 os\u00f3b.Zapraszamy do rezerwacji.\",\"category\":\"Wyspa Spichrz\u00f3w\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191009200757_pHmsKL.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191009200757_0FBw1y.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191009200757_Dw7Ot0.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191009200757_IIrrqw.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191009200757_8zphpS.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191009200757_MzuyMF.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191009200757_DTGRDN.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191009200757_J7gZMI.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"14\":{\"okpId\":94,\"value\":\"30\"},\"17\":{\"okpId\":97,\"value\":\"1\"},\"18\":{\"okpId\":98,\"value\":\"1\"}},\"price\":250,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=688154\",\"detailsUrl\":\"\\\/688154\"},{\"obkId\":\"718643\",\"name\":\"Apartament 195A (bez parkingu)\",\"description\":\"\u200bPrzytulny apartament w Gda\u0144sku o powierzchni 30 m\u00b2, dla 4 os\u00f3b. Sk\u0142ada si\u0119 z jednego pomieszczenia z \u0142\u00f3\u017ckiem podw\u00f3jnym i rozk\u0142adan\u0105 sof\u0105. Do dyspozycji go\u015bci jest balkon, aneks kuchenny z lod\u00f3wk\u0105, zmywark\u0105, czajnikiem elektrycznym, ekspresem do kawy oraz zestawem do parzenia kawy i herbaty. W \u0142azience znajduje si\u0119 prysznic i suszarka do w\u0142os\u00f3w. Apartament wyposa\u017cony jest w centralne ogrzewanie, bezprzewodowy internet, a tak\u017ce zapewnia hotelowe tekstylia i r\u0119czniki, gwarantuj\u0105c komfortowy pobyt w wysokim standardzie\",\"category\":\"Wyspa Spichrz\u00f3w\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241204211132_yCMNuQ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241204211132_jbN2ZP.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241204211132_78vcCG.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241204211132_8lXUaM.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241204211132_rsyw9L.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241204211132_MMxcuQ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241204211132_ruyYT1.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241204211132_qWzwbT.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241204211132_1d7OgP.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241204211132_XFcSXt.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241204211132_3kuFoe.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241204211132_RL0S8O.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241204211132_is7req.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241204211132_JanHIf.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241204211132_9FieVo.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241204211132_LCj59N.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200804175617_tY4HwA.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241204211132_Hs4OEQ.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"7\":{\"okpId\":26,\"value\":\"\"},\"12\":{\"okpId\":94,\"value\":\"27\"},\"14\":{\"okpId\":97,\"value\":\"1\"},\"15\":{\"okpId\":98,\"value\":\"2\"}},\"price\":200,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=718643\",\"detailsUrl\":\"\\\/718643\"},{\"obkId\":\"718661\",\"name\":\"Apartament 195B (bez parkingu)\",\"description\":\"Apartament zlokalizowany w Gda\u0144sku przy ulicy Toru\u0144skiej 15.Odleg\u0142o\u015b\u0107 do Starego Miasta to oko\u0142o 700 m czyli 10 minut spacerem.Jest to apartament typu studio - jedno pomieszczenie z \u0142\u00f3\u017ckiem.Wyposa\u017cony w telewizor oraz \u0142azienk\u0119 z prysznicem. Posiada r\u00f3wnie\u017c aneks kuchenny a w nim niezb\u0119dne naczynia, szk\u0142o, garnki i patelnie oraz p\u0142yta indukcyjna i zmywarka.W mieszkaniu nie ma balkonu, pralki ani piekarnika.Mieszkanie idealne dla 2 os\u00f3b.Zapraszamy do rezerwacji.\",\"category\":\"Wyspa Spichrz\u00f3w\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241204210822_UHUgVA.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241204210822_hMRCSR.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241204210822_uUK3DS.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241204210822_e3dw6A.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241204210822_p81gJo.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241204210822_NORrFT.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241204210822_2rg83E.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241204210822_WiHOc1.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241204210822_wLNHyL.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241204210822_tfxLfI.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241204210822_nHBgvt.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241204210822_HOz4AT.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241204210822_c0IYGn.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241204210822_VbBCwm.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241204210822_sfwHys.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241204210822_iNrdHy.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"13\":{\"okpId\":94,\"value\":\"30\"},\"16\":{\"okpId\":97,\"value\":\"1\"},\"17\":{\"okpId\":98,\"value\":\"2\"}},\"price\":250,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=718661\",\"detailsUrl\":\"\\\/718661\"},{\"obkId\":\"688370\",\"name\":\"Apartament 200A (bez parkingu)\",\"description\":\"Apartament zlokalizowany w Gda\u0144sku przy ulicy Toru\u0144skiej 15.Odleg\u0142o\u015b\u0107 do Starego Miasta to oko\u0142o 700 m czyli 10 minut spacerem.Jest to apartament typu studio - jedno pomieszczenie z \u0142\u00f3\u017ckiem.Wyposa\u017cony w telewizor oraz \u0142azienk\u0119 z prysznicem. Posiada r\u00f3wnie\u017c aneks kuchenny a w nim niezb\u0119dne naczynia, szk\u0142o, garnki i patelnie oraz p\u0142yta indukcyjna i zmywarka.W mieszkaniu nie ma balkonu, pralki ani piekarnika.Mieszkanie idealne dla 2 os\u00f3b.Zapraszamy do rezerwacji.\",\"category\":\"Wyspa Spichrz\u00f3w\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250526204015_oNXaom.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250526204015_GsIhmj.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250526204015_Ytaphl.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250526204015_Q4MdH4.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250526204014_SUQwlv.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250526204014_8V3MhM.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250526204014_F60hrg.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250526204014_GNAWH1.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250526204014_5O9bSP.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250526204014_6CY0ka.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250526204014_W86Thm.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250526204014_ada8Kb.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250526204014_wONPJj.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191010184740_HuLH0l.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250526204014_Ak9A3N.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250526204014_bG0nwM.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250526204014_QGZtdt.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"9\":{\"okpId\":26,\"value\":\"\"},\"13\":{\"okpId\":94,\"value\":\"37\"},\"16\":{\"okpId\":97,\"value\":\"1\"},\"17\":{\"okpId\":98,\"value\":\"1\"}},\"price\":150,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=688370\",\"detailsUrl\":\"\\\/688370\"},{\"obkId\":\"688372\",\"name\":\"Apartament 200B (bez parkingu)\",\"description\":\"Apartament zlokalizowany w Gda\u0144sku przy ulicy Toru\u0144skiej 15.Odleg\u0142o\u015b\u0107 do Starego Miasta to oko\u0142o 700 m czyli 10 minut spacerem.Jest to apartament typu studio - jedno pomieszczenie z \u0142\u00f3\u017ckiem.Wyposa\u017cony w telewizor oraz \u0142azienk\u0119 z prysznicem. Posiada r\u00f3wnie\u017c aneks kuchenny a w nim niezb\u0119dne naczynia, szk\u0142o, garnki i patelnie oraz p\u0142yta indukcyjna i zmywarka.W mieszkaniu nie ma balkonu, pralki ani piekarnika.Mieszkanie idealne dla 2 os\u00f3b.Zapraszamy do rezerwacji.\",\"category\":\"Wyspa Spichrz\u00f3w\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250407101014_1GW6K4.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250407101014_zfFM4K.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250407101014_07ZCVf.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250407101014_fuB6Qb.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250407101014_7ol9aN.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250407101014_m24WpS.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250407101014_62VxDy.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250407101014_cghBkI.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250407101014_kn9DUw.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250407101014_s5B7UB.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250407101014_qY4e1N.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250407101014_ZRPBQ7.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250407101014_g6fqn1.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250407101014_S1qFbx.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"14\":{\"okpId\":94,\"value\":\"30\"},\"17\":{\"okpId\":97,\"value\":\"1\"},\"18\":{\"okpId\":98,\"value\":\"1\"}},\"price\":150,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=688372\",\"detailsUrl\":\"\\\/688372\"},{\"obkId\":\"718667\",\"name\":\"Apartament 201A C\",\"description\":\"\u200b\u200bPrzytulny apartament w Gda\u0144sku o powierzchni 30 m\u00b2, dla 4 os\u00f3b. Sk\u0142ada si\u0119 z jednego pomieszczenia z \u0142\u00f3\u017ckiem podw\u00f3jnym i rozk\u0142adan\u0105 sof\u0105. Do dyspozycji go\u015bci jest balkon, aneks kuchenny z lod\u00f3wk\u0105, zmywark\u0105, czajnikiem elektrycznym, ekspresem do kawy oraz zestawem do parzenia kawy i herbaty. W \u0142azience znajduje si\u0119 prysznic i suszarka do w\u0142os\u00f3w. Apartament wyposa\u017cony jest w centralne ogrzewanie, bezprzewodowy internet, a tak\u017ce zapewnia hotelowe tekstylia i r\u0119czniki, gwarantuj\u0105c komfortowy pobyt w wysokim standardzie\",\"category\":\"Wyspa Spichrz\u00f3w\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250326144949_8LgZgC.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250326144949_8CNlfv.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250326144949_SOLKmk.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250326144949_TQz5Wi.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250326144949_cDiJFf.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250326144949_WiK2lQ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250326144949_tsaqP9.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250326144949_35m9sj.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250326144949_s0lym6.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250326144949_8M9QpT.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250326144949_CFreeC.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250326144949_RzbopV.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250326144950_3aVRzI.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250326144950_ocKhUB.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250326144950_4CDY3I.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250326144950_XciWz2.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"9\":{\"okpId\":26,\"value\":\"\"},\"16\":{\"okpId\":94,\"value\":\"27\"},\"19\":{\"okpId\":97,\"value\":\"1\"},\"20\":{\"okpId\":98,\"value\":\"2\"}},\"price\":200,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=718667\",\"detailsUrl\":\"\\\/718667\"},{\"obkId\":\"718669\",\"name\":\"Apartament 201B (bez parkingu)\",\"description\":\"Apartament zlokalizowany w Gda\u0144sku przy ulicy Toru\u0144skiej 15.Odleg\u0142o\u015b\u0107 do Starego Miasta to oko\u0142o 700 m czyli 10 minut spacerem.Jest to apartament typu studio - jedno pomieszczenie z \u0142\u00f3\u017ckiem.Wyposa\u017cony w telewizor oraz \u0142azienk\u0119 z prysznicem. Posiada r\u00f3wnie\u017c aneks kuchenny a w nim niezb\u0119dne naczynia, szk\u0142o, garnki i patelnie oraz p\u0142yta indukcyjna i zmywarka.W mieszkaniu nie ma balkonu, pralki ani piekarnika.Mieszkanie idealne dla 2 os\u00f3b.Zapraszamy do rezerwacji.\",\"category\":\"Wyspa Spichrz\u00f3w\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250326145304_UpkJg3.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250326145304_MibxJ9.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250326145304_1HyjQh.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250326145304_UcmCB4.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250326145304_Rq50f1.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250326145304_jFPELS.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250326145304_bsfxxb.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250326145304_vwXoQT.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250326145304_eHciAx.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250326145304_u25lL1.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250326145304_Orr4i9.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250326145304_Ycteje.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250326145304_s7C8JS.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250326145304_0aJ2Es.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"14\":{\"okpId\":94,\"value\":\"30\"},\"17\":{\"okpId\":97,\"value\":\"1\"},\"18\":{\"okpId\":98,\"value\":\"2\"}},\"price\":250,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=718669\",\"detailsUrl\":\"\\\/718669\"},{\"obkId\":\"688376\",\"name\":\"Apartament 204 G\",\"description\":\"\",\"category\":\"Wyspa Spichrz\u00f3w\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200601165719_aREdr1.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200601165719_bdtGVc.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200601165719_RtfHPI.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200601165719_7lwq0Z.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200601165719_ZWoaNd.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200601165719_gnwOJm.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200601165719_thsbv7.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200601165719_YmNimi.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200601165719_XAPtVv.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200601165719_pe7N0z.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200601165719_5dZrZQ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200601165719_BCdiRZ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200601165719_pfCgdf.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200601165719_29JsxL.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200601165719_XpoYBf.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200601165719_DZsGIq.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200601165719_SGaiNk.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200601165719_kMAmB8.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200601165719_wXCUKN.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200601165719_ERzaeS.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200601165719_f5PiOM.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200601165719_eI0Nvk.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"10\":{\"okpId\":26,\"value\":\"\"},\"15\":{\"okpId\":94,\"value\":\"100\"},\"17\":{\"okpId\":97,\"value\":\"3\"},\"18\":{\"okpId\":98,\"value\":\"4\"}},\"price\":1000,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=688376\",\"detailsUrl\":\"\\\/688376\"},{\"obkId\":\"688378\",\"name\":\"Apartament 205\",\"description\":\"\",\"category\":\"Widok Na Rzek\u0119\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191010191319_95ckNc.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191010191319_7pKrkq.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191010191319_YcfxhI.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191010191319_FBVCZK.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191010191319_tkPvPB.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191010191319_5VTKHc.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191010191320_YHkBiT.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191010191320_cGmCrf.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191010191320_XK7fn1.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210927115332_9GXqgn.png\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"10\":{\"okpId\":26,\"value\":\"\"},\"16\":{\"okpId\":94,\"value\":\"60\"},\"18\":{\"okpId\":97,\"value\":\"2\"},\"19\":{\"okpId\":98,\"value\":\"3\"}},\"price\":650,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=688378\",\"detailsUrl\":\"\\\/688378\"},{\"obkId\":\"688380\",\"name\":\"Apartament 206A (bez parkingu)\",\"description\":\"\u200bPrzytulny apartament w Gda\u0144sku o powierzchni 30 m\u00b2, dla 4 os\u00f3b. Sk\u0142ada si\u0119 z jednego pomieszczenia z \u0142\u00f3\u017ckiem podw\u00f3jnym i rozk\u0142adan\u0105 sof\u0105. Do dyspozycji go\u015bci jest balkon, aneks kuchenny z lod\u00f3wk\u0105, zmywark\u0105, czajnikiem elektrycznym, ekspresem do kawy oraz zestawem do parzenia kawy i herbaty. W \u0142azience znajduje si\u0119 prysznic i suszarka do w\u0142os\u00f3w. Apartament wyposa\u017cony jest w centralne ogrzewanie, bezprzewodowy internet, a tak\u017ce zapewnia hotelowe tekstylia i r\u0119czniki, gwarantuj\u0105c komfortowy pobyt w wysokim standardzie\",\"category\":\"Wyspa Spichrz\u00f3w\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191010191823_w5ksNx.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191010191823_TaRH9f.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191010191823_AtDbjn.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191010191823_sJTeip.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191010191823_EKw1gO.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191010191823_3UuTuW.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191010191823_ZwhGny.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"9\":{\"okpId\":26,\"value\":\"\"},\"14\":{\"okpId\":94,\"value\":\"37\"},\"16\":{\"okpId\":97,\"value\":\"0\"},\"17\":{\"okpId\":98,\"value\":\"1\"}},\"price\":200,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=688380\",\"detailsUrl\":\"\\\/688380\"},{\"obkId\":\"688384\",\"name\":\"Apartament 206B (bez parkingu)\",\"description\":\"Studio Apartament \u2013 Toru\u0144ska 15, Gda\u0144skNowoczesny apartament typu studio, po\u0142o\u017cony zaledwie 10 minut spacerem od gda\u0144skiego Starego Miasta. Idealny dla 2 os\u00f3b.Wn\u0119trze obejmuje wygodne \u0142\u00f3\u017cko, telewizor oraz \u0142azienk\u0119 z prysznicem. Do dyspozycji Go\u015bci jest aneks kuchenny wyposa\u017cony w p\u0142yt\u0119 indukcyjn\u0105, zmywark\u0119 oraz komplet naczy\u0144 i garnk\u00f3w.Przytulna przestrze\u0144, doskona\u0142a lokalizacja i pe\u0142ne wyposa\u017cenie sprawiaj\u0105, \u017ce to idealne miejsce na pobyt w sercu Gda\u0144ska.\",\"category\":\"Wyspa Spichrz\u00f3w\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191010192543_u81GQL.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191010192543_03iXwG.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191010192543_jhRc5L.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191010192543_D8uFav.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191010192543_aLlysz.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191010192543_EjyFPV.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191010192543_pDmCuS.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"13\":{\"okpId\":94,\"value\":\"30\"},\"16\":{\"okpId\":97,\"value\":\"1\"},\"17\":{\"okpId\":98,\"value\":\"1\"}},\"price\":250,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=688384\",\"detailsUrl\":\"\\\/688384\"},{\"obkId\":\"688386\",\"name\":\"Apartament 223A (bez parkingu)\",\"description\":\"\u200b\u200bPrzytulny apartament w Gda\u0144sku o powierzchni 30 m\u00b2, dla 4 os\u00f3b. Sk\u0142ada si\u0119 z jednego pomieszczenia z \u0142\u00f3\u017ckiem podw\u00f3jnym i rozk\u0142adan\u0105 sof\u0105. Do dyspozycji go\u015bci jest balkon, aneks kuchenny z lod\u00f3wk\u0105, zmywark\u0105, czajnikiem elektrycznym, ekspresem do kawy oraz zestawem do parzenia kawy i herbaty. W \u0142azience znajduje si\u0119 prysznic i suszarka do w\u0142os\u00f3w. Apartament wyposa\u017cony jest w centralne ogrzewanie, bezprzewodowy internet, a tak\u017ce zapewnia hotelowe tekstylia i r\u0119czniki, gwarantuj\u0105c komfortowy pobyt w wysokim standardzie\",\"category\":\"Wyspa Spichrz\u00f3w\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191010193746_fDb8UZ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191010193746_xA52DH.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191010193746_7oUdqJ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191010193746_tthCRR.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191010193746_zcbiXK.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191010193746_fMMU6J.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191010193746_qP5jwL.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191010193746_yz34JV.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191010193746_PQqqof.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191010193746_7xDtgy.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191010193746_CqgY8h.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191010193746_5cGAiN.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191010193746_7IyFBg.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191010193746_veUsm9.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"9\":{\"okpId\":26,\"value\":\"\"},\"14\":{\"okpId\":94,\"value\":\"37\"},\"16\":{\"okpId\":97,\"value\":\"0\"},\"17\":{\"okpId\":98,\"value\":\"1\"}},\"price\":200,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=688386\",\"detailsUrl\":\"\\\/688386\"},{\"obkId\":\"688388\",\"name\":\"Apartament 223B (bez parkingu)\",\"description\":\"Studio Apartament \u2013 Toru\u0144ska 15, Gda\u0144skNowoczesny apartament typu studio, po\u0142o\u017cony zaledwie 10 minut spacerem od gda\u0144skiego Starego Miasta. Idealny dla 2 os\u00f3b.Wn\u0119trze obejmuje wygodne \u0142\u00f3\u017cko, telewizor oraz \u0142azienk\u0119 z prysznicem. Do dyspozycji Go\u015bci jest aneks kuchenny wyposa\u017cony w p\u0142yt\u0119 indukcyjn\u0105, zmywark\u0119 oraz komplet naczy\u0144 i garnk\u00f3w.Przytulna przestrze\u0144, doskona\u0142a lokalizacja i pe\u0142ne wyposa\u017cenie sprawiaj\u0105, \u017ce to idealne miejsce na pobyt w sercu Gda\u0144ska.\",\"category\":\"Wyspa Spichrz\u00f3w\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250503152947_Xwjukc.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250503152947_nuLNpq.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250503152947_t64KQ6.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250503152948_D6PVNE.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250503152948_x5P7hP.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250503152948_wzhA3U.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250503152948_DkvfCN.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250503152948_CCoUZz.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250503152948_Fk7qtW.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250503152948_6TryCC.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250503152948_O6r8l0.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250503152948_VNyCd8.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250503152948_NlwZyo.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250503152948_EDxRd8.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250503152948_TVqAQM.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"14\":{\"okpId\":94,\"value\":\"30\"},\"17\":{\"okpId\":97,\"value\":\"1\"},\"18\":{\"okpId\":98,\"value\":\"1\"}},\"price\":250,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=688388\",\"detailsUrl\":\"\\\/688388\"},{\"obkId\":\"688390\",\"name\":\"Apartament 224 E\",\"description\":\"\",\"category\":\"Wyspa Spichrz\u00f3w\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260209103112_2CDrxC.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260209103112_0yX3Wg.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260209103112_PIUrDM.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260209103112_IGpRwK.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260209103112_8UclH8.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260209103112_7ko6TW.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260209103112_aLme2n.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260209103112_3JoCBA.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260209103112_h1TyXx.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260209103112_bE5bxx.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260209103112_91MOjb.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260209103112_ZrqdUU.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260209103112_tYbHUH.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260209103112_a4bFWA.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260209103112_MONS9V.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260209103112_PNYzYG.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260209103112_ohHSsL.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260209103112_975EtI.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260209103112_HQVHJX.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"10\":{\"okpId\":26,\"value\":\"\"},\"16\":{\"okpId\":94,\"value\":\"65\"},\"18\":{\"okpId\":97,\"value\":\"2\"},\"19\":{\"okpId\":98,\"value\":\"3\"}},\"price\":250,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=688390\",\"detailsUrl\":\"\\\/688390\"},{\"obkId\":\"688394\",\"name\":\"Apartament 228 \",\"description\":\"\",\"category\":\"Wyspa Spichrz\u00f3w\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260215144604_h89ouj.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260215144605_F2LayB.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260215144605_IjyFkr.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260215144605_npivSC.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260215144605_jIwGQ3.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260215144605_NuTZwQ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260215144605_SWI7mJ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260215144605_GpaOXp.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260215144605_GUDyzw.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260215144605_OYmxgC.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260215144605_nnRIy2.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260215144605_TJp66M.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260215144605_ITq727.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260215144605_YwsXnN.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260215144605_0QApi8.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260215144605_VG75kO.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191010200235_Dma8bE.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260215144605_NnvLpo.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260215144605_FDsmBU.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"9\":{\"okpId\":26,\"value\":\"\"},\"14\":{\"okpId\":97,\"value\":\"2\"},\"15\":{\"okpId\":98,\"value\":\"3\"}},\"price\":250,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=688394\",\"detailsUrl\":\"\\\/688394\"},{\"obkId\":\"904044\",\"name\":\"Apartament 30\\\/17\",\"description\":\"\",\"category\":\"Wyspa Spichrz\u00f3w\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230709125511_dxaDZI.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230709125511_0LQiFY.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230709125511_qbbxvr.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230709125511_NfiCyR.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230709125511_woPyFa.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230709125511_VQQES2.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230709125511_uwXchJ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230709125512_nCOvSm.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230709125512_5xh3ew.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230709125512_mYGRyA.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230709125512_XbqrEC.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230709125512_j3NasH.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230709125512_Gvplgt.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230709125512_04XMDw.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230709125512_AjfMwF.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230709125512_NpZdzx.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230709125512_HTeKrb.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"14\":{\"okpId\":97,\"value\":\"2\"},\"15\":{\"okpId\":98,\"value\":\"3\"}},\"price\":300,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=904044\",\"detailsUrl\":\"\\\/904044\"},{\"obkId\":\"687326\",\"name\":\"Apartament 39\",\"description\":\"\",\"category\":\"Widok Na Rzek\u0119\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260629123900_Dr6eGB.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260629123900_FJzeZ1.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260629123900_0cqQoZ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260629123900_sMT6qI.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260629123900_jOhiCl.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260629123900_MG8vNQ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260629123900_h16pQf.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260629123900_bp8TAA.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260629123900_3CLdCV.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260629123900_bgymwW.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260629123900_wVVQrv.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260629123900_ads2Y6.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260629123900_ZZHzNF.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260629123900_Tjdf4N.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260629123900_N7WGaL.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260629123900_xBosF3.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260629123900_9CSflP.jpg\"],\"facilities\":{\"0\":{\"okpId\":10,\"value\":\"\"},\"8\":{\"okpId\":26,\"value\":\"\"},\"12\":{\"okpId\":94,\"value\":\"60\"},\"14\":{\"okpId\":97,\"value\":\"1\"},\"15\":{\"okpId\":98,\"value\":\"2\"}},\"price\":400,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=687326\",\"detailsUrl\":\"\\\/687326\"},{\"obkId\":\"718675\",\"name\":\"Apartament 4 (bez parkingu)\",\"description\":\"\",\"category\":\"Wyspa Spichrz\u00f3w\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200604162827_67dwM5.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200604162827_CHuDek.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200604162827_j81NAc.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200604162827_T8q1Ai.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200604162827_MQmDGm.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200604162827_Eg4dh4.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200604162827_HQZqMH.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"10\":{\"okpId\":26,\"value\":\"\"},\"16\":{\"okpId\":94,\"value\":\"59\"},\"18\":{\"okpId\":97,\"value\":\"1\"},\"19\":{\"okpId\":98,\"value\":\"2\"}},\"price\":300,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=718675\",\"detailsUrl\":\"\\\/718675\"},{\"obkId\":\"687328\",\"name\":\"Apartament 42A D\",\"description\":\"Apartament 42A w Staywin.pl w Gda\u0144sku to eleganckie, 45\u202fm\u00b2 mieszkanie dla 4 os\u00f3b. Sk\u0142ada si\u0119 z salonu i sypialni z du\u017cym \u0142\u00f3\u017ckiem ma\u0142\u017ce\u0144skim. Do dyspozycji go\u015bci jest balkon z widokiem na rzek\u0119, w pe\u0142ni wyposa\u017cony aneks kuchenny, \u0142azienka z prysznicem, suszarka do w\u0142os\u00f3w oraz telewizor. Apartament oferuje bezprzewodowy internet, centralne ogrzewanie, r\u0119czniki i po\u015bciel, zapewniaj\u0105c komfortowy pobyt w wysokim standardzie.\",\"category\":\"Wyspa Spichrz\u00f3w\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260629125434_kLrg6g.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260629125434_gkgFKe.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260629125434_ACUxFv.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260629125435_Cw59IT.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260629125435_6oKrlI.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260629125435_fj9d5k.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260629125435_a48bah.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260629125435_yZFawd.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260629125435_o0lkEt.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260629125435_69sb4C.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191006212241_uLqQJE.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260629125435_sKrWFa.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260629125435_RJn3JP.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260629125435_p7WZUR.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260629125435_dRs7EU.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260629125435_hISZD9.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260629125435_I9crZZ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260629125435_XhtGPQ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191006212241_saJx3l.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"9\":{\"okpId\":26,\"value\":\"\"},\"17\":{\"okpId\":94,\"value\":\"45\"},\"19\":{\"okpId\":97,\"value\":\"1\"},\"20\":{\"okpId\":98,\"value\":\"2\"}},\"price\":250,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=687328\",\"detailsUrl\":\"\\\/687328\"},{\"obkId\":\"687330\",\"name\":\"Apartament 42B (bez parkingu) A\",\"description\":\"Apartament zlokalizowany w Gda\u0144sku przy ulicy Toru\u0144skiej 15.Odleg\u0142o\u015b\u0107 do Starego Miasta to oko\u0142o 700 m czyli 10 minut spacerem.Jest to apartament typu studio - jedno pomieszczenie z \u0142\u00f3\u017ckiem.Wyposa\u017cony w telewizor oraz \u0142azienk\u0119 z prysznicem. Posiada r\u00f3wnie\u017c aneks kuchenny a w nim niezb\u0119dne naczynia, szk\u0142o, garnki i patelnie oraz p\u0142yta indukcyjna i zmywarka.W mieszkaniu nie ma balkonu, pralki ani piekarnika.Mieszkanie idealne dla 2 os\u00f3b.Zapraszamy do rezerwacji.\",\"category\":\"Wyspa Spichrz\u00f3w\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240612223824_o1CUWR.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240612223824_vughLi.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240612223824_5e78Uo.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240612223824_eXvuaG.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240612223824_MLZzMg.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240612223824_p4LVda.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240612223824_CuEiCC.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240612223824_oppYzs.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240612223824_EueC9m.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240612223824_CvcCUM.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240612223824_8rsn5i.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240612223824_GRAMbK.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240612223825_8sVWe5.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240612223825_NEVX2g.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240612223825_3gvOrV.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"15\":{\"okpId\":94,\"value\":\"30\"},\"17\":{\"okpId\":97,\"value\":\"1\"},\"18\":{\"okpId\":98,\"value\":\"1\"}},\"price\":150,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=687330\",\"detailsUrl\":\"\\\/687330\"},{\"obkId\":\"985627\",\"name\":\"Apartament 49\",\"description\":\"Zapraszamy do apartamentu zlokalizowanego w centrum miasta, oddalonego od Zielonej Bramy zaledwie o 1,2 km (10 minut spacerem).Apartament sk\u0142ada si\u0119 z salonu z aneksem kuchennym, sypialni i \u0142azienki.Apartament idealny dla 4 os\u00f3b. W salonie znajduje si\u0119 rozk\u0142adana sofa, kt\u00f3ra mo\u017ce pomie\u015bci\u0107 dwie osoby. Aneks kuchenny wyposa\u017cony jest we wszystkie niezb\u0119dne sprz\u0119ty i naczynia aby przyrz\u0105dzi\u0107 posi\u0142ki. Mamy tu p\u0142yt\u0119 kuchenn\u0105, piekarnik, zmywark\u0119, czajnik elektryczny, ekspres przelewowy do kawy, szklanki, kieliszki, talerze, garnki, patelnie. W sypialni znajduje si\u0119 \u0142o\u017ce o wymiarach 160 x 200 cm.W \u0142azience znajdziecie Pa\u0144stwo wann\u0119 oraz pralk\u0119. Jest to idealne miejsce dla pobytu rodziny lub grupy przyjaci\u00f3\u0142.\",\"category\":\"Wyspa Spichrz\u00f3w\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251110114350_wAtRPc.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251110114350_wI4cen.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251110114350_E8HEdD.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251110114350_U8zuJx.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251110114350_0xQOhP.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251110114350_TPDSHD.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251110114350_jLZwSS.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251110114350_2jWfEu.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251110114350_GMfH6k.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251110114350_ao8ZKJ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251110114350_8zVpyT.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251110114350_04vt9J.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251110114350_zLEva9.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251110114350_odUMst.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251110114350_BqNPYr.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251110114350_YxBfJB.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251110114350_7ZUeID.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"10\":{\"okpId\":26,\"value\":\"\"},\"14\":{\"okpId\":94,\"value\":\"42\"},\"17\":{\"okpId\":97,\"value\":\"1\"},\"18\":{\"okpId\":98,\"value\":\"2\"}},\"price\":250,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=985627\",\"detailsUrl\":\"\\\/985627\"},{\"obkId\":\"721399\",\"name\":\"Apartament 5\\\/4\",\"description\":\"\",\"category\":\"Stare Miasto i Marina\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240130123353_GcxPuG.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240130123353_JAengy.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240130123354_UKLwKB.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240130123354_GobLlg.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240130123354_BEDemr.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240130123354_13uTY9.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240130123354_KEF5ah.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240130123354_aGxK9Y.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240130123354_zDON6N.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240130123354_6gc7k3.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240130123354_Pg7DwH.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240130123354_JF0A1f.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240130123354_WOIOlT.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240130123354_FP1Wv7.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240130123354_ucWx26.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240130123354_vodC3W.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240130123354_PeZMcG.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240130123354_tt0o78.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240130123354_xmXGYF.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240130123354_VIJlaQ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240130123354_wBbJBb.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\",\"attributes\":[{\"praId\":30,\"value\":\"1\"}]},\"1\":{\"okpId\":10,\"value\":\"\"},\"10\":{\"okpId\":26,\"value\":\"\"},\"17\":{\"okpId\":94,\"value\":\"100\"},\"19\":{\"okpId\":97,\"value\":\"3\"},\"20\":{\"okpId\":98,\"value\":\"4\"}},\"price\":400,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=721399\",\"detailsUrl\":\"\\\/721399\"},{\"obkId\":\"687332\",\"name\":\"Apartament 51A\",\"description\":\"Apartament 42A w Staywin.pl w Gda\u0144sku to eleganckie, 45\u202fm\u00b2 mieszkanie dla 4 os\u00f3b. Sk\u0142ada si\u0119 z 2 pokoi i 1 sypialni z du\u017cym \u0142\u00f3\u017ckiem ma\u0142\u017ce\u0144skim. Do dyspozycji go\u015bci jest balkon z widokiem na rzek\u0119, w pe\u0142ni wyposa\u017cony aneks kuchenny, \u0142azienka z prysznicem, suszarka do w\u0142os\u00f3w oraz telewizor. Apartament oferuje bezprzewodowy internet, centralne ogrzewanie, r\u0119czniki i po\u015bciel, zapewniaj\u0105c komfortowy pobyt w wysokim standardzie.\",\"category\":\"Wyspa Spichrz\u00f3w\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240531142815_vehTmX.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240531142815_sVnxJh.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240531142816_rbblwK.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240531142815_azLvt1.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240531142815_y7qFkJ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240531142815_iz7mEt.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240531142815_btgi0U.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240531142815_SPqO3B.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240531142815_HfCzfz.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240531142815_sWYH0y.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240531142816_vTzLRT.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240531142815_Z0ZCTT.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240531142815_bI81Na.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240531142815_d7U2wV.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240531142815_HZO9GU.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"9\":{\"okpId\":26,\"value\":\"\"},\"17\":{\"okpId\":97,\"value\":\"1\"},\"18\":{\"okpId\":98,\"value\":\"1\"}},\"price\":250,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=687332\",\"detailsUrl\":\"\\\/687332\"},{\"obkId\":\"687334\",\"name\":\"Apartament 51B (bez parkingu)\",\"description\":\"Apartament zlokalizowany w Gda\u0144sku przy ulicy Toru\u0144skiej 15.Odleg\u0142o\u015b\u0107 do Starego Miasta to oko\u0142o 700 m czyli 10 minut spacerem.Jest to apartament typu studio - jedno pomieszczenie z \u0142\u00f3\u017ckiem.Wyposa\u017cony w telewizor oraz \u0142azienk\u0119 z prysznicem. Posiada r\u00f3wnie\u017c aneks kuchenny a w nim niezb\u0119dne naczynia, szk\u0142o, garnki i patelnie oraz p\u0142yta indukcyjna i zmywarka.W mieszkaniu nie ma balkonu, pralki ani piekarnika.Mieszkanie idealne dla 2 os\u00f3b.Zapraszamy do rezerwacji.\",\"category\":\"Wyspa Spichrz\u00f3w\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191006214032_4vE3KL.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191006214032_zcYIuz.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191006214032_TeaM5E.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191006214032_OFgQy0.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191006214032_6ORRDz.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191006214033_khcyno.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191006214033_EZ9Pkj.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191006214033_B7G21A.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"16\":{\"okpId\":94,\"value\":\"30\"},\"19\":{\"okpId\":97,\"value\":\"1\"},\"20\":{\"okpId\":98,\"value\":\"1\"}},\"price\":150,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=687334\",\"detailsUrl\":\"\\\/687334\"},{\"obkId\":\"721405\",\"name\":\"Apartament 70\\\/15\",\"description\":\"\",\"category\":\"Widok Na Rzek\u0119\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200318130132_CPk7PI.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200318130132_ReAzuv.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200318130133_Ba7RJD.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200318130133_Kzk1RQ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200318130133_DmeBA3.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200318130132_zfLrcj.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200318130132_R3o411.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200318130132_nyKeux.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200318130132_Wca4O1.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200318130132_2ADYrh.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200318130132_y0SIhS.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200318130132_x3yvC4.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200318130132_HBhKXV.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200318130132_uFMHaZ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200318130133_XTl5MN.jpg\"],\"facilities\":[{\"okpId\":98,\"value\":\"3\"}],\"price\":600,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=721405\",\"detailsUrl\":\"\\\/721405\"},{\"obkId\":\"683848\",\"name\":\"Apartament 71\\\/104\",\"description\":\"\",\"category\":\"Wyspa Spichrz\u00f3w\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20201204120455_Jxlsze.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190923144604_VLarbX.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190923144604_a1sy5g.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190923144604_7gTNee.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190923144604_9XN2H7.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190923144604_bBbi7A.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190923144604_8AY9ZN.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190923144604_08Aq1W.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190923144604_f6iQut.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190923144604_wHTRhq.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"10\":{\"okpId\":26,\"value\":\"\"},\"20\":{\"okpId\":94,\"value\":\"47\"},\"22\":{\"okpId\":97,\"value\":\"1\"},\"23\":{\"okpId\":98,\"value\":\"2\"}},\"price\":200,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=683848\",\"detailsUrl\":\"\\\/683848\"},{\"obkId\":\"718677\",\"name\":\"Apartament 71\\\/115\",\"description\":\"\",\"category\":\"Wyspa Spichrz\u00f3w\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200716155741_Pf1X9q.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200716155741_tNgp6R.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200716155741_NXa6Gb.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200716155741_RCbzV6.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200716155741_gytbfD.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200716155741_n5mU9P.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200716155741_KG0ejw.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200716155741_MwDVnO.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200716155741_fWXpN3.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200716155741_pJ2R9f.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200716155741_GLulxG.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200716155741_UTFhU1.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"13\":{\"okpId\":97,\"value\":\"4\"},\"14\":{\"okpId\":98,\"value\":\"5\"}},\"price\":900,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=718677\",\"detailsUrl\":\"\\\/718677\"},{\"obkId\":\"721403\",\"name\":\"Apartament 71\\\/117 (bez parkingu)\",\"description\":\"\",\"category\":\"\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200507111340_xUcquZ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200507111340_61Bs2V.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200507111340_1Mrkoo.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200507111340_mtMwtK.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200507111340_gIfGku.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200507111340_vPGIku.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200507111340_KBevb2.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200507111340_YljmhY.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200507111340_Ewc9xM.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200507111340_6G50jG.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200507111340_Xk4feJ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200507111340_w9NOyr.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200507111340_958gNN.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200507111340_rB0hw8.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200507111340_v9ohVY.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200507111340_v2Gas9.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200507111340_dOlZfB.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200507111340_wXigvu.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200507111340_Ul3TeV.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200507111340_lbD6EE.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230424104215_ACQwqm.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200507111340_Zu2g5o.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230424104215_JYnt3u.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200507111340_4V7lLU.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230424104215_7dOrpu.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200507111340_ODdwDs.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230424104216_mtMNyR.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200507111340_5PBMNY.jpg\"],\"facilities\":{\"0\":{\"okpId\":10,\"value\":\"\"},\"9\":{\"okpId\":26,\"value\":\"\"},\"16\":{\"okpId\":94,\"value\":\"79\"},\"18\":{\"okpId\":97,\"value\":\"3\"},\"19\":{\"okpId\":98,\"value\":\"4\"}},\"price\":600,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=721403\",\"detailsUrl\":\"\\\/721403\"},{\"obkId\":\"687600\",\"name\":\"Apartament 71\\\/64\",\"description\":\"\",\"category\":\"Wyspa Spichrz\u00f3w\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240227104205_6o0rU2.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240227104205_jskDLF.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240227104205_qMWb5W.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240227104205_DIJ1AI.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240227104205_IN4Lk2.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240227104205_2SyyF3.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240227104205_bR6UBG.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240227104205_LPeBsh.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240227104205_pYmCNK.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240227104205_Bd3HLy.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240227104205_yYpqsp.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240227104205_oQXIaC.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240227104205_ql10wl.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240227104205_9DPfaB.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240227104205_CAovHb.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20201120151231_KXltbq.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240227104205_w0GD8W.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240227104205_e9tUV6.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240227104205_Ud9mUc.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240227104205_s3Yc4v.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240227104205_6jlju2.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240227104205_7Jnm36.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"9\":{\"okpId\":26,\"value\":\"\"},\"15\":{\"okpId\":94,\"value\":\"120\"},\"17\":{\"okpId\":97,\"value\":\"4\"},\"18\":{\"okpId\":98,\"value\":\"5\"}},\"price\":900,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=687600\",\"detailsUrl\":\"\\\/687600\"},{\"obkId\":\"718695\",\"name\":\"Apartament 71\\\/67 (bez parkingu)\",\"description\":\"\",\"category\":\"Wyspa Spichrz\u00f3w\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20201120145830_0ImGSh.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20201120145830_nMicFd.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20201120145830_Mkf0ci.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20201120145830_E0mcvm.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20201120145830_AFE3Py.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20201120145830_WPk9hW.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20201120145830_yn1NRW.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20201120145830_V5QCHR.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20201120145830_M5Vyzs.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20201120145830_ya5ion.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20201120145830_k84ZTs.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20201120145830_2E7Yhq.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20201120145830_bAaT0T.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20201120145830_IgP0Lv.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20201120145830_2Wt2vx.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20201120145830_uruMnh.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"8\":{\"okpId\":26,\"value\":\"\"},\"11\":{\"okpId\":94,\"value\":\"120\"},\"13\":{\"okpId\":97,\"value\":\"4\"},\"14\":{\"okpId\":98,\"value\":\"5\"}},\"price\":800,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=718695\",\"detailsUrl\":\"\\\/718695\"},{\"obkId\":\"806021\",\"name\":\"Apartament 71\\\/69A (bez parkingu)\",\"description\":\"\",\"category\":\"\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210615125937_xE4DOz.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210615125937_ZjI8bM.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210615125937_79EYSe.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210615125937_PUEqmE.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210615125937_DBUoCd.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210615125937_txsdS2.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210615125937_mWmgt6.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210615125937_V9ITTa.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210615125937_CjB5GA.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210615125937_JxNevI.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210615125937_k49S6f.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210615125937_retChU.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210615125937_fwscuT.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210615125937_8ckyfn.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210615125937_c5x8pL.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\",\"attributes\":[{\"praId\":30,\"value\":\"1\"}]},\"1\":{\"okpId\":10,\"value\":\"\"},\"4\":{\"okpId\":26,\"value\":\"\"},\"6\":{\"okpId\":94,\"value\":\"37\"},\"7\":{\"okpId\":97,\"value\":\"1\"},\"8\":{\"okpId\":98,\"value\":\"2\"}},\"price\":250,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=806021\",\"detailsUrl\":\"\\\/806021\"},{\"obkId\":\"730553\",\"name\":\"Apartament 71\\\/69B (bez parkingu)\",\"description\":\"\",\"category\":\"\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200731160102_oTATiS.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200731160102_KvIBdR.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200731160102_qod8FM.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200731160102_rnUfRU.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200731160102_pJbaEF.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200731160102_u0F8R8.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200731160102_01wrwF.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200731160102_e1mxEv.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200731160102_uxV5D8.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200731160102_QEneFd.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200731160102_zBrAaz.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200731160102_l0kJMi.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200731160102_mgGhHE.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200731160102_Sr6Bev.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200731160102_119I7f.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200731160102_MlED3L.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200731160102_zJcJGH.jpg\"],\"facilities\":{\"0\":{\"okpId\":10,\"value\":\"\"},\"8\":{\"okpId\":94,\"value\":\"37\"},\"9\":{\"okpId\":97,\"value\":\"1\"},\"10\":{\"okpId\":98,\"value\":\"2\"}},\"price\":250,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=730553\",\"detailsUrl\":\"\\\/730553\"},{\"obkId\":\"730743\",\"name\":\"Apartament 71\\\/71A (bez parkingu)\",\"description\":\"\",\"category\":\"\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200507151725_C8LxBa.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200507151725_9SjtQz.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200507151725_glCGp9.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200507151725_MRiJ7V.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200507151725_fXc25w.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200507151725_mBJJ5u.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200507151725_CDm879.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"11\":{\"okpId\":94,\"value\":\"65\"},\"13\":{\"okpId\":97,\"value\":\"2\"},\"14\":{\"okpId\":98,\"value\":\"3\"}},\"price\":350,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=730743\",\"detailsUrl\":\"\\\/730743\"},{\"obkId\":\"718697\",\"name\":\"Apartament 71\\\/71B (bez parkingu)\",\"description\":\"\",\"category\":\"\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20220707114220_PLr8sm.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20220707114220_9DRl2i.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20220707114220_iCCmSJ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20220707114220_49jwhn.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20220707114220_N2rWkz.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20220707114220_W4g7Z3.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20220707114220_9ngTrl.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20220707114220_0dgYre.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20220707114220_NrZZ4d.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20220707114220_dnX8wv.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20220707114220_arsxHS.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20220707114220_ONNcNS.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"9\":{\"okpId\":26,\"value\":\"\"},\"14\":{\"okpId\":94,\"value\":\"50\"},\"16\":{\"okpId\":97,\"value\":\"1\"},\"17\":{\"okpId\":98,\"value\":\"2\"}},\"price\":350,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=718697\",\"detailsUrl\":\"\\\/718697\"},{\"obkId\":\"684614\",\"name\":\"Apartament 73\\\/102 B\",\"description\":\"Wyj\u0105tkowe studio o powierzchni 35 m\u00b2 dla 3 os\u00f3b, z balkonem i widokiem na Mot\u0142aw\u0119.Apartament posiada wolnostoj\u0105c\u0105 wann\u0119 w salonie oraz osobn\u0105 \u0142azienk\u0119 z prysznicem i suszark\u0105 do w\u0142os\u00f3w. Do dyspozycji Go\u015bci jest w pe\u0142ni wyposa\u017cony aneks kuchenny, telewizor, Wi-Fi, zmywarka oraz zestaw do kawy i herbaty. W apartamencie dost\u0119pna jest po\u015bciel i r\u0119czniki. Studio przeznaczone jest dla os\u00f3b niepal\u0105cych i wyposa\u017cone w centralne ogrzewanie.Idealny wyb\u00f3r dla os\u00f3b szukaj\u0105cych komfortowego i nowoczesnego pobytu w sercu Gda\u0144ska.\",\"category\":\"Widok Na Rzek\u0119\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926124154_MA3i44.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926124154_VfCZm1.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926124154_H37jMU.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926124154_46KREq.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926124154_9d0B92.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926124154_6DIwYw.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926124154_hm4qZ8.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926124154_JkOKcH.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926124154_83Tt0c.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926124154_LjXtzU.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926124154_a3ApX8.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926124154_ID4ydi.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"10\":{\"okpId\":26,\"value\":\"\"},\"17\":{\"okpId\":94,\"value\":\"35\"},\"19\":{\"okpId\":98,\"value\":\"1\"}},\"price\":250,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=684614\",\"detailsUrl\":\"\\\/684614\"},{\"obkId\":\"686472\",\"name\":\"Apartament 73\\\/107\",\"description\":\"Wyj\u0105tkowe studio o powierzchni 35 m\u00b2 dla 3 os\u00f3b, z balkonem i widokiem na Mot\u0142aw\u0119.Apartament posiada wolnostoj\u0105c\u0105 wann\u0119 w salonie oraz osobn\u0105 \u0142azienk\u0119 z prysznicem i suszark\u0105 do w\u0142os\u00f3w. Do dyspozycji Go\u015bci jest w pe\u0142ni wyposa\u017cony aneks kuchenny, telewizor, Wi-Fi, zmywarka oraz zestaw do kawy i herbaty. W apartamencie dost\u0119pna jest po\u015bciel i r\u0119czniki. Studio przeznaczone jest dla os\u00f3b niepal\u0105cych i wyposa\u017cone w centralne ogrzewanie.Idealny wyb\u00f3r dla os\u00f3b szukaj\u0105cych komfortowego i nowoczesnego pobytu w sercu Gda\u0144ska.\",\"category\":\"Wyspa Spichrz\u00f3w\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191002205049_RPJPVS.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191002205049_ZNhGAK.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191002205049_ailZmI.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191002205049_LURGTB.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191002205049_LI2uxr.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191002205049_l1MAdn.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191002205049_vqukuo.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191002205049_SDISax.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191002205049_N3Bw0X.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191002205049_sjETBO.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"10\":{\"okpId\":26,\"value\":\"\"},\"14\":{\"okpId\":94,\"value\":\"35\"},\"16\":{\"okpId\":98,\"value\":\"1\"}},\"price\":150,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=686472\",\"detailsUrl\":\"\\\/686472\"},{\"obkId\":\"686474\",\"name\":\"Apartament 73\\\/112\",\"description\":\"Przytulny apartament typu studio o powierzchni 30 m\u00b2, po\u0142o\u017cony  zaledwie kilka minut od gda\u0144skiego Starego Miasta. Apartament przeznaczony jest dla maksymalnie 3 os\u00f3b. Do dyspozycji Go\u015bci pozostaje wygodna przestrze\u0144 z balkonem, aneks kuchenny umo\u017cliwiaj\u0105cy przygotowanie posi\u0142k\u00f3w, telewizor, bezprzewodowy Internet oraz \u0142azienka z prysznicem. Pobyt obejmuje komplet po\u015bcieli oraz r\u0119cznik\u00f3w dla pe\u0142nej wygody Go\u015bci.Idealny wyb\u00f3r dla os\u00f3b szukaj\u0105cych komfortowego pobytu w sercu Gda\u0144ska.\",\"category\":\"Wyspa Spichrz\u00f3w\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260209102430_be5HpM.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260209102430_tbrRYB.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260209102430_JP0zhD.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260209102430_cSY4YY.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260209102430_NYd4qJ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260209102430_MZT4Uh.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260209102430_fzjf6I.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260209102430_uos1TV.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260209102430_ZAOcWM.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260209102430_XLwZbj.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260209102430_8wDCma.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260209102431_itfbXm.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260209102431_fu7gJf.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260209102431_oaR9u9.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260209102431_6LlmVL.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260209102431_LpjqPV.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260209102431_jSoeMY.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"9\":{\"okpId\":26,\"value\":\"\"},\"13\":{\"okpId\":94,\"value\":\"35\"},\"15\":{\"okpId\":98,\"value\":\"1\"}},\"price\":150,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=686474\",\"detailsUrl\":\"\\\/686474\"},{\"obkId\":\"752127\",\"name\":\"Apartament 73\\\/114\",\"description\":\"\",\"category\":\"Widok Na Rzek\u0119\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200811150631_EhysvS.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200811150631_O8R3Ok.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200811150631_FAZzqJ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200811150631_UAK0fg.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200811150631_gkaFgd.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200811150631_IG30Un.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200811150631_3zATrX.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200811150631_wUBd8P.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200811150630_q2F7HG.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\",\"attributes\":[{\"praId\":30,\"value\":\"1\"}]},\"2\":{\"okpId\":10,\"value\":\"\"},\"10\":{\"okpId\":26,\"value\":\"\"},\"18\":{\"okpId\":94,\"value\":\"45\"},\"20\":{\"okpId\":97,\"value\":\"1\"},\"21\":{\"okpId\":98,\"value\":\"2\"}},\"price\":200,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=752127\",\"detailsUrl\":\"\\\/752127\"},{\"obkId\":\"684056\",\"name\":\"Apartament 73\\\/12\",\"description\":\"\",\"category\":\"Wyspa Spichrz\u00f3w\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251215192349_wj4RHe.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251215192349_OCcmqb.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251215192349_R1OgCE.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251215192349_TaA0AO.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251215192349_nFiMd4.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251215192349_1ziNpI.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251215192349_kth07j.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251215192349_fKpZ6o.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251215192349_8Xy4bC.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251215192349_s2u1eG.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251215192349_SKzC5z.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251215192349_iAoWWQ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251215192349_GQnwf4.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251215192349_TND0rP.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251215192349_pwpBzC.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251215192349_8At6Ik.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251215192349_XR1y9j.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"10\":{\"okpId\":26,\"value\":\"\"},\"16\":{\"okpId\":94,\"value\":\"40\"},\"18\":{\"okpId\":97,\"value\":\"1\"},\"19\":{\"okpId\":98,\"value\":\"2\"}},\"price\":200,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=684056\",\"detailsUrl\":\"\\\/684056\"},{\"obkId\":\"976969\",\"name\":\"Apartament 73\\\/120\",\"description\":\"\",\"category\":\"\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250618131226_Q0BwGQ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250618131226_Hbm8ZI.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250618131226_LNITH0.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250618131226_TNtuFo.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250618131226_KoecmH.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250618131226_tXDdrY.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250618131226_2ZMOsR.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250618131226_wMtd4s.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250618131226_lspwVz.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250618131226_ko4Gfw.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250618131226_yXtGuU.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250618131226_m4ocAL.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250618131226_TuwHne.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250618131226_HsdcoU.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250618131227_FjWTEz.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250618131226_kFfVus.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250618131226_hSyfj5.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250618131226_h22zeS.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\",\"attributes\":[{\"praId\":31,\"value\":\"1\"}]},\"1\":{\"okpId\":10,\"value\":\"\"},\"10\":{\"okpId\":26,\"value\":\"\"},\"18\":{\"okpId\":94,\"value\":\"80\"},\"21\":{\"okpId\":97,\"value\":\"2\"},\"22\":{\"okpId\":98,\"value\":\"3\"}},\"price\":300,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=976969\",\"detailsUrl\":\"\\\/976969\"},{\"obkId\":\"684136\",\"name\":\"Apartament 73\\\/14\",\"description\":\"\",\"category\":\"Wyspa Spichrz\u00f3w\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20201204120742_vBSQmW.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200702094302_UmzAPY.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200702094302_dps2g5.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200702094302_t5BK7Y.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200702094302_UccwKK.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200702094302_E8g8Rv.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"9\":{\"okpId\":26,\"value\":\"\"},\"13\":{\"okpId\":94,\"value\":\"40\"},\"15\":{\"okpId\":97,\"value\":\"1\"},\"16\":{\"okpId\":98,\"value\":\"2\"}},\"price\":200,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=684136\",\"detailsUrl\":\"\\\/684136\"},{\"obkId\":\"912055\",\"name\":\"Apartament 73\\\/19\",\"description\":\"\",\"category\":\"Wyspa Spichrz\u00f3w\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250326140403_VbZwrX.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250326140403_uz45Lb.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250326140403_jIGXGJ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250326140403_d1DzlG.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250326140403_xPAQgi.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250326140403_RE6Odx.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250326140403_sHkUEm.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250326140403_z7l7bt.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250522104525_fwExZq.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250522104525_wGu7A2.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250522104525_3JNQZH.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250522104525_U8TEJD.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250522104525_K4ECBO.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250522104525_BWpzY5.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250522104525_peJ40f.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250522104525_wiEYLQ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250326140404_w0TZmj.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250326140404_F8UlLV.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250326140404_pnyaM1.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20231005132412_nhEzSO.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"9\":{\"okpId\":26,\"value\":\"\"},\"15\":{\"okpId\":97,\"value\":\"2\"},\"16\":{\"okpId\":98,\"value\":\"3\"},\"19\":{\"okpId\":102,\"value\":\"\"}},\"price\":300,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=912055\",\"detailsUrl\":\"\\\/912055\"},{\"obkId\":\"684144\",\"name\":\"Apartament 73\\\/28\",\"description\":\"\u200bApartament zlokalizowany przy ulicy Chmielnej 73.Sk\u0142ada si\u0119 z salonu z aneksem kuchennym, sypialni, \u0142azienki i balkonu.W salonie jest wygodna sofa rozk\u0142adana (dla 2 os\u00f3b), telewizor, stolik kawowy oraz st\u00f3\u0142.Aneks kuchenny wyposa\u017cony we wszystkie niezb\u0119dne sprz\u0119ty, garnki, naczynia i szk\u0142o.Znajduj\u0105 si\u0119 tu m.in. lod\u00f3wka, piekarnik, zmywarka, mikrofal\u00f3wka, czajnik elektryczny oraz przelewowy ekspres do kawy.W sypialni znajduje si\u0119 wygodne \u0142o\u017ce o wymiarach 160 x 200 cm oraz telewizor.\u0141azienka wyposa\u017cona jest w prysznic i pralk\u0119.Z salonu jest wyj\u015bcie na balkon.Jest to idealne miejsce do pobytu czteroosobowej rodziny lub grupy przyjaci\u00f3\u0142.Zapraszamy do rezerwacji\",\"category\":\"Wyspa Spichrz\u00f3w\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250703201059_6rfjvy.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250703201059_iu71eH.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250703201059_gIdCfy.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250703201059_Ur1hAn.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200527105228_h83piU.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250703201058_6RQsTc.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250703201059_d2vK1o.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250703201058_LpZVJK.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250703201059_RSkVKI.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250703201059_ykYXYX.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250703201059_z4OA9J.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250703201059_V4FfYB.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250703201058_PJQhbw.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250703201058_eFS0Lg.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250703201059_DUyN96.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250703201059_Gd8Djj.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250703201059_KqzDXc.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250703201059_zTeuQm.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250703201058_CXHlq2.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"10\":{\"okpId\":26,\"value\":\"\"},\"17\":{\"okpId\":94,\"value\":\"42\"},\"20\":{\"okpId\":97,\"value\":\"1\"},\"21\":{\"okpId\":98,\"value\":\"1\"}},\"price\":350,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=684144\",\"detailsUrl\":\"\\\/684144\"},{\"obkId\":\"684150\",\"name\":\"Apartament 73\\\/37 B\",\"description\":\"Przytulny apartament typu studio o powierzchni 30 m2, zaledwie kilka minut od gda\u0144skiego Starego Miasta. Apartament przeznaczony jest dla maksymalnie 3 os\u00f3b. Do dyspozycji Go\u015bci pozostaje wygodna przestrze\u0144 z balkonem, aneks kuchenny umo\u017cliwiaj\u0105cy przygotowanie posi\u0142k\u00f3w, telewizor, bezprzewodowy Internet oraz \u0142azienka z prysznicem. Pobyt obejmuje komplet po\u015bcieli oraz r\u0119cznik\u00f3w dla pe\u0142nej wygody Go\u015bci. Idealny wyb\u00f3r dla os\u00f3b szukaj\u0105cych komfortowego pobytu w sercu Gda\u0144ska.\",\"category\":\"Wyspa Spichrz\u00f3w\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251118102925_BqmnMg.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251118102925_1jCS5z.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251118102925_WRuJHf.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251118102925_IC7sPU.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251118102925_GRhERH.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251118102925_HAPA47.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251118102925_mmsUts.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251118102925_ZjNhiN.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251118102926_B3tC0d.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251118102926_95aups.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251118102926_5TB6Mx.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251118102926_qtFkcX.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251118102926_CH2vOi.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251118102926_bHsy84.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251118102926_rx6RLr.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251118102926_p4ooOZ.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"9\":{\"okpId\":26,\"value\":\"\"},\"14\":{\"okpId\":94,\"value\":\"30\"},\"15\":{\"okpId\":97,\"value\":\"0\"},\"16\":{\"okpId\":98,\"value\":\"1\"}},\"price\":300,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=684150\",\"detailsUrl\":\"\\\/684150\"},{\"obkId\":\"684154\",\"name\":\"Apartament 73\\\/48 (bez parkingu)\",\"description\":\"Przytulny apartament typu studio o powierzchni 30 m\u00b2, po\u0142o\u017cony zaledwie kilka minut od gda\u0144skiego Starego Miasta. Apartament przeznaczony jest dla maksymalnie 3 os\u00f3b.Do dyspozycji Go\u015bci pozostaje wygodna przestrze\u0144 z balkonem, aneks kuchenny umo\u017cliwiaj\u0105cy przygotowanie posi\u0142k\u00f3w, telewizor, bezprzewodowy Internet oraz \u0142azienka z prysznicem. Pobyt obejmuje komplet po\u015bcieli oraz r\u0119cznik\u00f3w dla pe\u0142nej wygody Go\u015bci.Idealny wyb\u00f3r dla os\u00f3b szukaj\u0105cych komfortowego pobytu w sercu Gda\u0144ska.\",\"category\":\"Wyspa Spichrz\u00f3w\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260209104026_0xZ774.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260209104026_spIqXE.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260209104026_QzByoV.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260209104026_jOimfJ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260209104026_TqUBgj.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260209104026_x3fSFK.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260209104027_wzg13Y.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260209104027_uYvGg1.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260209104027_pu7ztw.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260209104027_Hl6uUW.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260209104027_mWW5Pu.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260209104027_dBVNKD.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260209104027_OF7kPa.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190924181944_Du3eIJ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260209104027_3hzp9P.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260209104027_0KWJJX.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260209104027_XopwLp.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260209104027_dCwBBV.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"9\":{\"okpId\":26,\"value\":\"\"},\"13\":{\"okpId\":94,\"value\":\"30\"},\"15\":{\"okpId\":98,\"value\":\"1\"}},\"price\":150,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=684154\",\"detailsUrl\":\"\\\/684154\"},{\"obkId\":\"684550\",\"name\":\"Apartament 73\\\/58\",\"description\":\"\",\"category\":\"Wyspa Spichrz\u00f3w\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240304152020_ZgNqgT.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240304152020_ElPYD6.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240304152020_GZay78.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240304152020_B1W62l.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240304152020_CHUhM1.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240304152020_MfQqlf.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240304152020_RLFYsJ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240304152020_Q2jeH6.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240304152020_eHpGnQ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240304152020_8UyAGl.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240304152020_RSwfr2.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240304152020_GTJkC1.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240304152020_W2o5lv.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240304152020_h5Ievq.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240304152020_DMBNfU.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240304152020_PxUDkB.jpg\"],\"facilities\":{\"0\":{\"okpId\":10,\"value\":\"\"},\"8\":{\"okpId\":26,\"value\":\"\"},\"12\":{\"okpId\":94,\"value\":\"38\"},\"14\":{\"okpId\":97,\"value\":\"1\"},\"15\":{\"okpId\":98,\"value\":\"2\"}},\"price\":200,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=684550\",\"detailsUrl\":\"\\\/684550\"},{\"obkId\":\"684558\",\"name\":\"Apartament 73\\\/62\",\"description\":\"\",\"category\":\"Wyspa Spichrz\u00f3w\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926105040_QIAcCP.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926105040_AEpXCE.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926105040_6auJFD.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926105040_3G3OR6.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926105040_9cBkQi.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926105040_a6kiCh.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926105040_ceWNGg.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926105040_7ezUHN.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926105040_Ko5eAE.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926105040_dMX6em.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926105040_gAGif3.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"10\":{\"okpId\":26,\"value\":\"\"},\"14\":{\"okpId\":94,\"value\":\"40\"},\"16\":{\"okpId\":97,\"value\":\"1\"},\"17\":{\"okpId\":98,\"value\":\"2\"}},\"price\":200,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=684558\",\"detailsUrl\":\"\\\/684558\"},{\"obkId\":\"687338\",\"name\":\"Apartament 73\\\/63\",\"description\":\"\",\"category\":\"Wyspa Spichrz\u00f3w\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200601131804_d7RG9O.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200601131804_EGgfoO.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200601131804_kzqRnx.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200601131804_S7Is4V.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200601131804_yswEyV.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"9\":{\"okpId\":26,\"value\":\"\"},\"14\":{\"okpId\":94,\"value\":\"36\"},\"16\":{\"okpId\":97,\"value\":\"1\"},\"17\":{\"okpId\":98,\"value\":\"2\"}},\"price\":200,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=687338\",\"detailsUrl\":\"\\\/687338\"},{\"obkId\":\"684560\",\"name\":\"Apartament 73\\\/67 (bez parkingu)\",\"description\":\"\",\"category\":\"\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200601170206_UNVZRh.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200601170206_BIOZaV.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200601170206_RnjDv0.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200601170206_htn5pm.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200601170207_mSuSsx.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200601170207_dbGusd.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"10\":{\"okpId\":26,\"value\":\"\"},\"16\":{\"okpId\":97,\"value\":\"1\"},\"17\":{\"okpId\":98,\"value\":\"3\"}},\"price\":400,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=684560\",\"detailsUrl\":\"\\\/684560\"},{\"obkId\":\"684582\",\"name\":\"Apartament 73\\\/68\",\"description\":\"\",\"category\":\"Wyspa Spichrz\u00f3w\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926110854_dLZ0dQ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926110854_20nGCT.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926110854_yEjGEn.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926110854_7P1U0f.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926110854_VP8b89.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926110854_vKhfmi.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926110854_a22khZ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926110854_gLOmZv.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926110854_VxirBn.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926110854_1vL1ac.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926110854_WPOtAG.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926110854_RukAXT.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926110854_5dokac.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926110854_ALy1ss.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"10\":{\"okpId\":26,\"value\":\"\"},\"15\":{\"okpId\":94,\"value\":\"40\"},\"17\":{\"okpId\":97,\"value\":\"1\"},\"18\":{\"okpId\":98,\"value\":\"2\"}},\"price\":200,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=684582\",\"detailsUrl\":\"\\\/684582\"},{\"obkId\":\"684586\",\"name\":\"Apartament 73\\\/71\",\"description\":\"\",\"category\":\"Wyspa Spichrz\u00f3w\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260227140131_YlVnoO.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260227140131_SqqIfa.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260227140131_ykPLbp.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260227140131_72fAtG.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260227140132_XrtzTo.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260227140132_MhmPZM.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260227140132_arV0LG.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260227140132_GudO5M.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260227140132_F4FKlO.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260227140132_7fcRcX.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260227140132_IoEkE1.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260227140132_dHlLkJ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260227140132_NOjAp0.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260227140132_aqcnYP.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260227140132_uYexm2.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"9\":{\"okpId\":26,\"value\":\"\"},\"12\":{\"okpId\":94,\"value\":\"36\"},\"14\":{\"okpId\":97,\"value\":\"1\"},\"15\":{\"okpId\":98,\"value\":\"2\"}},\"price\":200,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=684586\",\"detailsUrl\":\"\\\/684586\"},{\"obkId\":\"684588\",\"name\":\"Apartament 73\\\/72\",\"description\":\"Przytulny apartament typu studio o powierzchni 30 m\u00b2, po\u0142o\u017cony zaledwie kilka minut od gda\u0144skiego Starego Miasta. Apartament przeznaczony jest dla maksymalnie 3 os\u00f3b.Do dyspozycji Go\u015bci pozostaje wygodna przestrze\u0144 z balkonem, aneks kuchenny umo\u017cliwiaj\u0105cy przygotowanie posi\u0142k\u00f3w, telewizor, bezprzewodowy Internet oraz \u0142azienka z prysznicem. Pobyt obejmuje komplet po\u015bcieli oraz r\u0119cznik\u00f3w dla pe\u0142nej wygody Go\u015bci.Idealny wyb\u00f3r dla os\u00f3b szukaj\u0105cych komfortowego pobytu w sercu Gda\u0144ska.\",\"category\":\"Wyspa Spichrz\u00f3w\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210216131658_W0EJ88.png\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210216131658_jLoav6.png\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210216131658_fLNOYU.png\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210216131658_KKlbr8.png\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210216131658_WJYXPE.png\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210216131658_clTSgg.png\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210216131658_r8BVdX.png\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210216131658_mr12yj.png\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210216131658_OYYzhA.png\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210216131658_b5MxWc.png\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210216131658_GdysQv.png\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210216131658_ZQqO4v.png\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210216131658_S8tjjk.png\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210216131658_J2H0fI.png\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210216131658_AwWyKl.png\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210216131658_AAoJ48.png\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200601151149_8ZkzG6.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200601151149_kLsi8U.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200601151149_k0O1sd.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"9\":{\"okpId\":26,\"value\":\"\"},\"14\":{\"okpId\":94,\"value\":\"36\"},\"16\":{\"okpId\":97,\"value\":\"0\"},\"17\":{\"okpId\":98,\"value\":\"1\"}},\"price\":300,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=684588\",\"detailsUrl\":\"\\\/684588\"},{\"obkId\":\"684592\",\"name\":\"Apartament 73\\\/77  A\",\"description\":\"\",\"category\":\"Wyspa Spichrz\u00f3w\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926112558_2bMdme.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926112558_ulWFKK.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926112558_aoNDhV.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926112558_4ydLBQ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926112558_432ec8.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926112558_dBufPI.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926112558_kQiuS5.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926112558_7J4smP.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926112558_vm7KBM.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926112558_TwO8Eb.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926112558_dApXHg.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926112558_h1Wncd.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926112558_q4yfXz.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926112558_igtRnd.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"9\":{\"okpId\":26,\"value\":\"\"},\"16\":{\"okpId\":94,\"value\":\"35\"},\"18\":{\"okpId\":98,\"value\":\"1\"}},\"price\":150,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=684592\",\"detailsUrl\":\"\\\/684592\"},{\"obkId\":\"958739\",\"name\":\"Apartament 73\\\/79\",\"description\":\"\",\"category\":\"Widok Na Rzek\u0119\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241010130338_4PFPkl.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241010130338_3brbOl.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241010130338_y4ihRB.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241010130338_AhC2nK.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241010130338_bb50mU.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250423103244_5Cd7El.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250423103244_knaQ39.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250423103244_GI48YZ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250423103244_A5saRP.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241010130338_VX0nhq.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241010130338_f0YJR9.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241010130338_XGexdb.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241010130339_wfuj6r.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241010130339_PsjyTl.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241010130339_bMhS2c.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241010130339_KRKzvH.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241010130339_tYnPn8.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20241010130338_GxAifQ.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\",\"attributes\":[{\"praId\":30,\"value\":\"1\"}]},\"1\":{\"okpId\":10,\"value\":\"\"},\"10\":{\"okpId\":26,\"value\":\"\"},\"18\":{\"okpId\":94,\"value\":\"75\"},\"20\":{\"okpId\":97,\"value\":\"2\"},\"21\":{\"okpId\":98,\"value\":\"3\"}},\"price\":650,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=958739\",\"detailsUrl\":\"\\\/958739\"},{\"obkId\":\"684596\",\"name\":\"Apartament 73\\\/82\",\"description\":\"Przytulny apartament typu studio o powierzchni 30 m\u00b2, po\u0142o\u017cony zaledwie kilka minut od gda\u0144skiego Starego Miasta. Apartament przeznaczony jest dla maksymalnie 3 os\u00f3b.Do dyspozycji Go\u015bci pozostaje wygodna przestrze\u0144 z balkonem, aneks kuchenny umo\u017cliwiaj\u0105cy przygotowanie posi\u0142k\u00f3w, telewizor, bezprzewodowy Internet oraz \u0142azienka z prysznicem. Pobyt obejmuje komplet po\u015bcieli oraz r\u0119cznik\u00f3w dla pe\u0142nej wygody Go\u015bci.Idealny wyb\u00f3r dla os\u00f3b szukaj\u0105cych komfortowego pobytu w sercu Gda\u0144ska.\",\"category\":\"Widok Na Rzek\u0119\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926113242_Qe8NnD.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926113242_FfQRfY.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926113242_iCnryK.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926113242_yRi6DK.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926113242_Xq2B6F.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926113242_3pU3rG.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926113242_rGl1bh.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926113242_cceQIo.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926113242_QOAClC.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926113242_vWageG.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926113242_RHrEXA.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926114639_DOll1E.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"9\":{\"okpId\":26,\"value\":\"\"},\"14\":{\"okpId\":94,\"value\":\"35\"},\"16\":{\"okpId\":98,\"value\":\"1\"}},\"price\":150,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=684596\",\"detailsUrl\":\"\\\/684596\"},{\"obkId\":\"684598\",\"name\":\"Apartament 73\\\/87\",\"description\":\"Przytulny apartament typu studio o powierzchni 30 m\u00b2, po\u0142o\u017cony zaledwie kilka minut od gda\u0144skiego Starego Miasta. Apartament przeznaczony jest dla maksymalnie 3 os\u00f3b.Do dyspozycji Go\u015bci pozostaje wygodna przestrze\u0144 z balkonem, aneks kuchenny umo\u017cliwiaj\u0105cy przygotowanie posi\u0142k\u00f3w, telewizor, bezprzewodowy Internet oraz \u0142azienka z prysznicem. Pobyt obejmuje komplet po\u015bcieli oraz r\u0119cznik\u00f3w dla pe\u0142nej wygody Go\u015bci.Idealny wyb\u00f3r dla os\u00f3b szukaj\u0105cych komfortowego pobytu w sercu Gda\u0144ska.\",\"category\":\"Wyspa Spichrz\u00f3w\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200601135001_5zEfmz.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200601135001_MyAz8b.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210708135150_mOl3D0.png\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200601135001_9K8gbg.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210708135150_osxiga.png\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200601135001_0QGHst.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210708135150_QH7MAI.png\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210708135150_v7qJzG.png\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210708135150_uVNElk.png\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210708135150_iB3gsr.png\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210708135150_xBB47y.png\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"9\":{\"okpId\":26,\"value\":\"\"},\"13\":{\"okpId\":94,\"value\":\"36\"},\"15\":{\"okpId\":98,\"value\":\"1\"}},\"price\":150,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=684598\",\"detailsUrl\":\"\\\/684598\"},{\"obkId\":\"684600\",\"name\":\"Apartament 73\\\/88\",\"description\":\"\",\"category\":\"Wyspa Spichrz\u00f3w\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200601151550_djvSqq.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200601151550_WcLrOz.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200601151550_EuyDYu.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200601151550_wbhHb5.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200601151550_8qJYa8.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"9\":{\"okpId\":26,\"value\":\"\"},\"11\":{\"okpId\":94,\"value\":\"40\"},\"13\":{\"okpId\":97,\"value\":\"1\"},\"14\":{\"okpId\":98,\"value\":\"2\"}},\"price\":400,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=684600\",\"detailsUrl\":\"\\\/684600\"},{\"obkId\":\"684604\",\"name\":\"Apartament 73\\\/89\",\"description\":\"\",\"category\":\"Widok Na Rzek\u0119\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926120845_GsdSyr.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926120845_qlArUG.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926120845_4wEVCz.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926120845_CcXanx.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926120845_6J3h7J.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926120845_YGSumB.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926120845_baDRc2.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926120845_oYz8jt.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926120845_3FDBWW.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926120845_665uOJ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926120845_e8r6UI.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926120845_POIUa1.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926120845_EWNpIc.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926120845_UHbS5O.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926120845_ro6GuF.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926120845_eyjLBv.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926120845_5t6Hd3.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926120845_oDYG7G.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"2\":{\"okpId\":10,\"value\":\"\"},\"11\":{\"okpId\":26,\"value\":\"\"},\"16\":{\"okpId\":94,\"value\":\"70\"},\"18\":{\"okpId\":97,\"value\":\"2\"},\"19\":{\"okpId\":98,\"value\":\"3\"}},\"price\":250,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=684604\",\"detailsUrl\":\"\\\/684604\"},{\"obkId\":\"684606\",\"name\":\"Apartament 73\\\/92\",\"description\":\"Przestronne studio o powierzchni 35 m\u00b2, przeznaczone dla 3 os\u00f3b. Wyposa\u017cone w du\u017ce \u0142\u00f3\u017cko ma\u0142\u017ce\u0144skie oraz rozk\u0142adan\u0105 sof\u0119.Do dyspozycji Go\u015bci jest w pe\u0142ni wyposa\u017cony aneks kuchenny, \u0142azienka z prysznicem, balkon, pralka, telewizor oraz bezprzewodowy Internet.Idealny wyb\u00f3r na komfortowy pobyt w Gda\u0144sku.\",\"category\":\"Widok Na Rzek\u0119\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926121950_1ZENFZ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926121950_6HIyEj.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926121950_pcvu7I.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926121950_TAbw7H.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926121950_Gs5NO3.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926121950_C5d0F5.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926121950_4ckiPn.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926121950_wv4z6m.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926121950_djkcQP.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926121950_Vd45mY.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926121950_EloqiA.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926121950_SUKoUG.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926121950_8AZ1Cu.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926121950_o9ZZFg.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\",\"attributes\":[{\"praId\":27,\"value\":\"1\"}]},\"10\":{\"okpId\":26,\"value\":\"\"},\"18\":{\"okpId\":94,\"value\":\"35\"},\"20\":{\"okpId\":97,\"value\":\"0\"},\"21\":{\"okpId\":98,\"value\":\"1\"}},\"price\":300,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=684606\",\"detailsUrl\":\"\\\/684606\"},{\"obkId\":\"684610\",\"name\":\"Apartament 73\\\/97\",\"description\":\"Przytulny apartament typu studio o powierzchni 30 m2, zaledwie kilka minut od gda\u0144skiego Starego Miasta. Apartament przeznaczony jest dla maksymalnie 3 os\u00f3b. Do dyspozycji Go\u015bci pozostaje wygodna przestrze\u0144 z balkonem, aneks kuchenny umo\u017cliwiaj\u0105cy przygotowanie posi\u0142k\u00f3w, telewizor, bezprzewodowy Internet oraz \u0142azienka z prysznicem. Pobyt obejmuje komplet po\u015bcieli oraz r\u0119cznik\u00f3w dla pe\u0142nej wygody Go\u015bci. Idealny wyb\u00f3r dla os\u00f3b szukaj\u0105cych komfortowego pobytu w sercu Gda\u0144ska.\",\"category\":\"Wyspa Spichrz\u00f3w\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250407101706_uWqWHK.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250407101706_lBoyD0.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250407101706_o2dqFS.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250407101706_czaGBh.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250407101706_zObbIE.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250407101706_LTuNl0.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250407101706_mkC1MM.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250407101706_LMUm6i.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250407101706_ZgSXau.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250407101706_OdS5oT.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250407101706_Tm7P32.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250407101706_LRoiqW.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250407101706_9KRAB5.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250407101706_xMhRtq.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250407101706_rbFnfq.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190926123529_8CnTgE.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250407101706_SfA2DF.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250407101706_DidGhS.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"10\":{\"okpId\":26,\"value\":\"\"},\"14\":{\"okpId\":94,\"value\":\"35\"},\"16\":{\"okpId\":97,\"value\":\"1\"},\"17\":{\"okpId\":98,\"value\":\"0\"}},\"price\":300,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=684610\",\"detailsUrl\":\"\\\/684610\"},{\"obkId\":\"1003005\",\"name\":\"Apartament 75\",\"description\":\"Apartament zlokalizowany przy ulicy Toru\u0144skiej 15 w Gda\u0144sku.Do Bramy Zielonej b\u0119d\u0105cej pocz\u0105tkiem D\u0142ugiego Targu (najs\u0142ynniejszej ulicy w Gda\u0144sku) z apartamentu dotrzecie Pa\u0144stwo w 10 minut spacerem (750 m).W okolicy apartamentu znajduj\u0105 si\u0119 sklepy spo\u017cywcze, kawiarnie i restauracje.Apartament znajduje si\u0119 na 4 pi\u0119trze budynku w kt\u00f3rym jest winda.Sk\u0142ada si\u0119 z salonu, dw\u00f3ch sypialni, kuchni, \u0142azienki i balkonu. Maksymalnie mo\u017ce pomie\u015bci\u0107 6 os\u00f3b.Salon wyposa\u017cony jest w naro\u017cn\u0105 sof\u0119 z funkcj\u0105 spania dla 2 os\u00f3b, st\u00f3\u0142 z krzes\u0142ami oraz telewizor.W pierwszej sypialni znajduje si\u0119 \u0142o\u017ce o szeroko\u015bci 140 cm i d\u0142ugo\u015bci 200 cm.W drugiej sypialni znajduje si\u0119 \u0142o\u017ce o szeroko\u015bci 160 cm i d\u0142ugo\u015bci 200 cm.Kuchnia wyposa\u017cona jest m.in w p\u0142yt\u0119 ceramiczn\u0105, pojedynczy piekarnik z mikrofal\u0105, zmywark\u0119, lod\u00f3wk\u0119 z zamra\u017calnikiem. Znajduj\u0105 si\u0119 tam wszystkie niezb\u0119dne sprz\u0119ty takie jak czajnik, przelewowy ekspres do kawy, garnki, patelnia, naczynia i szk\u0142o.Istnieje mo\u017cliwo\u015b\u0107 zaparkowania samochodu w hali gara\u017cowej na poziomie 0.Zapraszamy do rezerwacji\",\"category\":\"\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260603130306_crqe6t.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260603130306_osVk03.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260603130306_dsbfbg.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260603130306_TGQEf4.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260603130306_nxIw5s.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260603130307_WLzw37.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260603130307_O8XXpV.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260603130307_PzQVyM.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260603130307_W8TPGj.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260603130307_eXWiHh.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260603130307_sGTbN1.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260603130307_B4MFV5.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260603130307_hk5WdF.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\",\"attributes\":[{\"praId\":31,\"value\":\"1\"}]},\"1\":{\"okpId\":10,\"value\":\"\"},\"10\":{\"okpId\":26,\"value\":\"\"},\"17\":{\"okpId\":94,\"value\":\"57\"},\"19\":{\"okpId\":97,\"value\":\"2\"},\"20\":{\"okpId\":98,\"value\":\"3\"}},\"price\":400,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=1003005\",\"detailsUrl\":\"\\\/1003005\"},{\"obkId\":\"686484\",\"name\":\"Apartament 8\",\"description\":\"\",\"category\":\"Widok Na Rzek\u0119\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260418203248_ltOFAn.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260418203248_TkAjPT.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260418203248_xr9uhi.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260418203248_KUwj7W.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260418203248_PK9d63.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260418203248_uYfe7p.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260418203248_7vwFkz.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260418203248_hzM0BJ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260418203248_ysbZYt.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260418203248_Gsm0pb.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260418203248_MJFouT.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260418203248_K3zpwn.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260418203248_pu9MqO.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260418203248_9XrbgG.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260418203248_olAJkp.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260418203248_mfIvop.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260418203248_3j3CpL.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260418203248_wo5tnS.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191002214337_euZTFs.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191002214337_xGnohO.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191002214337_VkudmA.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"14\":{\"okpId\":94,\"value\":\"85\"},\"16\":{\"okpId\":97,\"value\":\"2\"},\"17\":{\"okpId\":98,\"value\":\"3\"}},\"price\":350,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=686484\",\"detailsUrl\":\"\\\/686484\"},{\"obkId\":\"687602\",\"name\":\"Apartament 86  F\",\"description\":\"\",\"category\":\"Wyspa Spichrz\u00f3w\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191007190845_ENmP47.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191007190845_7DzVzQ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191007190846_bqtnG8.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191007190846_MyxYxJ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191007190846_PtbEvP.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191007190846_MGpxIy.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191007190846_YWibmS.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191007190846_CBEXRN.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191007190846_ctfpGm.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191007190846_R6ebzR.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191007190846_Jk0rIa.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191007190846_upxPCZ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191007190846_aApxIZ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191007190846_ZLbZQu.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191007190846_vlwtx9.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191007190846_bXLtk7.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191007190846_ZtW0c0.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191007190846_00cmNM.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"10\":{\"okpId\":26,\"value\":\"\"},\"16\":{\"okpId\":94,\"value\":\"75\"},\"18\":{\"okpId\":97,\"value\":\"2\"},\"19\":{\"okpId\":98,\"value\":\"3\"}},\"price\":800,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=687602\",\"detailsUrl\":\"\\\/687602\"},{\"obkId\":\"952939\",\"name\":\"Apartament 9\",\"description\":\"\",\"category\":\"Widok Na Rzek\u0119\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240711133801_RSK8Wu.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240711133801_U1QNUM.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240711133801_v48wDw.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240711133801_cji0L4.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240711133801_J7SmG0.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240711133801_UWj6gP.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240625220429_Kr9ld2.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240711133801_Xd5TzA.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240711133801_87AnyL.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240711133801_x5Q6IP.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240711133801_wTSVSU.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240711133801_Z6ORfx.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240711133801_SoOODN.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240711133801_vvSqoM.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240711133801_rJFckW.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240711133801_DlpJVO.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240711133801_kG3eF0.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240711133801_aXN6zk.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"10\":{\"okpId\":26,\"value\":\"\"},\"18\":{\"okpId\":102,\"value\":\"\"}},\"price\":350,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=952939\",\"detailsUrl\":\"\\\/952939\"},{\"obkId\":\"687606\",\"name\":\"Apartament 97\",\"description\":\"\",\"category\":\"Widok Na Rzek\u0119\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191007192328_hkOTMf.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191007192328_1iz5kk.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191007192328_NPszgA.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191007192328_c7OeCC.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191007192328_4uuppa.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191007192328_WTsArP.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191007192328_53EJtr.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191007192328_N0xKgZ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191007192328_0yZHbO.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191007192328_o82YOB.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191007192328_46Vq0g.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191007192328_qEkJkg.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191007192328_du6f0P.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191007192328_63R4Ig.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191007192328_cKhst0.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191007192328_S2F3fT.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191007192328_NjFkZ4.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191007192328_rGyBzk.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191007192328_VMqxym.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20191007192328_R1W5B0.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"10\":{\"okpId\":26,\"value\":\"\"},\"17\":{\"okpId\":94,\"value\":\"100\"},\"19\":{\"okpId\":97,\"value\":\"2\"},\"20\":{\"okpId\":98,\"value\":\"3\"}},\"price\":350,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=687606\",\"detailsUrl\":\"\\\/687606\"},{\"obkId\":\"687620\",\"name\":\"Apartament 98\",\"description\":\"Apartament z pi\u0119knym widokiem na rzek\u0119 idealny dla 6 os\u00f3b zlokalizowany przy ul. Toru\u0144skiej 15 w Gda\u0144sku. Do Zielonej Bramy, kt\u00f3ra stanowi pocz\u0105tek s\u0142ynnego deptaka czyli ulicy D\u0142ugiej dzieli Pa\u0144stwa 10 minut drogi spacerem - oko\u0142o 700m.W okolicy apartamentu znajduj\u0105 si\u0119 liczne restauracje, kawiarnie i sklepy. Sk\u0142ada si\u0119 z przestronnego salonu z rozk\u0142adan\u0105 sof\u0105 do spania dla 2 os\u00f3b, dodatkowej sofy do siedzenia, telewizora oraz aneksu kuchennego. Pomi\u0119dzy aneksem a salonem znajduje si\u0119 du\u017cy st\u00f3\u0142 z 6 krzes\u0142ami. W apartamencie s\u0105 dwie sypialnie - jedna z \u0142o\u017cem ma\u0142\u017ce\u0144skim 160x200 a druga z dwoma osobnymi \u0142\u00f3\u017ckami 80x200.Aneks kuchenny wyposa\u017cony w niezb\u0119dne sprz\u0119ty, garnki, naczynia i szk\u0142o. S\u0105 tu m.in. zmywarka, lod\u00f3wka, p\u0142yta indukcyjna, piekarnik, przelewowy ekspres do kawy i czajnik elektryczny.W \u0142azience znajduje si\u0119 prysznic i pralka. Przy salonie znajduje dodatkowa toaleta. Apartament idealny dla rodziny lub grupy 6 os\u00f3b.\",\"category\":\"Widok Na Rzek\u0119\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250704105211_yhsQD1.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250704105211_dAEdqJ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250704105211_LkaEBg.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250704105211_1BjMEZ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250704105211_coctIZ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250704105211_5WSyW6.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250704105211_7URsiI.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250704105211_9gbJLg.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250704105211_pcyOMZ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250704105211_9oHIIK.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250704105211_h3zogA.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250704105212_EmyxpQ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250704105212_MJ6QA7.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250704105212_4cQY6j.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250704105212_aKihzT.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250704105212_npO4rC.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250704105212_5x3byg.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250704105212_XXemxj.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"11\":{\"okpId\":26,\"value\":\"\"},\"19\":{\"okpId\":94,\"value\":\"100\"},\"21\":{\"okpId\":97,\"value\":\"2\"},\"22\":{\"okpId\":98,\"value\":\"3\"}},\"price\":800,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=687620\",\"detailsUrl\":\"\\\/687620\"},{\"obkId\":\"977267\",\"name\":\"Apartament Bastion Wa\u0142owa 23A\",\"description\":\"Apartament zlokalizowany jest przy ulicy Wa\u0142owej 23A w Gda\u0144sku.Do Zielonej Bramy, kt\u00f3ra stanowi pocz\u0105tek s\u0142ynnego deptaka czyli ulicy D\u0142ugiej dzieli Pa\u0144stwa 18 minut drogi spacerem - oko\u0142o 1,3km.W okolicy apartamentu znajduj\u0105 si\u0119 liczne restauracje, kawiarnie i sklepy. Sk\u0142ada si\u0119 z przestronnego salonu z rozk\u0142adan\u0105 sof\u0105 do spania dla 2 os\u00f3b, telewizora oraz aneksu kuchennego. Pomi\u0119dzy aneksem a salonem znajduje si\u0119 okr\u0105g\u0142y st\u00f3\u0142 z 4 krzes\u0142ami. W apartamencie jest jedna sypialnia z \u0142o\u017cem ma\u0142\u017ce\u0144skim 140x200.Aneks kuchenny wyposa\u017cony w niezb\u0119dne sprz\u0119ty, garnki, naczynia i szk\u0142o. S\u0105 tu m in. zmywarka, lod\u00f3wka, piekarnik, mikrofal\u00f3wka, p\u0142yta indukcyjna, przelewowy ekspres do kawy i czajnik elektryczny.W \u0142azience znajduje si\u0119 wanna i pralka.Apartament idealny dla rodziny lub grupy 4 os\u00f3b.Istnieje mo\u017cliwo\u015b\u0107 odp\u0142atnego wynaj\u0119cia miejsca w hali gara\u017cowej.W dniu zameldowania zapraszamy bezpo\u015brednio do apartamentu.\",\"category\":\"\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250707112722_zhKCTK.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250707112722_x3Sm8a.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250707112722_7DZm71.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250707112722_ec1GwZ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250707112722_w8XToe.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250707112722_zPRMIJ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250707112722_VIL1Ac.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250707112722_fslWFu.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250707112722_hnMcIU.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250707112722_3u8HwE.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250707112722_f0AUe8.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250707112722_u9Cpa8.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250707112722_ECySwp.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250707112722_Vw0FlV.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250707112722_QPaGAr.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250707112722_WDqG1N.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250707112722_KrJlFV.jpg\"],\"facilities\":{\"0\":{\"okpId\":10,\"value\":\"\"},\"9\":{\"okpId\":26,\"value\":\"\"},\"15\":{\"okpId\":94,\"value\":\"38\"},\"18\":{\"okpId\":97,\"value\":\"1\"},\"19\":{\"okpId\":98,\"value\":\"2\"}},\"price\":250,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=977267\",\"detailsUrl\":\"\\\/977267\"},{\"obkId\":\"941187\",\"name\":\"Apartament Bastion Wa\u0142owa 25D\",\"description\":\"\",\"category\":\"Wyspa Spichrz\u00f3w\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240403145048_CemwcW.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240403145048_kEdUnW.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240403145048_4jwwvN.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240403145048_5k47Xc.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240403145048_7ZnNiw.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240403145048_kzduRK.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240403145048_dmTQlv.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240403145049_D93xjc.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240403145049_PpxMZ4.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240403145049_0eCsWQ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240403145049_lma24m.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240403145049_ocdyAH.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240403145049_9jJ8QZ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240403145049_uX8mwN.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240403145049_59kU6H.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240403145049_AEjwlM.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240403145049_d8Rwm0.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240403145049_CMZr58.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"10\":{\"okpId\":26,\"value\":\"\"},\"18\":{\"okpId\":94,\"value\":\"44.6\"},\"21\":{\"okpId\":97,\"value\":\"1\"},\"22\":{\"okpId\":98,\"value\":\"2\"},\"26\":{\"okpId\":102,\"value\":\"\"}},\"price\":250,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=941187\",\"detailsUrl\":\"\\\/941187\"},{\"obkId\":\"995791\",\"name\":\"Apartament Bastion Wa\u0142owa 40\",\"description\":\"\",\"category\":\"\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260430120815_9EHbXj.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260430120815_CX6uHU.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260430120815_LzxtFt.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260430120815_BcKGtA.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260430120815_ONNGz3.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260430120815_7pgeUc.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260430120815_rbkFAI.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260430120815_YDNS9F.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260430120815_29uuDl.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260430120815_YNToCu.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260430120815_EK05B9.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260430120815_jsiA3l.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260430120815_5DDbrC.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260430120815_0RsNt6.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260430120815_rKJxoJ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260430120815_PvQIdn.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260430120815_K9TAcQ.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"7\":{\"okpId\":26,\"value\":\"\"},\"11\":{\"okpId\":94,\"value\":\"38\"},\"14\":{\"okpId\":97,\"value\":\"1\"},\"15\":{\"okpId\":98,\"value\":\"2\"}},\"price\":250,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=995791\",\"detailsUrl\":\"\\\/995791\"},{\"obkId\":\"815953\",\"name\":\"Apartament D\u0142ugi Targ (bez parkingu)\",\"description\":\"\",\"category\":\"Stare Miasto i Marina\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260301110040_ksQ4is.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260301110040_XZSwOn.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260301110040_rIORb7.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260301110040_24I3SQ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260301110040_GlnjsT.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260301110040_5OJ7cF.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260301110040_V7f6LY.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260301110040_2bSkY5.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260301110040_us30e1.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260301110040_IwNJmZ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210804130250_hnOd1O.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260301110040_8y41Mn.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210804130250_CAjtdd.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260301110040_16soNJ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260301110041_wZvcOL.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260301110041_EdUwL2.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260301110041_9c52jJ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260301110041_JMOLFT.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260301110041_btS80A.jpg\"],\"facilities\":{\"0\":{\"okpId\":10,\"value\":\"\"},\"12\":{\"okpId\":94,\"value\":\"30\"},\"14\":{\"okpId\":97,\"value\":\"\"},\"15\":{\"okpId\":98,\"value\":\"1\"}},\"price\":300,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=815953\",\"detailsUrl\":\"\\\/815953\"},{\"obkId\":\"815095\",\"name\":\"Apartament D\u0142ugie Ogrody\",\"description\":\"\",\"category\":\"Stare Miasto i Marina\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210730143032_4PTgON.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210730143032_stbDVO.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210730143032_gtu30U.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210730143032_t8ctsP.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210730143032_Ixzm3N.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210730143032_wlik12.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210730143032_KFatUN.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210730143032_RL7hwj.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210730143032_wAOsB6.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210730143032_CYR0AG.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210730143032_M6vsHj.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210730143032_diV6WO.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210730143032_DMwCRQ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210730143032_V29hPG.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210730143032_BQsnhv.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210730143032_wIGmX0.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210730143032_NSL7j9.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20210730143032_vQUJ2W.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"9\":{\"okpId\":26,\"value\":\"\"},\"18\":{\"okpId\":94,\"value\":\"40\"},\"20\":{\"okpId\":97,\"value\":\"1\"},\"21\":{\"okpId\":98,\"value\":\"2\"}},\"price\":250,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=815095\",\"detailsUrl\":\"\\\/815095\"},{\"obkId\":\"1004105\",\"name\":\"apartament Jaglana 6E 2\",\"description\":\"\",\"category\":\"\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260617153528_UQh7Di.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260617153528_X49zS1.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260617153528_y6VExl.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260617153528_OSCNeJ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260617153528_D6mOC5.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260617153528_5mi6pH.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260617153528_Ic0Jlo.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260617153529_29veqX.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260617153529_UzKols.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260617153529_iRPmpv.jpg\"],\"facilities\":[],\"price\":200,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=1004105\",\"detailsUrl\":\"\\\/1004105\"},{\"obkId\":\"1004107\",\"name\":\"apartament Jaglana 6E 6\",\"description\":\"\",\"category\":\"\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260617154144_ItgziB.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260617154144_OPRkln.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260617154144_XpghBg.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260617154144_jDzDFU.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260617154144_nMe2sl.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260617154144_UAuNa0.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260617154144_qk0AmY.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260617154144_voo4qg.jpg\"],\"facilities\":{\"0\":{\"okpId\":10,\"value\":\"\"},\"13\":{\"okpId\":94,\"value\":\"27\"},\"14\":{\"okpId\":97,\"value\":\"1\"},\"15\":{\"okpId\":98,\"value\":\"1\"}},\"price\":200,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=1004107\",\"detailsUrl\":\"\\\/1004107\"},{\"obkId\":\"969175\",\"name\":\"apartament Jaglana 6F 6\",\"description\":\"Eleganckie mieszkanie w Gda\u0144sku o powierzchni 45\u202fm\u00b2 dla 4 os\u00f3b. Sk\u0142ada si\u0119 z 2 pokoi i 1 sypialni z du\u017cym \u0142\u00f3\u017ckiem ma\u0142\u017ce\u0144skim. Do dyspozycji go\u015bci jest balkon, w pe\u0142ni wyposa\u017cony aneks kuchenny, \u0142azienka z prysznicem, suszarka do w\u0142os\u00f3w oraz telewizor. Mieszkanie oferuje bezprzewodowy internet, centralne ogrzewanie, r\u0119czniki i po\u015bciel, zapewniaj\u0105c komfortowy pobyt w wysokim standardzie.\",\"category\":\"Wyspa Spichrz\u00f3w\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250311113918_dRq1eY.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250311113918_7ewjSF.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250311113918_Zxllu4.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250311113918_sc1LbL.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250311113918_QfYMYB.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250311113918_hObNNM.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250311113918_PUbkLy.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250311113918_SY8K5k.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250311113918_2gJChX.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250311113918_G0ybgo.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250311113918_uUQRkB.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250311113918_GHjreS.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250311113918_KhQ0zO.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250311113918_XCGJk5.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250311113918_FKnVhH.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250311113918_bX9TTU.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250311113918_DtGZKy.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20250311113918_EvQYc1.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"9\":{\"okpId\":26,\"value\":\"\"},\"18\":{\"okpId\":94,\"value\":\"35\"},\"21\":{\"okpId\":97,\"value\":\"1\"},\"22\":{\"okpId\":98,\"value\":\"2\"}},\"price\":200,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=969175\",\"detailsUrl\":\"\\\/969175\"},{\"obkId\":\"989121\",\"name\":\"Apartament Tandeta 1 D\",\"description\":\"Apartament zlokalizowany w centrum Starego Miasta.Do Fontanny Neptuna dzieli go 550 m czyli oko\u0142o 8 minut spacerem.W okolicy znajduj\u0105 si\u0119 restauracje, kawiarnie i sklepy.Sk\u0142ada si\u0119 z salonu z aneksem kuchennym, sypialni i \u0142azienki.W salonie znajduje si\u0119 rozk\u0142adana sofa do spania dla 2 os\u00f3b.Aneks kuchenny wyposa\u017cony jest w niezb\u0119dne sprz\u0119ty i naczynia.Znajduj\u0105 si\u0119 tam lod\u00f3wka, piekarnik, zmywarka, p\u0142yta indukcyjna, przelewowy ekspres do kawy.W sypialni znajduje si\u0119 du\u017ce \u0142o\u017ce dla 2 os\u00f3b, a w \u0142azience wanna oraz pralka.\u200b\",\"category\":\"Stare Miasto i Marina\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251230195831_aByMbn.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251225153024_jH7vop.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251230195831_nKsjD1.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251230195831_p6bAU2.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251230195831_Dpbj9f.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251230195831_MeXgjh.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251230195831_lGO4mt.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251225153024_KeEB25.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251230195831_ZSqnfD.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251230195831_fINyie.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251230195831_Tiag47.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251230195831_f5rX8Y.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251230195831_HXU4wh.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251230195831_08amjc.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251230195831_TbHm3h.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251230195831_BiOYP0.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251230195831_S5AMQQ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251230195831_JDGXC1.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251230195832_VZR7iq.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20251230195832_dSJnnL.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"10\":{\"okpId\":26,\"value\":\"\"},\"16\":{\"okpId\":94,\"value\":\"55\"},\"19\":{\"okpId\":97,\"value\":\"1\"},\"20\":{\"okpId\":98,\"value\":\"2\"}},\"price\":400,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=989121\",\"detailsUrl\":\"\\\/989121\"},{\"obkId\":\"899812\",\"name\":\"Apartament Wilcza\",\"description\":\"\",\"category\":\"Wyspa Spichrz\u00f3w\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230501152836_9lrbTA.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230501152836_uUYGXe.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230501152836_8LoJdR.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230501152836_CCClTj.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230501152836_f5Xu2j.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230501152836_mmG7j5.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230501152836_nmWuic.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230501152836_I7KD6C.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230501152836_Ccurkd.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230501152836_zo8aZC.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230501152836_cLOCVH.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230501152836_qFUU77.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230501152836_w0Q4cl.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230501152836_E6scnk.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230501152836_cvZZNF.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230501152836_3tnZbi.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230501152836_vNOwNV.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230501152836_Mj2VXG.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"12\":{\"okpId\":94,\"value\":\"64\"},\"15\":{\"okpId\":97,\"value\":\"2\"},\"16\":{\"okpId\":98,\"value\":\"1\"}},\"price\":400,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=899812\",\"detailsUrl\":\"\\\/899812\"},{\"obkId\":\"904622\",\"name\":\"Apartament \u017babi Kruk\",\"description\":\"Przestronny apartament o powierzchni 50 m\u00b2 przy ulicy Zabi Kruk, idealny dla 4 os\u00f3b. Sk\u0142ada si\u0119 z 2 pokoi, kuchni z pe\u0142nym wyposa\u017ceniem, \u0142azienki z prysznicem, suszark\u0105 do w\u0142os\u00f3w i pralk\u0105. Do dyspozycji go\u015bci jest balkon, telewizor oraz bezprzewodowy internet, co zapewnia komfortowy pobyt. Chcesz, \u017cebym przygotowa\u0142 te\u017c wersj\u0119 po angielsku?\",\"category\":\"Wyspa Spichrz\u00f3w\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230916062741_anm7do.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230916062741_wthd0j.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230916062741_ivp4Ma.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230916062741_fdQPO3.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230916062741_6GpxsL.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230916062741_QRg3xS.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230916062741_sioUW2.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230916062741_YsD9Jy.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230916062741_knsbzp.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230916062741_8BCL3w.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230916062741_MUClEU.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230916062741_Q4n540.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230916062741_0WP6Dd.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230916062741_5A1tvf.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230916062741_jSM4fM.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230916062741_RulvML.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230916062741_uPwdxT.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230916062741_KJIAFa.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"10\":{\"okpId\":26,\"value\":\"\"},\"19\":{\"okpId\":94,\"value\":\"50\"},\"21\":{\"okpId\":97,\"value\":\"1\"},\"22\":{\"okpId\":98,\"value\":\"2\"}},\"price\":400,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=904622\",\"detailsUrl\":\"\\\/904622\"},{\"obkId\":\"952775\",\"name\":\"Apartment  H 284\",\"description\":\"Przestronny apartament o powierzchni 120 m\u00b2 w Gda\u0144sku, zlokalizowany na osiedlu Doki \u2013 tu\u017c obok znanego foodhallu Montownia oraz w s\u0105siedztwie popularnych klub\u00f3w Elektryk\u00f3w i 100cznia. Idealny dla 10 os\u00f3b, sk\u0142ada si\u0119 z 5 pokoi, w tym 4 sypialni, i oferuje widok na miasto. Do dyspozycji go\u015bci jest przestronny balkon, aneks kuchenny z lod\u00f3wk\u0105, czajnikiem elektrycznym i ekspresem do kawy, a tak\u017ce suszarka do w\u0142os\u00f3w i telewizor. Apartament wyposa\u017cony jest w klimatyzacj\u0119, centralne ogrzewanie oraz bezprzewodowy Internet. Zapewnione s\u0105 r\u00f3wnie\u017c hotelowe tekstylia i r\u0119czniki, co gwarantuje komfortowy pobyt w wysokim standardzie.\",\"category\":\"Wyspa Spichrz\u00f3w\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240717215540_GvvRkl.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240717215541_4Gqlmb.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240717215541_yS1cqN.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240717215541_fFv83i.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240717215540_ZNc79o.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240717215541_kiiQnP.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240717215541_BiY4NE.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240717215541_vZuKEH.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240717215541_vRYa5s.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240717215541_DBAyS9.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240717215541_jp7ThE.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240717215541_aMdQsq.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240717215541_lbRCG2.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240717215541_eud0o4.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240717215541_Db9u6T.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240717215541_egReUT.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240717215541_hj4pyu.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240717215541_metfRC.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240717215541_mPtzi3.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240717215541_6zQCZ7.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240717215541_Ewu7rJ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240717215541_skIoQ4.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"2\":{\"okpId\":10,\"value\":\"\"},\"9\":{\"okpId\":26,\"value\":\"\"},\"16\":{\"okpId\":94,\"value\":\"120\"},\"18\":{\"okpId\":97,\"value\":\"4\"},\"19\":{\"okpId\":98,\"value\":\"5\"}},\"price\":1500,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=952775\",\"detailsUrl\":\"\\\/952775\"},{\"obkId\":\"952773\",\"name\":\"Apartment A25\",\"description\":\"Przestronny apartament o powierzchni 120 m\u00b2 w Gda\u0144sku, zlokalizowany na osiedlu Doki \u2013 tu\u017c obok znanego foodhallu Montownia oraz w s\u0105siedztwie popularnych klub\u00f3w Elektryk\u00f3w i 100cznia. Idealny dla 10 os\u00f3b, sk\u0142ada si\u0119 z 5 pokoi, w tym 4 sypialni, i oferuje widok na miasto. Do dyspozycji go\u015bci jest przestronny balkon, aneks kuchenny z lod\u00f3wk\u0105, czajnikiem elektrycznym i ekspresem do kawy, a tak\u017ce suszarka do w\u0142os\u00f3w i telewizor. Apartament wyposa\u017cony jest w klimatyzacj\u0119, centralne ogrzewanie oraz bezprzewodowy Internet. Zapewnione s\u0105 r\u00f3wnie\u017c hotelowe tekstylia i r\u0119czniki, co gwarantuje komfortowy pobyt w wysokim standardzie.\",\"category\":\"Wyspa Spichrz\u00f3w\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240708114603_Zu07EG.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240708114603_LQ4Pg5.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240708114603_TxqWWK.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240708114603_FeWWY3.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240708114603_UoxMdG.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240708114603_qs72B3.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240708114603_o5lHuc.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240708114603_3F4Zcx.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240708114603_bfRQWd.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240708114603_XjqLf5.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240708114603_rFeXVg.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240708114604_lfj165.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240708114604_u4EBeU.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240708114604_2rk77Q.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240708114604_3VTjt1.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240708114604_eSHul5.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240708114604_9FSFWb.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240708114604_PtXB8d.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240708114604_AMbThX.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240708114604_CVRSu7.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240708114604_LpKaJ7.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240708114604_YoEYGd.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240708114604_t7JMDu.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240717214957_717hBE.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240717214958_lmb6ZD.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\",\"attributes\":[{\"praId\":30,\"value\":\"1\"}]},\"2\":{\"okpId\":10,\"value\":\"\"},\"10\":{\"okpId\":26,\"value\":\"\"},\"18\":{\"okpId\":94,\"value\":\"120\"},\"20\":{\"okpId\":97,\"value\":\"4\"},\"21\":{\"okpId\":98,\"value\":\"5\"}},\"price\":1500,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=952773\",\"detailsUrl\":\"\\\/952773\"},{\"obkId\":\"952777\",\"name\":\"Apartment G 245\",\"description\":\"Przestronny apartament o powierzchni 120 m\u00b2 w Gda\u0144sku, zlokalizowany na osiedlu Doki \u2013 tu\u017c obok znanego foodhallu Montownia oraz w s\u0105siedztwie popularnych klub\u00f3w Elektryk\u00f3w i 100cznia. Idealny dla 10 os\u00f3b, sk\u0142ada si\u0119 z 5 pokoi, w tym 4 sypialni, i oferuje widok na miasto. Do dyspozycji go\u015bci jest przestronny balkon, aneks kuchenny z lod\u00f3wk\u0105, czajnikiem elektrycznym i ekspresem do kawy, a tak\u017ce suszarka do w\u0142os\u00f3w i telewizor. Apartament wyposa\u017cony jest w klimatyzacj\u0119, centralne ogrzewanie oraz bezprzewodowy Internet. Zapewnione s\u0105 r\u00f3wnie\u017c hotelowe tekstylia i r\u0119czniki, co gwarantuje komfortowy pobyt w wysokim standardzie.\",\"category\":\"Wyspa Spichrz\u00f3w\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240717215209_QmaNgS.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240717215210_W6qdx7.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240717215210_kdm8Vm.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240717215209_CwJlB6.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240717215209_6GxOJc.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240717215209_lEUwGz.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240717215210_SCdA8T.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240717215210_AeXkV8.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240717215210_tr3F9a.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240717215210_1plkfa.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240717215210_FiEDId.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240717215210_VkZGt8.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240717215210_fCbU4Y.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240717215210_AGmWLY.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240717215210_dqBCOC.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240717215210_EwzdmS.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240717215210_RdW5VU.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240717215210_udIgv0.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240717215210_mTOURn.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240717215210_KcLBA1.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240717215210_H9oFcT.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240717215210_Bv3jtB.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240717215210_cSKmR0.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"2\":{\"okpId\":10,\"value\":\"\"},\"15\":{\"okpId\":94,\"value\":\"120\"},\"17\":{\"okpId\":97,\"value\":\"4\"},\"18\":{\"okpId\":98,\"value\":\"5\"}},\"price\":900,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=952777\",\"detailsUrl\":\"\\\/952777\"},{\"obkId\":\"684134\",\"name\":\"Chmielna 73\\\/23\",\"description\":\"\",\"category\":\"Widok Na Rzek\u0119\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20201204120906_sPj1jv.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200601163046_t488JS.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200601163046_7bXSux.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200601163046_pSD0A1.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200601163046_uof0zs.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200601163046_lBI9y7.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200601163046_ir5RhP.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200601163046_r3p8Uu.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200601163046_6hMZDN.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200601163046_NUXY0G.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"10\":{\"okpId\":26,\"value\":\"\"},\"15\":{\"okpId\":94,\"value\":\"40\"},\"17\":{\"okpId\":97,\"value\":\"1\"},\"18\":{\"okpId\":98,\"value\":\"2\"}},\"price\":350,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=684134\",\"detailsUrl\":\"\\\/684134\"},{\"obkId\":\"908903\",\"name\":\"FRONT PARK Sadowa  25B 18\",\"description\":\"Apartament zlokalizowany na nowym osiedlu przy ulicy Sadowej 25 w Gda\u0144sku.Znajduje si\u0119 w odleg\u0142o\u015bci ok 1,3 km (20 minut spacerem) od Zielonej Bramy b\u0119d\u0105cej pocz\u0105tkiem D\u0142ugiego Targu - najs\u0142ynniejszego deptaka w Gda\u0144sku.Apartament sk\u0142ada si\u0119 z przestronnego salonu z aneksem kuchennym, w kt\u00f3rym znajduje si\u0119 rozk\u0142adana sofa dla 2 os\u00f3b. W jednej sypialni znajduje si\u0119 \u0142o\u017ce dla 2 os\u00f3b, a w drugiej rozsuwane \u0142\u00f3\u017cko z 2 osobnymi materacami r\u00f3wnie\u017c dla 2 os\u00f3b. W sumie mo\u017ce tu nocowa\u0107 6 os\u00f3b. W apartamencie znajduje si\u0119 \u0142azienka z prysznicem oraz dodatkowa toaleta. W kuchni s\u0105 wszystkie niezb\u0119dne sprz\u0119ty - zmywarka, p\u0142yta indukcyjna, piekarnik, ekspres przelewowy, garnki, naczynia i szk\u0142o. Jest tu tak\u017ce pralka i suszarka do ubra\u0144.Istnieje mo\u017cliwo\u015b\u0107 wynaj\u0119cia miejsca w hali gara\u017cowej.\",\"category\":\"Stare Miasto i Marina\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230911134209_PbfiVg.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230911134209_aC26HD.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230911134209_iQigkI.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230911134209_Z5bkpy.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230911134209_eT2Zh2.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230911134209_kEzX81.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230911134209_eIS9G9.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230911134209_0LmL9O.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230911134209_5Vrl06.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230911134209_u061jv.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230911134209_LZo2SO.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230911134209_zd4k5f.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230911134209_acGLes.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230911134209_ESFxRD.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230911134209_O5liMf.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230911134209_3pWKBM.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20230911134209_SocyOj.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"8\":{\"okpId\":26,\"value\":\"\"},\"15\":{\"okpId\":94,\"value\":\"80\"},\"16\":{\"okpId\":97,\"value\":\"2\"},\"17\":{\"okpId\":98,\"value\":\"3\"},\"20\":{\"okpId\":102,\"value\":\"\"}},\"price\":400,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=908903\",\"detailsUrl\":\"\\\/908903\"},{\"obkId\":\"945671\",\"name\":\"FRONT PARK Sadowa 25B 14\",\"description\":\"Apartament zlokalizowany na nowym osiedlu przy ulicy Sadowej 25 w Gda\u0144sku.Znajduje si\u0119 w odleg\u0142o\u015bci ok 1,3 km (20 minut spacerem) od Zielonej Bramy b\u0119d\u0105cej pocz\u0105tkiem D\u0142ugiego Targu - najs\u0142ynniejszego deptaka w Gda\u0144sku.Apartament sk\u0142ada si\u0119 z przestronnego salonu z aneksem kuchennym, w kt\u00f3rym znajduje si\u0119 rozk\u0142adana sofa dla 2 os\u00f3b. W obu sypialniach znajduj\u0105 si\u0119 \u0142o\u017ca, ka\u017cde dla 2 os\u00f3b. W sumie mo\u017ce tu nocowa\u0107 6 os\u00f3b. W apartamencie znajduje si\u0119 \u0142azienka z prysznicem oraz dodatkowa toaleta.W kuchni s\u0105 wszystkie niezb\u0119dne sprz\u0119ty - zmywarka, p\u0142yta indukcyjna, piekarnik, mikrofal\u00f3wka, ekspres przelewowy, garnki, naczynia i szk\u0142o. Jest tu tak\u017ce pralka.Istnieje mo\u017cliwo\u015b\u0107 wynaj\u0119cia miejsca w hali gara\u017cowej.\",\"category\":\"Stare Miasto i Marina\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240429143022_YVQAxK.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240429143022_lf067n.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240429143022_DvxH9Y.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240429143022_bmWZY8.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240429143023_u2l7Zw.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240429143023_MdxYqq.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240429143023_wao7Mf.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240429143023_8wO3pn.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240429143023_MXxql4.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240429143023_aC2Hi7.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240429143023_7mKMry.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240429143023_MXKhr2.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240429143023_IHN1t9.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240429143023_kDMq0x.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240429143023_fvkyY8.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240429143023_rRKIRO.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"11\":{\"okpId\":26,\"value\":\"\"},\"18\":{\"okpId\":94,\"value\":\"75\"},\"19\":{\"okpId\":97,\"value\":\"2\"},\"20\":{\"okpId\":98,\"value\":\"3\"}},\"price\":400,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=945671\",\"detailsUrl\":\"\\\/945671\"},{\"obkId\":\"682436\",\"name\":\"\u015bw. Barbary 100 G\",\"description\":\"\",\"category\":\"Stare Miasto i Marina\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260311122653_22WUgo.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260311122653_UQ8wtf.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260311122653_1moM3e.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260311122653_UVpnd2.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260311122653_v6xa96.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260311122653_srDKmM.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260311122653_6SR58H.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260311122653_SL8Y75.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260311122653_ru1WBM.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260311122653_Nzl5JV.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260311122653_pYMrsF.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190923131412_chny2N.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260311122653_6i1HXU.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190923131412_48faqm.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260311122653_l7cIdT.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260311122653_pkXh9K.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260311122653_aid5KE.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260311122653_zVmK04.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260311122653_3iIT5G.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260311122653_SAg6uy.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260311122653_oaCGPM.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260311122653_calhnP.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260311122653_sdMiaE.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260311122653_jLdX3M.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20260311122653_k7iwnr.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"10\":{\"okpId\":26,\"value\":\"\"},\"16\":{\"okpId\":94,\"value\":\"100\"},\"18\":{\"okpId\":97,\"value\":\"3\"},\"19\":{\"okpId\":98,\"value\":\"4\"}},\"price\":450,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=682436\",\"detailsUrl\":\"\\\/682436\"},{\"obkId\":\"659130\",\"name\":\"\u015bw. Barbary 117\",\"description\":\"\",\"category\":\"Stare Miasto i Marina\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20201204120258_xMy95p.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190923132829_mT94WW.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190923132829_L1EoGv.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190923132829_oC0lUg.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190923132829_SuBHdW.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190923132829_dtSMA7.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190923132829_XFhURh.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190923132829_pzvnmv.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190923132829_lDE3Tt.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190923132829_XqEqqU.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190923132829_6BZaTP.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190923132829_TVYvq9.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20190923132829_M1IqJI.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"9\":{\"okpId\":26,\"value\":\"\"},\"13\":{\"okpId\":94,\"value\":\"100\"},\"15\":{\"okpId\":97,\"value\":\"3\"},\"16\":{\"okpId\":98,\"value\":\"4\"}},\"price\":1000,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=659130\",\"detailsUrl\":\"\\\/659130\"},{\"obkId\":\"714216\",\"name\":\"Szafarnia 5\\\/2 (bez parkingu)\",\"description\":\"\",\"category\":\"Stare Miasto i Marina\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200216190559_4dxuyD.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200216190559_fPJkVB.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200216190559_jWVqGd.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200216190559_YAGNyI.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200216190559_NQrPHf.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200216190559_n1jn8h.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200216190559_UOhHW7.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200216190559_UbOism.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200216190559_plYXwQ.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200216190559_5TuZNG.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200216190559_6OhV0i.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200216190559_6sILPX.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200216190559_5qIZcQ.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"16\":{\"okpId\":97,\"value\":\"3\"}},\"price\":0,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=714216\",\"detailsUrl\":\"\\\/714216\"},{\"obkId\":\"714228\",\"name\":\"Szafarnia 7\\\/38 (bez parkingu)\",\"description\":\"\",\"category\":\"Stare Miasto i Marina\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240329153107_gxkfBC.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240329153107_8VfmgD.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240329153107_uyNy6D.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240329153107_EHGidz.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240329153107_o62MKl.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240329153107_kvmpTB.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240329153107_Axp63B.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240329153107_UK8cAd.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240329153107_2yScbT.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240329153107_uO6bYS.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240329153107_5IAfCI.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240329153107_S9mnZs.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240329153107_AkYjmy.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240329153107_1axIGG.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240329153107_kkFkPW.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240329153108_2AIgyN.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240329153108_ZSp7K1.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240329153108_xsCzLB.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240329153108_cfIRvM.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240329153108_VXTqNc.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240329153108_p6wghI.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20240329153108_sZ19uV.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"12\":{\"okpId\":97,\"value\":\"3\"}},\"price\":0,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=714228\",\"detailsUrl\":\"\\\/714228\"},{\"obkId\":\"714230\",\"name\":\"Szafarnia 7\\\/42A (bez parkingu)\",\"description\":\"\",\"category\":\"Stare Miasto i Marina\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200216204842_LTcneY.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200216204842_fF5YtG.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200216204842_Lz7cVH.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200216204842_0HhZrw.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200216204842_Z1gjch.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200216204842_aZKZH5.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200216204842_WjwPbE.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200216204842_rSpj6V.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200216204842_ixnC0K.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200216204842_nFENWS.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200216204842_16B2fc.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200216204842_OD6qDV.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200216204842_KY6Qbt.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200216204842_2u9yYw.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200216204842_TmAI0x.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200216204842_WJZz2M.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"11\":{\"okpId\":97,\"value\":\"1\"}},\"price\":0,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=714230\",\"detailsUrl\":\"\\\/714230\"},{\"obkId\":\"714232\",\"name\":\"Szafarnia 7\\\/42B (bez parkingu)\",\"description\":\"\",\"category\":\"Stare Miasto i Marina\",\"gallery\":[\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200216210617_39oHDK.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200216210617_M7RURN.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200216210617_9eRRl5.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200216210617_RcY1Kn.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200216210617_PJCSYk.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200216210617_KRvwqU.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200216210617_0Qlbip.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200216210617_DuYJ1p.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200216210617_Ayu3du.jpg\",\"https:\\\/\\\/files.previo.cz\\\/744662\\\/www\\\/img\\\/photos\\\/20200216210617_q3bmwE.jpg\"],\"facilities\":{\"0\":{\"okpId\":6,\"value\":\"\"},\"1\":{\"okpId\":10,\"value\":\"\"},\"11\":{\"okpId\":97,\"value\":\"1\"}},\"price\":0,\"currency\":\"PLN\",\"reserveUrl\":\"\\\/rezerwacja\\\/?showRoomType=714232\",\"detailsUrl\":\"\\\/714232\"}];\n    console.log(apartments);\n    const facilityConfig = {\"94\":{\"name\":null,\"icon\":\"fa-expand\"},\"97\":{\"name\":\"Liczba sypialni:\",\"icon\":\"fa-door-open\"},\"104\":{\"name\":null,\"icon\":\"fa-info\"},\"98\":{\"name\":\"Liczba pokoi:\",\"icon\":\"fa-info\"},\"10\":{\"name\":\"WiFi\",\"icon\":\"fa-wifi\"},\"102\":{\"name\":\"Parking\",\"icon\":\"fa-parking\"},\"6\":{\"name\":\"Telewizor\",\"icon\":\"fa-circle-check\"},\"25\":{\"name\":\"Zwierz\u0119ta\",\"icon\":\"fa-circle-check\"},\"19\":{\"name\":\"Suszarka\",\"icon\":\"fa-circle-check\"},\"24\":{\"name\":\"Udogodnienia dla w\u00f3zk\u00f3w inwalidzkich\",\"icon\":\"fa-circle-check\"},\"3\":{\"name\":\"\u0141\u00f3\u017cko dla dziecka\",\"icon\":\"fa-circle-check\"},\"4\":{\"name\":\"Telefon\",\"icon\":\"fa-circle-check\"},\"5\":{\"name\":\"Odtwarzacz DVD\",\"icon\":\"fa-circle-check\"},\"8\":{\"name\":\"Sejf\",\"icon\":\"fa-circle-check\"},\"9\":{\"name\":\"Klimatyzacja\",\"icon\":\"fa-circle-check\"},\"12\":{\"name\":\"Po\u015bciel\",\"icon\":\"fa-circle-check\"},\"13\":{\"name\":\"Prysznic\",\"icon\":\"fa-circle-check\"},\"14\":{\"name\":\"Wanna\",\"icon\":\"fa-circle-check\"},\"15\":{\"name\":\"Jacuzzi\",\"icon\":\"fa-circle-check\"},\"16\":{\"name\":\"WC\",\"icon\":\"fa-circle-check\"},\"17\":{\"name\":\"Lod\u00f3wka\",\"icon\":\"fa-circle-check\"},\"18\":{\"name\":\"Mini Bar\",\"icon\":\"fa-circle-check\"},\"20\":{\"name\":\"Ekspres do kawy\",\"icon\":\"fa-circle-check\"},\"21\":{\"name\":\"Centralne ogrzewanie\",\"icon\":\"fa-circle-check\"},\"22\":{\"name\":\"Aneks kuchenny\",\"icon\":\"fa-circle-check\"},\"23\":{\"name\":\"Pralka\",\"icon\":\"fa-circle-check\"},\"26\":{\"name\":\"Balkon\",\"icon\":\"fa-circle-check\"},\"27\":{\"name\":\"Taras\",\"icon\":\"fa-circle-check\"},\"28\":{\"name\":\"Kuchenka mikrofalowa\",\"icon\":\"fa-circle-check\"},\"54\":{\"name\":\"Miejsce dla niepal\u0105cych\",\"icon\":\"fa-circle-check\"},\"57\":{\"name\":\"Wentylator\",\"icon\":\"fa-circle-check\"},\"58\":{\"name\":\"Wentylator przeno\u015bny\",\"icon\":\"fa-circle-check\"},\"59\":{\"name\":\"Wieszaki\",\"icon\":\"fa-circle-check\"},\"60\":{\"name\":\"R\u0119czniki\",\"icon\":\"fa-circle-check\"},\"61\":{\"name\":\"Dodatkowe \u0142\u00f3\u017cko\",\"icon\":\"fa-circle-check\"},\"62\":{\"name\":\"Gry video\",\"icon\":\"fa-circle-check\"},\"63\":{\"name\":\"Codzienne sprz\u0105tanie\",\"icon\":\"fa-circle-check\"},\"64\":{\"name\":\"Darmowe rozmowy lokalne\",\"icon\":\"fa-circle-check\"},\"65\":{\"name\":\"Darmowy zestaw kosmetyk\u00f3w\",\"icon\":\"fa-circle-check\"},\"66\":{\"name\":\"Suszarka wolnostoj\u0105ca\",\"icon\":\"fa-circle-check\"},\"67\":{\"name\":\"Komputer w pokoju\",\"icon\":\"fa-circle-check\"},\"68\":{\"name\":\"Tablet\",\"icon\":\"fa-circle-check\"},\"69\":{\"name\":\"Osobna jadalnia\",\"icon\":\"fa-circle-check\"},\"70\":{\"name\":\"Kuchnia\",\"icon\":\"fa-circle-check\"},\"71\":{\"name\":\"Kuchnia wsp\u00f3\u0142dzielona\",\"icon\":\"fa-circle-check\"},\"72\":{\"name\":\"Zamra\u017calnik\",\"icon\":\"fa-circle-check\"},\"73\":{\"name\":\"Mini lod\u00f3wka\",\"icon\":\"fa-circle-check\"},\"77\":{\"name\":\"Kominek\",\"icon\":\"fa-circle-check\"},\"75\":{\"name\":\"Zmywarka\",\"icon\":\"fa-circle-check\"},\"100\":{\"name\":\"Czajnik elektryczny\",\"icon\":\"fa-circle-check\"},\"101\":{\"name\":\"Zestaw do parzenia kawy\\\/herbaty\",\"icon\":\"fa-circle-check\"},\"103\":{\"name\":\"Rekuperator powietrza\",\"icon\":\"fa-circle-check\"}};\n\n    if (!Array.isArray(apartments) || apartments.length === 0) {\n      document.querySelector('.apc-wrapper').innerHTML =\n        '<p style=\"color:red; text-align:center;\">Brak apartament\u00f3w do wy\u015bwietlenia.<\/p>';\n      return;\n    }\n\n    const firstCat = document.querySelector('.apc-filters button.active')\n      .getAttribute('data-cat')\n      .toLowerCase()\n      .normalize('NFD')\n      .replace(\/[\\u0300-\\u036f]\/g, '');\n\n    let filtered = apartments.filter(a =>\n      getCategories(a).includes(firstCat)\n    );\n    if (!filtered.length) filtered = apartments;\n    let idx = 0;\n\n    \/\/ elementy DOM\n    const filters    = document.querySelectorAll('.apc-filters button');\n    const priceVal   = document.querySelector('.apc-price-val');\n    const priceCur   = document.querySelector('.apc-price-cur');\n    const titleEl    = document.querySelector('.apc-title');\n    const descEl     = document.querySelector('.apc-desc');\n    const facEl      = document.querySelector('.apc-fac');\n    const btnReserve = document.querySelector('.apc-buttons .reserve');\n    const btnDetail  = document.querySelector('.apc-buttons .details');\n    const prevBtn    = document.querySelector('.apc-prev');\n    const nextBtn    = document.querySelector('.apc-next');\n    const prevName   = document.querySelector('.apc-prev-name');\n    const nextName   = document.querySelector('.apc-next-name');\n    const container = document.querySelector('.apc-content');\n    let isAnimating = false;\n\n    \/\/ inicjalizacja Swiper\n    const swiper = new Swiper('.apc-gallery', {\n      loop: true,\n      navigation: {\n        nextEl: '.swiper-button-next',\n        prevEl: '.swiper-button-prev',\n      },\n    });\n\n    function animateFade(updateCb) {\n      if (isAnimating) return;\n      isAnimating = true;\n\n      container.classList.remove(\n        'transition-exit-next',\n        'transition-exit-prev',\n        'transition-enter',\n        'transition-exit-fade'\n      );\n\n      \/\/ EXIT-PHASE (fade)\n      function onExitFade(e) {\n        if (e.propertyName !== 'opacity') return;\n        container.removeEventListener('transitionend', onExitFade);\n\n        updateCb();\n        renderApartment(idx);\n\n        void container.offsetWidth;\n        container.classList.remove('transition-exit-fade');\n        container.classList.add('transition-enter');\n\n        \/\/ ENTER-PHASE\n        container.addEventListener('transitionend', onEnterFade);\n      }\n\n      function onEnterFade(e) {\n        if (e.propertyName !== 'opacity') return;\n        container.removeEventListener('transitionend', onEnterFade);\n        container.classList.remove('transition-enter');\n        isAnimating = false;\n      }\n\n      container.addEventListener('transitionend', onExitFade);\n      container.classList.add('transition-exit-fade');\n    }\n\nfunction animateChange(dir, updateCb) {\n  if (isAnimating) return;\n  isAnimating = true;\n\n  \/\/ usu\u0144 wszystkie klasy animacji\n  container.classList.remove(\n    'transition-exit-next',\n    'transition-exit-prev',\n    'transition-enter',\n    'transition-exit-fade'\n  );\n\n  const exitClass = dir > 0\n    ? 'transition-exit-next'\n    : 'transition-exit-prev';\n\n  \/\/ EXIT-PHASE\n  function onExit(e) {\n    if (e.propertyName !== 'opacity') return;\n    container.removeEventListener('transitionend', onExit);\n\n    \/\/ aktualizacja danych + render\n    updateCb();\n    renderApartment(idx);\n\n    \/\/ wymu\u015b reflow i wejd\u017a w ENTER\n    void container.offsetWidth;\n    container.classList.remove(exitClass);\n    container.classList.add('transition-enter');\n\n    \/\/ ENTER-PHASE\n    container.addEventListener('transitionend', onEnter);\n  }\n\n  function onEnter(e) {\n    if (e.propertyName !== 'opacity') return;\n    container.removeEventListener('transitionend', onEnter);\n    container.classList.remove('transition-enter');\n    isAnimating = false;\n  }\n\n  container.addEventListener('transitionend', onExit);\n  container.classList.add(exitClass);\n}\n\n    \/\/ renderuje pojedynczy apartament\n    function renderApartment(i) {\n      const apt = filtered[i];\n\n      \/\/ \u2014 galeria \u2014\n      swiper.removeAllSlides();\n      const defaultImg = '';\n      const imgs = Array.isArray(apt.gallery) && apt.gallery.length\n        ? apt.gallery\n        : [ defaultImg ];\n      imgs.forEach(url => {\n        swiper.appendSlide(\n          `<div class=\"swiper-slide\"><img decoding=\"async\" src=\"${url}\" alt=\"\" \/><\/div>`\n        );\n      });\n      swiper.update();\n\n      \/\/ \u2014 dane tekstowe \u2014\n      priceVal.textContent = \"od \" + (apt.price   || '');\n      priceCur.textContent =        (apt.currency|| '');\n      titleEl.textContent  =        (apt.name    || '');\n      descEl.textContent   =        (apt.description|| '');\n      btnReserve.href      =        (apt.reserveUrl|| '#');\n      btnDetail.href       = generateSlugFromName(apt.name || '');\n\n      \/\/ \u2014 udogodnienia \u2014\n      let rawFacilities = [];\n\n      \/\/ je\u015bli facilities to obiekt (klucze \u2192 dane), we\u017a warto\u015bci\n      if ( apt.facilities && typeof apt.facilities === 'object' && !Array.isArray(apt.facilities) ) {\n        rawFacilities = Object.values(apt.facilities);\n      }\n      \/\/ je\u015bli JSON w stringu\n      else if ( typeof apt.facilities === 'string' ) {\n        try {\n          rawFacilities = JSON.parse(apt.facilities);\n        } catch(e) {\n          rawFacilities = [];\n        }\n      }\n      \/\/ je\u015bli ju\u017c tablica\n      else if ( Array.isArray(apt.facilities) ) {\n        rawFacilities = apt.facilities;\n      }\n\n      \/\/ buduj list\u0119 max 6 pozycji\n      if ( rawFacilities.length ) {\n        const suppress = [6, 10];\n        let html = '<ul class=\"apc-fac-list\">';\n        rawFacilities.slice(0,6).forEach(f => {\n          const id   = parseInt(f.okpId, 10);\n          const cfg  = facilityConfig[id] || {};\n          let rawVal = f.value || (f.attributes?.[0]?.value) || '';\n          let text   = '';\n\n          if ([97,98].includes(id)) {\n            if (!rawVal) return;\n            text = `${cfg.name} ${rawVal}`;\n          } else if (suppress.includes(id)) {\n            if (!cfg.name) return;\n            text = cfg.name;\n          } else if (rawVal) {\n            text = cfg.name ? `${cfg.name} ${rawVal}` : rawVal;\n          } else if (cfg.name) {\n            text = cfg.name;\n          } else {\n            return;\n          }\n\n          if (id === 94) text += ' m\u00b2';\n          html += `<li>${text}<\/li>`;\n        });\n        html += '<\/ul>';\n        facEl.innerHTML = html;\n      } else {\n        facEl.innerHTML = '';\n      }\n\n      \/\/ \u2014 nazwy Prev\/Next \u2014\n      const total = filtered.length;\n      const prevI = (i - 1 + total) % total;\n      const nextI = (i + 1) % total;\n      prevName.textContent = filtered[prevI].name || 'Wr\u00f3\u0107';\n      nextName.textContent = filtered[nextI].name || 'Dalej';\n    }\n\n    \/\/ obs\u0142uga Prev\/Next\n   prevBtn.addEventListener('click', () => {\n     animateChange(1, () => {\n       idx = (idx - 1 + filtered.length) % filtered.length;\n     });\n   });\n   nextBtn.addEventListener('click', () => {\n     animateChange(-1, () => {\n       idx = (idx + 1) % filtered.length;\n     });\n   });\n\n    \/\/ obs\u0142uga filtr\u00f3w\n  filters.forEach(btn => {\n    btn.addEventListener('click', () => {\n      filters.forEach(b => b.classList.remove('active'));\n      btn.classList.add('active');\n\n      const cat = btn\n        .getAttribute('data-cat')\n        .toLowerCase()\n        .normalize('NFD')\n        .replace(\/[\\u0300-\\u036f]\/g, '');\n\n      animateFade(() => {\n        filtered = apartments.filter(a =>\n          getCategories(a).includes(cat)\n        );\n        if (!filtered.length) filtered = apartments;\n        idx = 0;\n      });\n    });\n  });\n\n    renderApartment(idx);\n  });\n<\/script>\n\n<\/div>\n    <\/section>\n    <section class=\"u-border-2 u-border-no-left u-border-no-right u-border-no-top u-border-palette-1-base u-clearfix u-section-7\" id=\"sec-6d2b\">\n      <div class=\"u-clearfix u-sheet u-valign-middle u-sheet-1\">\n        <div class=\"data-layout-selected u-clearfix u-expanded-width u-gutter-20 u-layout-wrap u-layout-wrap-1\">\n          <div class=\"u-layout\">\n            <div class=\"u-layout-col\">\n              <div class=\"u-size-30\">\n                <div class=\"u-layout-row\">\n                  <div class=\"u-container-style u-layout-cell u-shape-rectangle u-size-20 u-layout-cell-1\" data-animation-name=\"customAnimationIn\" data-animation-duration=\"1000\" data-animation-delay=\"0\" data-animation-out=\"0\">\n                    <div class=\"u-container-layout u-valign-top u-container-layout-1\">\n                      <h3 class=\"u-align-center u-text u-text-default u-text-palette-1-base u-text-1\">Super<\/h3>\n                      <p class=\"u-align-center u-text u-text-default u-text-2\"> Everything was great, the property is located near the Old Town, close to a shop, cleanliness was fine, the place was very cozy. It met my expectations, and the trip was successful.<\/p>\n                      <p class=\"u-align-center u-text u-text-default u-text-3\">Beata, <span class=\"u-text-palette-1-base\">Booking.com<\/span>\n                      <\/p>\n                    <\/div>\n                  <\/div>\n                  <div class=\"cell-temp-clone u-container-style u-image u-image-round u-layout-cell u-radius u-size-20 lazyload u-image-1\" data-animation-name=\"customAnimationIn\" data-animation-duration=\"1000\" data-animation-delay=\"0\" data-animation-out=\"0\" data-href=\"https:\/\/www.staywin.pl\/rezerwacja\/\" data-image-width=\"2560\" data-image-height=\"1707\" data-target=\"_blank\" data-bg=\"url(&quot;https:\/\/www.staywin.pl\/wp-content\/uploads\/2025\/08\/5-scaled-2.jpg&quot;)\">\n                    <div class=\"u-container-layout u-container-layout-2\"><\/div>\n                  <\/div>\n                  <div class=\"cell-temp-clone u-container-style u-layout-cell u-shape-rectangle u-size-20 u-layout-cell-3\" data-image-width=\"2000\" data-image-height=\"1333\" data-animation-name=\"customAnimationIn\" data-animation-duration=\"1000\" data-animation-delay=\"0\" data-animation-out=\"0\">\n                    <div class=\"u-container-layout u-container-layout-3\">\n                      <h3 class=\"u-align-center u-text u-text-default u-text-palette-1-base u-text-4\"> Excellent&nbsp;<\/h3>\n                      <p class=\"u-align-center u-text u-text-default u-text-5\"> Great apartment location, clean inside, very friendly and helpful staff, highly recommended for a weekend trip to the Tricity \ud83d\ude0a<\/p>\n                      <p class=\"u-align-center u-text u-text-default u-text-6\">Sabina, <span class=\"u-text-palette-1-base\">Booking.com<\/span>\n                      <\/p>\n                    <\/div>\n                  <\/div>\n                <\/div>\n              <\/div>\n              <div class=\"u-size-30\">\n                <div class=\"u-layout-row\">\n                  <div class=\"u-container-style u-image u-image-round u-layout-cell u-radius u-size-20 lazyload u-image-2\" data-animation-name=\"customAnimationIn\" data-animation-duration=\"1000\" data-animation-delay=\"0\" data-animation-out=\"0\" data-href=\"https:\/\/www.staywin.pl\/rezerwacja\/\" data-image-width=\"2560\" data-image-height=\"1707\" data-bg=\"url(&quot;https:\/\/www.staywin.pl\/wp-content\/uploads\/2025\/08\/13-1-scaled-2.jpg&quot;)\">\n                    <div class=\"u-container-layout u-container-layout-4\"><\/div>\n                  <\/div>\n                  <div class=\"u-container-style u-layout-cell u-shape-rectangle u-size-20 u-layout-cell-5\" data-animation-name=\"customAnimationIn\" data-animation-duration=\"1000\" data-animation-delay=\"0\" data-animation-out=\"0\">\n                    <div class=\"u-container-layout u-container-layout-5\">\n                      <h3 class=\"u-align-center u-text u-text-default u-text-palette-1-base u-text-7\"> Nice place! \u2764\ufe0f<\/h3>\n                      <p class=\"u-align-center u-text u-text-default u-text-8\"> A wonderful, peaceful place. We stayed for the second time and will definitely come again. Clean, comfortable, and beautiful.<\/p>\n                      <p class=\"u-align-center u-text u-text-default u-text-9\">Janas, <span class=\"u-text-palette-1-base\">Booking.com<\/span>\n                      <\/p>\n                    <\/div>\n                  <\/div>\n                  <div class=\"u-container-style u-image u-image-round u-layout-cell u-radius u-size-20 lazyload u-image-3\" data-image-width=\"2560\" data-image-height=\"1707\" data-animation-name=\"customAnimationIn\" data-animation-duration=\"1000\" data-animation-delay=\"0\" data-animation-out=\"0\" data-href=\"https:\/\/www.staywin.pl\/rezerwacja\/\" data-bg=\"url(&quot;https:\/\/www.staywin.pl\/wp-content\/uploads\/2025\/08\/1910-scaled-2.jpg&quot;)\">\n                    <div class=\"u-container-layout u-container-layout-6\"><\/div>\n                  <\/div>\n                <\/div>\n              <\/div>\n            <\/div>\n          <\/div>\n        <\/div>\n      <\/div>\n    <\/section>\n    <section class=\"u-clearfix u-image u-shading lazyload u-section-8\" id=\"sec-c231\" data-image-width=\"2560\" data-image-height=\"1707\" data-bg=\"linear-gradient(to bottom, rgba(85, 94, 99, 0.85), rgba(85, 94, 99, 0.85)), url('https:\/\/www.staywin.pl\/wp-content\/uploads\/2025\/08\/21-scaled-2.jpg')\">\n      <div class=\"u-container-style u-expanded-width u-gradient u-group u-shape-rectangle u-group-1\">\n        <div class=\"u-container-layout u-container-layout-1\"><\/div>\n      <\/div>\n      <h3 class=\"u-text u-text-default u-text-grey-30 u-text-1\" data-animation-name=\"customAnimationIn\" data-animation-duration=\"1000\" data-animation-delay=\"0\" data-animation-out=\"0\">Discover our standards<\/h3>\n      <h2 class=\"u-align-center u-text u-text-white u-text-2\" data-animation-name=\"customAnimationIn\" data-animation-duration=\"1000\" data-animation-delay=\"0\" data-animation-out=\"0\">\n        <span style=\"font-weight: 400;\"><\/span> The most beautiful locations in the heart of Gda\u0144sk.&nbsp;<br>Experience unforgettable moments&nbsp;<span class=\"u-text-palette-1-base\">in comfortable apartments.<\/span>\n      <\/h2>\n    <\/section>\n    <section class=\"u-clearfix u-section-9\" id=\"sec-bda8\">\n      <div class=\"u-clearfix u-sheet u-sheet-1\">\n        <div class=\"u-align-center-sm u-align-center-xs u-expanded-width-lg u-expanded-width-md u-expanded-width-xl u-expanded-width-xs u-list u-list-1\">\n          <div class=\"u-repeater u-repeater-1\">\n            <div class=\"u-align-center u-border-2 u-border-palette-1-base u-container-align-center u-container-align-center-xl u-container-style u-hover-feature u-list-item u-radius u-repeater-item u-shape-round u-palette-2-base u-list-item-1\" data-animation-out=\"0\">\n              <div class=\"u-container-layout u-similar-container u-container-layout-1\">\n                <span class=\"u-file-icon u-icon u-text-white u-icon-1\"><img decoding=\"async\" src=\"https:\/\/www.staywin.pl\/wp-content\/uploads\/2025\/08\/0a3afb13-1.png\" alt=\"\"><\/span>\n                <h4 class=\"u-custom-font u-text u-text-font u-text-white u-text-1\">Comfortable king-size beds<\/h4>\n              <\/div>\n            <\/div>\n            <div class=\"u-align-center u-border-2 u-border-palette-1-base u-container-align-center u-container-align-center-lg u-container-align-center-md u-container-align-center-xl u-container-style u-hover-feature u-list-item u-radius u-repeater-item u-shape-round u-palette-2-base u-list-item-2\" data-animation-out=\"0\">\n              <div class=\"u-container-layout u-similar-container u-container-layout-2\">\n                <span class=\"u-file-icon u-icon u-text-white u-icon-2\"><img decoding=\"async\" src=\"https:\/\/www.staywin.pl\/wp-content\/uploads\/2025\/08\/be8db426-1.png\" alt=\"\"><\/span>\n                <h4 class=\"u-custom-font u-text u-text-font u-text-white u-text-2\"> Jacuzzi with<br> a city view \n                <\/h4>\n              <\/div>\n            <\/div>\n            <div class=\"u-align-center u-border-2 u-border-palette-1-base u-container-align-center u-container-align-center-xl u-container-style u-hover-feature u-list-item u-radius u-repeater-item u-shape-round u-palette-2-base u-list-item-3\" data-animation-out=\"0\">\n              <div class=\"u-container-layout u-similar-container u-container-layout-3\">\n                <span class=\"u-file-icon u-icon u-text-white u-icon-3\"><img decoding=\"async\" src=\"https:\/\/www.staywin.pl\/wp-content\/uploads\/2025\/08\/187d0b74-1.png\" alt=\"\"><\/span>\n                <h4 class=\"u-custom-font u-text u-text-font u-text-white u-text-3\"> Fully equipped kitchenette<\/h4>\n              <\/div>\n            <\/div>\n            <div class=\"u-align-center u-border-2 u-border-palette-1-base u-container-align-center u-container-align-center-xl u-container-style u-hover-feature u-list-item u-radius u-repeater-item u-shape-round u-palette-2-base u-list-item-4\" data-animation-out=\"0\">\n              <div class=\"u-container-layout u-similar-container u-container-layout-4\">\n                <span class=\"u-file-icon u-icon u-text-white u-icon-4\"><img decoding=\"async\" src=\"https:\/\/www.staywin.pl\/wp-content\/uploads\/2025\/08\/986e1408-1.png\" alt=\"\"><\/span>\n                <h4 class=\"u-custom-font u-text u-text-font u-text-white u-text-4\"> Modern bathroom <br>with designer accents \n                <\/h4>\n              <\/div>\n            <\/div>\n          <\/div>\n        <\/div>\n      <\/div>\n      \n      \n      \n      \n    <\/section>\n    <section class=\"u-clearfix u-section-10\" id=\"sec-456c\">\n      <div class=\"u-clearfix u-sheet u-valign-middle u-sheet-1\">\n        <div class=\"data-layout-selected u-clearfix u-expanded-width u-layout-wrap u-layout-wrap-1\">\n          <div class=\"u-layout\">\n            <div class=\"u-layout-col\">\n              <div class=\"u-container-style u-layout-cell u-size-30 u-layout-cell-1\" data-animation-name=\"customAnimationIn\" data-animation-duration=\"1000\" data-animation-delay=\"0\" data-animation-out=\"0\">\n                <div class=\"u-border-2 u-border-no-left u-border-no-right u-border-no-top u-border-palette-1-base u-container-layout u-valign-top-xs u-container-layout-1\">\n                  <h2 class=\"u-text u-text-default u-text-grey-30 u-text-1\">Blog<\/h2>\n                  <h2 class=\"u-text u-text-default u-text-2\"> Stay up to date with us<\/h2>\n                  <a href=\"https:\/\/www.staywin.pl\/en\/blog\/\" class=\"u-align-center-xs u-align-left-sm u-border-none u-btn u-button-style u-hover-feature u-hover-palette-1-dark-1 u-palette-1-base u-btn-1\" title=\"Book online\">See all <\/a>\n                <\/div>\n              <\/div>\n              <div class=\"u-container-style u-layout-cell u-size-30 u-layout-cell-2\">\n                <div class=\"u-container-layout u-valign-bottom u-container-layout-2\">\n                  <div class=\"u-blog u-cms u-container-style u-expanded-width u-blog-1\" data-max-items=\"3\" data-blog-source-type=\"Recent\" data-blog-source=\"2\">\n                    <div class=\"u-list-control\"><\/div>\n                    <div class=\"u-repeater u-repeater-1\">\n                      <div class=\"u-blog-post u-container-style u-repeater-item\">\n                        <div class=\"u-container-layout u-similar-container u-valign-top u-container-layout-3\"><a class=\"u-blog-control u-expanded-width u-image u-image-round u-radius lazyload u-image-1\" href=\"https:\/\/www.staywin.pl\/en\/2025\/08\/07\/widocznosc-ktora-przynosi-rezerwacje-jak-promowac-apartament-w-swiecie-algorytmow-i-konkurencji\/\">\n                          <img alt=\"\" class=\"u-blog-control u-expanded-width u-image u-image-round u-radius lazyload u-image-1\" data-src=\"https:\/\/www.staywin.pl\/wp-content\/uploads\/2025\/08\/17-5-scaled-1.jpg\" loading=\"lazy\"><\/a>\n                          <h2 class=\"u-blog-control u-text u-text-palette-1-base u-text-3\">\n                            <a class=\"u-post-header-link\" href=\"https:\/\/www.staywin.pl\/en\/2025\/08\/07\/widocznosc-ktora-przynosi-rezerwacje-jak-promowac-apartament-w-swiecie-algorytmow-i-konkurencji\/\">How to promote an apartment in the world of algorithms and competition?<\/a>\n                          <\/h2>\n                          <div class=\"u-align-left u-blog-control u-post-content u-text u-text-4\"><p>\n\n\n\n\nWhy does your apartment disappear in the crowd?\n\nImagine a tourist planning a trip to Gda\u0144sk. They open Booking or Airbnb and suddenly in front of \u2026<\/p>\n                          <\/div>\n                          <a href=\"https:\/\/www.staywin.pl\/en\/2025\/08\/07\/widocznosc-ktora-przynosi-rezerwacje-jak-promowac-apartament-w-swiecie-algorytmow-i-konkurencji\/\" class=\"u-blog-control u-btn u-button-style u-hover-feature u-btn-2\">Read more<\/a>\n                        <\/div>\n                      <\/div>\n                      <div class=\"u-blog-post u-container-style u-repeater-item\">\n                        <div class=\"u-container-layout u-similar-container u-valign-top u-container-layout-4\"><a class=\"u-blog-control u-expanded-width u-image u-image-round u-radius lazyload u-image-2\" href=\"https:\/\/www.staywin.pl\/en\/2025\/08\/07\/wnetrze-ktore-sprzedaje-noclegi-jak-przygotowac-apartament-ktory-przyciaga-i-zarabia\/\">\n                          <img alt=\"\" class=\"u-blog-control u-expanded-width u-image u-image-round u-radius lazyload u-image-2\" data-src=\"https:\/\/www.staywin.pl\/wp-content\/uploads\/2025\/08\/x9-scaled-1.jpg\" loading=\"lazy\"><\/a>\n                          <h2 class=\"u-blog-control u-text u-text-palette-1-base u-text-5\">\n                            <a class=\"u-post-header-link\" href=\"https:\/\/www.staywin.pl\/en\/2025\/08\/07\/wnetrze-ktore-sprzedaje-noclegi-jak-przygotowac-apartament-ktory-przyciaga-i-zarabia\/\">How to prepare an apartment that attracts and earns?<\/a>\n                          <\/h2>\n                          <div class=\"u-align-left u-blog-control u-post-content u-text u-text-6\"><p>\nShort-term rental today is not just about location or price. It is above all about the interior that can \u201csell\u201d itself in a photo within a few \u2026<\/p>\n                          <\/div>\n                          <a href=\"https:\/\/www.staywin.pl\/en\/2025\/08\/07\/wnetrze-ktore-sprzedaje-noclegi-jak-przygotowac-apartament-ktory-przyciaga-i-zarabia\/\" class=\"u-blog-control u-btn u-button-style u-hover-feature u-btn-3\">Read more<\/a>\n                        <\/div>\n                      <\/div>\n                      <div class=\"u-blog-post u-container-style u-repeater-item\">\n                        <div class=\"u-container-layout u-similar-container u-valign-top u-container-layout-5\"><a class=\"u-blog-control u-expanded-width u-image u-image-round u-radius lazyload u-image-3\" href=\"https:\/\/www.staywin.pl\/en\/2025\/08\/07\/czy-twoje-mieszkanie-moze-pracowac-na-ciebie-prawda-o-krotkoterminowym-wynajmie-w-gdansku\/\">\n                          <img alt=\"\" class=\"u-blog-control u-expanded-width u-image u-image-round u-radius lazyload u-image-3\" data-src=\"https:\/\/www.staywin.pl\/wp-content\/uploads\/2025\/08\/17-1-scaled-1.jpg\" loading=\"lazy\"><\/a>\n                          <h2 class=\"u-blog-control u-text u-text-palette-1-base u-text-7\">\n                            <a class=\"u-post-header-link\" href=\"https:\/\/www.staywin.pl\/en\/2025\/08\/07\/czy-twoje-mieszkanie-moze-pracowac-na-ciebie-prawda-o-krotkoterminowym-wynajmie-w-gdansku\/\">Short-term rental in Gda\u0144sk \u2013 your passive income<\/a>\n                          <\/h2>\n                          <div class=\"u-align-left u-blog-control u-post-content u-text u-text-8\"><p>\nShort-term rental is no longer a temporary trend. It is a real opportunity for stable, attractive income \u2013 provided that one approaches the subject\u2026<\/p>\n                          <\/div>\n                          <a href=\"https:\/\/www.staywin.pl\/en\/2025\/08\/07\/czy-twoje-mieszkanie-moze-pracowac-na-ciebie-prawda-o-krotkoterminowym-wynajmie-w-gdansku\/\" class=\"u-blog-control u-btn u-button-style u-hover-feature u-hover-palette-1-dark-1 u-custom-color-13 u-btn-4\">Read more<\/a>\n                        <\/div>\n                      <\/div>\n                    <\/div>\n                    <div class=\"u-list-control\"><\/div>\n                  <\/div>\n                <\/div>\n              <\/div>\n            <\/div>\n          <\/div>\n        <\/div>\n      <\/div>\n      \n      \n      \n      \n    <\/section>\n    <section class=\"u-align-center-lg u-align-center-md u-align-center-xl u-align-left-sm u-align-left-xs u-clearfix u-section-11\" data-image-width=\"2000\" data-image-height=\"1333\" id=\"sec-1edb\">\n      <div class=\"u-clearfix u-sheet u-valign-middle-lg u-valign-middle-md u-valign-middle-xl u-sheet-1\">\n        <div class=\"data-layout-selected u-clearfix u-expanded-width u-layout-wrap u-layout-wrap-1\">\n          <div class=\"u-layout\">\n            <div class=\"u-layout-row\">\n              <div class=\"u-container-style u-layout-cell u-size-30 u-layout-cell-1\">\n                <div class=\"u-container-layout u-valign-middle u-container-layout-1\">\n                  <h2 class=\"u-text u-text-default u-text-1\" data-animation-name=\"customAnimationIn\" data-animation-duration=\"1000\" data-animation-delay=\"0\" data-animation-out=\"0\"> Special offer for SparTand patients<\/h2>\n                  <p class=\"u-align-left u-text u-text-default u-text-2\" data-animation-name=\"customAnimationIn\" data-animation-duration=\"1000\" data-animation-delay=\"1000\" data-animation-out=\"0\"> We cooperate with a dental clinic <span style=\"font-weight: 700;\">SparTand<\/span>, which has been accepting patients from abroad in Gda\u0144sk for years. For its clients, SparTand has prepared <span style=\"font-weight: 700;\">an exclusive discount code for stays in our apartments<\/span>, located in the very heart of the city, close to the clinic and the Old Town.&nbsp;<br>\n                    <br>If you are a SparTand patient, please contact the clinic directly to receive <span style=\"font-weight: 700;\">discount code<\/span> as well as the details of the offer. It\u2019s a convenient solution that allows you to combine treatment with a comfortable stay in an excellent location.\n                  <\/p>\n                  <a href=\"https:\/\/spartand.dk\" class=\"u-align-center u-border-none u-btn u-button-style u-color-scheme-summer-time u-hover-feature u-hover-palette-1-dark-2 u-text-hover-white u-text-white u-palette-1-base u-btn-1\" target=\"_blank\">spartand.dk<\/a>\n                <\/div>\n              <\/div>\n              <div class=\"u-container-style u-layout-cell u-size-30 u-layout-cell-2\">\n                <div class=\"u-container-layout u-container-layout-2\">\n                  <img class=\"u-expanded-width u-image u-image-round u-radius lazyload u-image-1\" alt=\"\" data-image-width=\"1024\" data-image-height=\"803\" data-src=\"https:\/\/www.staywin.pl\/wp-content\/uploads\/2026\/01\/spartand.jpg\" loading=\"lazy\">\n                <\/div>\n              <\/div>\n            <\/div>\n          <\/div>\n        <\/div>\n      <\/div>\n      \n    <\/section>\n    <section class=\"u-align-center u-clearfix u-container-align-center u-section-12\" id=\"sec-e312\">\n      <div class=\"u-clearfix u-sheet u-valign-middle u-sheet-1\">\n        <h2 class=\"u-text u-text-default u-text-1\">Most frequently asked questions by our guests: <\/h2>\n        <div class=\"u-accordion u-spacing-2 u-accordion-1\">\n          <div class=\"u-accordion-item\">\n            <a class=\"active u-accordion-link u-active-grey-5 u-btn-round u-button-style u-radius u-white u-accordion-link-1\" id=\"link-8db6\" aria-controls=\"8db6\" aria-selected=\"true\">\n              <span class=\"u-accordion-link-text\"> Can I cancel my reservation free of charge?<\/span>\n              <span class=\"u-accordion-link-icon u-icon u-icon-circle u-palette-1-base u-icon-1\"><svg class=\"u-svg-link\" preserveaspectratio=\"xMidYMin slice\" viewbox=\"0 0 16 16\" style=\"\"><use xlink:href=\"#svg-820c\"><\/use><\/svg><svg class=\"u-svg-content\" viewbox=\"0 0 16 16\" x=\"0px\" y=\"0px\" id=\"svg-820c\"><path d=\"M8,10.7L1.6,5.3c-0.4-0.4-1-0.4-1.3,0c-0.4,0.4-0.4,0.9,0,1.3l7.2,6.1c0.1,0.1,0.4,0.2,0.6,0.2s0.4-0.1,0.6-0.2l7.1-6\tc0.4-0.4,0.4-0.9,0-1.3c-0.4-0.4-1-0.4-1.3,0L8,10.7z\"><\/path><\/svg><\/span>\n            <\/a>\n            <div class=\"u-accordion-active u-accordion-pane u-align-left u-container-align-left u-container-style u-shape-rectangle u-accordion-pane-1\" id=\"8db6\" aria-labelledby=\"link-8db6\" aria-expanded=\"true\">\n              <div class=\"u-container-layout u-container-layout-1\">\n                <p class=\"u-text u-text-default u-text-2\"> It depends on the selected offer; with each reservation you will find information about the cancellation policy. We offer both flexible and non-refundable options.<\/p>\n              <\/div>\n            <\/div>\n          <\/div>\n          <div class=\"u-accordion-item\">\n            <a class=\"u-accordion-link u-active-grey-5 u-btn-round u-button-style u-radius u-white u-accordion-link-2\" id=\"link-a76d\" aria-controls=\"a76d\" aria-selected=\"false\">\n              <span class=\"u-accordion-link-text\"> What time is check-in and check-out?<\/span>\n              <span class=\"u-accordion-link-icon u-icon u-icon-circle u-palette-1-base u-icon-2\"><svg class=\"u-svg-link\" preserveaspectratio=\"xMidYMin slice\" viewbox=\"0 0 16 16\" style=\"\"><use xlink:href=\"#svg-c8f6\"><\/use><\/svg><svg class=\"u-svg-content\" viewbox=\"0 0 16 16\" x=\"0px\" y=\"0px\" id=\"svg-c8f6\"><path d=\"M8,10.7L1.6,5.3c-0.4-0.4-1-0.4-1.3,0c-0.4,0.4-0.4,0.9,0,1.3l7.2,6.1c0.1,0.1,0.4,0.2,0.6,0.2s0.4-0.1,0.6-0.2l7.1-6\tc0.4-0.4,0.4-0.9,0-1.3c-0.4-0.4-1-0.4-1.3,0L8,10.7z\"><\/path><\/svg><\/span>\n            <\/a>\n            <div class=\"u-accordion-pane u-align-left u-container-align-left u-container-style u-shape-rectangle u-accordion-pane-2\" id=\"a76d\" aria-labelledby=\"link-a76d\" aria-expanded=\"true\">\n              <div class=\"u-container-layout u-container-layout-2\">\n                <p class=\"u-text u-text-default u-text-3\"> Check-in is normally available from 3:00 PM, and check-out until 10:30 AM. Subject to availability, we also offer early check-in or late check-out.<\/p>\n              <\/div>\n            <\/div>\n          <\/div>\n          <div class=\"u-accordion-item\">\n            <a class=\"u-accordion-link u-active-grey-5 u-btn-round u-button-style u-radius u-white u-accordion-link-3\" id=\"link-a85a\" aria-controls=\"a85a\" aria-selected=\"false\">\n              <span class=\"u-accordion-link-text\"> Are the apartments equipped with bed linen, towels, and basic cleaning supplies?<\/span>\n              <span class=\"u-accordion-link-icon u-icon u-icon-circle u-palette-1-base u-icon-3\"><svg class=\"u-svg-link\" preserveaspectratio=\"xMidYMin slice\" viewbox=\"0 0 16 16\" style=\"\"><use xlink:href=\"#svg-dc9d\"><\/use><\/svg><svg class=\"u-svg-content\" viewbox=\"0 0 16 16\" x=\"0px\" y=\"0px\" id=\"svg-dc9d\"><path d=\"M8,10.7L1.6,5.3c-0.4-0.4-1-0.4-1.3,0c-0.4,0.4-0.4,0.9,0,1.3l7.2,6.1c0.1,0.1,0.4,0.2,0.6,0.2s0.4-0.1,0.6-0.2l7.1-6\tc0.4-0.4,0.4-0.9,0-1.3c-0.4-0.4-1-0.4-1.3,0L8,10.7z\"><\/path><\/svg><\/span>\n            <\/a>\n            <div class=\"u-accordion-pane u-align-left u-container-align-left u-container-style u-shape-rectangle u-accordion-pane-3\" id=\"a85a\" aria-labelledby=\"link-a85a\" aria-expanded=\"true\">\n              <div class=\"u-container-layout u-container-layout-3\">\n                <p class=\"u-text u-text-default u-text-4\"> Yes, each apartment is fully prepared for your stay. You will find fresh bed linen, towels, hotel toiletries, and basic kitchen amenities.<\/p>\n              <\/div>\n            <\/div>\n          <\/div>\n          <div class=\"u-accordion-item\">\n            <a class=\"u-accordion-link u-active-grey-5 u-btn-round u-button-style u-radius u-white u-accordion-link-4\" id=\"link-17af\" aria-controls=\"17af\" aria-selected=\"false\">\n              <span class=\"u-accordion-link-text\"> How can I contact you in case of a problem during my stay?<\/span>\n              <span class=\"u-accordion-link-icon u-icon u-icon-circle u-palette-1-base u-icon-4\"><svg class=\"u-svg-link\" preserveaspectratio=\"xMidYMin slice\" viewbox=\"0 0 16 16\" style=\"\"><use xlink:href=\"#svg-8f1f\"><\/use><\/svg><svg class=\"u-svg-content\" viewbox=\"0 0 16 16\" x=\"0px\" y=\"0px\" id=\"svg-8f1f\"><path d=\"M8,10.7L1.6,5.3c-0.4-0.4-1-0.4-1.3,0c-0.4,0.4-0.4,0.9,0,1.3l7.2,6.1c0.1,0.1,0.4,0.2,0.6,0.2s0.4-0.1,0.6-0.2l7.1-6\tc0.4-0.4,0.4-0.9,0-1.3c-0.4-0.4-1-0.4-1.3,0L8,10.7z\"><\/path><\/svg><\/span>\n            <\/a>\n            <div class=\"u-accordion-pane u-align-left u-container-align-left u-container-style u-shape-rectangle u-accordion-pane-4\" id=\"17af\" aria-labelledby=\"link-17af\" aria-expanded=\"true\">\n              <div class=\"u-container-layout u-container-layout-4\">\n                <p class=\"u-text u-text-default u-text-5\"> We are available 24\/7 \u2014 you have our contact number and online support throughout your stay. We respond quickly to ensure your stay is hassle-free.<\/p>\n              <\/div>\n            <\/div>\n          <\/div>\n        <\/div>\n      <\/div>\n    <\/section>","protected":false},"excerpt":{"rendered":"<p>Apartamenty z my\u015bl\u0105 o Tobiew samym sercu Gda\u0144ska Znajd\u017a rezerwacj\u0119 O nas Nowoczesne,&nbsp;komfortowe i w pe\u0142ni wyposa\u017cone apartamenty w atrakcyjnych cenach! Apartamenty Staywin zlokalizowane s\u0105 blisko Starego Miasta, w samym centrum \u017cycia kulturalnego, w pobli\u017cu galerii sztuki, teatr\u00f3w, kin, muze\u00f3w oraz innych atrakcji zapewniaj\u0105cych udany pobyt w Gda\u0144sku. Nie ma pi\u0119kniejszego miasta na polskim wybrze\u017cu &hellip; <a href=\"https:\/\/www.staywin.pl\/en\/\" class=\"more-link\">Continue reading<span class=\"screen-reader-text\"> &#8222;Strona g\u0142\u00f3wna&#8221;<\/span><\/a><\/p>","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":33,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-2933","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Strona g\u0142\u00f3wna - Staywin - Apartamenty w Gda\u0144sku<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.staywin.pl\/en\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Strona g\u0142\u00f3wna - Staywin - Apartamenty w Gda\u0144sku\" \/>\n<meta property=\"og:description\" content=\"Apartamenty z my\u015bl\u0105 o Tobiew samym sercu Gda\u0144ska Znajd\u017a rezerwacj\u0119 O nas Nowoczesne,&nbsp;komfortowe i w pe\u0142ni wyposa\u017cone apartamenty w atrakcyjnych cenach! Apartamenty Staywin zlokalizowane s\u0105 blisko Starego Miasta, w samym centrum \u017cycia kulturalnego, w pobli\u017cu galerii sztuki, teatr\u00f3w, kin, muze\u00f3w oraz innych atrakcji zapewniaj\u0105cych udany pobyt w Gda\u0144sku. Nie ma pi\u0119kniejszego miasta na polskim wybrze\u017cu &hellip; Continue reading &quot;Strona g\u0142\u00f3wna&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.staywin.pl\/en\/\" \/>\n<meta property=\"og:site_name\" content=\"Staywin - Apartamenty w Gda\u0144sku\" \/>\n<meta property=\"article:modified_time\" content=\"2026-06-03T11:24:01+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.staywin.pl\/\",\"url\":\"https:\/\/www.staywin.pl\/\",\"name\":\"Strona g\u0142\u00f3wna - Staywin - Apartamenty w Gda\u0144sku\",\"isPartOf\":{\"@id\":\"https:\/\/www.staywin.pl\/#website\"},\"datePublished\":\"2025-08-30T11:03:02+00:00\",\"dateModified\":\"2026-06-03T11:24:01+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.staywin.pl\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.staywin.pl\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.staywin.pl\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Strona g\u0142\u00f3wna\",\"item\":\"https:\/\/www.staywin.pl\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Strona g\u0142\u00f3wna\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.staywin.pl\/#website\",\"url\":\"https:\/\/www.staywin.pl\/\",\"name\":\"Staywin - Apartamenty w Gda\u0144sku\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.staywin.pl\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Strona g\u0142\u00f3wna - Staywin - Apartamenty w Gda\u0144sku","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.staywin.pl\/en\/","og_locale":"en_GB","og_type":"article","og_title":"Strona g\u0142\u00f3wna - Staywin - Apartamenty w Gda\u0144sku","og_description":"Apartamenty z my\u015bl\u0105 o Tobiew samym sercu Gda\u0144ska Znajd\u017a rezerwacj\u0119 O nas Nowoczesne,&nbsp;komfortowe i w pe\u0142ni wyposa\u017cone apartamenty w atrakcyjnych cenach! Apartamenty Staywin zlokalizowane s\u0105 blisko Starego Miasta, w samym centrum \u017cycia kulturalnego, w pobli\u017cu galerii sztuki, teatr\u00f3w, kin, muze\u00f3w oraz innych atrakcji zapewniaj\u0105cych udany pobyt w Gda\u0144sku. Nie ma pi\u0119kniejszego miasta na polskim wybrze\u017cu &hellip; Continue reading \"Strona g\u0142\u00f3wna\"","og_url":"https:\/\/www.staywin.pl\/en\/","og_site_name":"Staywin - Apartamenty w Gda\u0144sku","article_modified_time":"2026-06-03T11:24:01+00:00","twitter_card":"summary_large_image","twitter_misc":{"Estimated reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.staywin.pl\/","url":"https:\/\/www.staywin.pl\/","name":"Strona g\u0142\u00f3wna - Staywin - Apartamenty w Gda\u0144sku","isPartOf":{"@id":"https:\/\/www.staywin.pl\/#website"},"datePublished":"2025-08-30T11:03:02+00:00","dateModified":"2026-06-03T11:24:01+00:00","breadcrumb":{"@id":"https:\/\/www.staywin.pl\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.staywin.pl\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.staywin.pl\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Strona g\u0142\u00f3wna","item":"https:\/\/www.staywin.pl\/"},{"@type":"ListItem","position":2,"name":"Strona g\u0142\u00f3wna"}]},{"@type":"WebSite","@id":"https:\/\/www.staywin.pl\/#website","url":"https:\/\/www.staywin.pl\/","name":"Staywin - Apartamenty w Gda\u0144sku","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.staywin.pl\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"}]}},"_links":{"self":[{"href":"https:\/\/www.staywin.pl\/en\/wp-json\/wp\/v2\/pages\/2933","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.staywin.pl\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.staywin.pl\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.staywin.pl\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.staywin.pl\/en\/wp-json\/wp\/v2\/comments?post=2933"}],"version-history":[{"count":10,"href":"https:\/\/www.staywin.pl\/en\/wp-json\/wp\/v2\/pages\/2933\/revisions"}],"predecessor-version":[{"id":3713,"href":"https:\/\/www.staywin.pl\/en\/wp-json\/wp\/v2\/pages\/2933\/revisions\/3713"}],"wp:attachment":[{"href":"https:\/\/www.staywin.pl\/en\/wp-json\/wp\/v2\/media?parent=2933"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}