        <script>
            /*document.addEventListener('DOMContentLoaded', function () {
                const bookingWrapper = document.querySelector('.wpte-booking-area-wrapper.wpte-bf-outer');
                const allowedMonths = null;

                if (bookingWrapper && bookingWrapper.parentNode) {
                    // Create parent wrapper
                    const tripWrapper = document.createElement('div');
                    tripWrapper.className = 'custom-trip-wrapper';

                    bookingWrapper.parentNode.insertBefore(tripWrapper, bookingWrapper);
                    tripWrapper.appendChild(bookingWrapper);

                    // Create month buttons
                    const months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'];
                    const monthsDiv = document.createElement('div');
                    monthsDiv.className = 'custom-month-buttons';

                    const title = document.createElement('span');
                    title.textContent = 'Best Time to Visit.';
                    title.className = 'best-trip-title'; // optional CSS class
                    tripWrapper.appendChild(title);

                    months.forEach(function (month) {
                        const btn = document.createElement('button');
                        btn.textContent = month;
                        btn.className = 'month-btn';

                        // Disable unavailable months
                        if (!allowedMonths.includes(month)) {
                            btn.disabled = true;
                            btn.classList.add('disabled-month');
                        }

                        // Click event only for active months
                        btn.addEventListener('click', function () {
                            if (btn.disabled) return;

                            const selectedMonth = month;
                            const postID = ;
                            const formData = new FormData();
                            formData.append('action', 'check_trip_month_availability');
                            formData.append('selected_month', selectedMonth);
                            formData.append('post_id', postID);

                            fetch('https://dev.dvio.global/websites/joy-n-crew/wp-admin/admin-ajax.php', {
                                method: 'POST',
                                body: formData
                            })
                            .then(response => response.json())
                            .then(data => {
                                const detailsBox = document.querySelector('.trip-details-box');
                                if (data.success) {
                                    const d = data.data;
                                    let html = `<h3>${d.title}</h3>`;
                                    html += `<div class="trip-contact-icons" style="margin-top: 15px; display: flex; gap: 15px; align-items: center;">
                                                <a href="https://wa.me/918624997500" target="_blank" title="WhatsApp" style="font-size: 22px; color: #25D366;">
                                                    <i class="fab fa-whatsapp"></i>
                                                </a>
                                                <a href="tel:+02029521444" title="Call Us" style="font-size: 22px; color: #0073aa;">
                                                    <i class="fas fa-phone"></i>
                                                </a>
                                                <a href="mailto:hello@joy-n-crew.com" title="Email Us" style="font-size: 22px; color: #d93025;">
                                                    <i class="fas fa-envelope"></i>
                                                </a>
                                            </div>`;

                                    html += d.start_from ? `<div class="start-from"><strong>Start From:</strong> ${d.start_from}</div>` : '';

                                    if (d.start_date && d.end_date) {
                                        function parseDate(str) {
                                            const parts = str.split('/');
                                            return new Date(`${parts[2]}-${parts[1]}-${parts[0]}`);
                                        }

                                        const startDate = parseDate(d.start_date);
                                        const endDate = parseDate(d.end_date);

                                        if (!isNaN(startDate) && !isNaN(endDate)) {
                                            const timeDiff = endDate - startDate;
                                            const diffDays = Math.ceil(timeDiff / (1000 * 60 * 60 * 24)) + 1;
                                            html += `<div class="duration">${diffDays} Days</div>`;
                                        } else {
                                            html += `<p style="color:red;"><strong>Error:</strong> Invalid date format</p>`;
                                        }
                                    }

                                    html += d.month_desc ? `<div class="month-desc"><strong>Month Description:</strong> ${d.month_desc}</div>` : '';
                                    html += d.start_date ? `<div class="start-date"><strong>Start Date:</strong> ${d.start_date}</div>` : '';
                                    html += d.end_date ? `<div class="end-date"><strong>End Date:</strong> ${d.end_date}</div>` : '';
                                    html += d.price ? `<div><strong>Price:</strong> ₹${Number(d.price).toLocaleString()}</div>` : '';

                                    html += `<div class="enquire-button-wrapper" style="margin-top: 20px;">
                                                <button class="enquire-now-btn" style="padding: 10px 20px; background-color: #0073aa; color: white; border: none; cursor: pointer;">
                                                    Enquire Now
                                                </button>
                                            </div>`;
                                    
                                    detailsBox.innerHTML = html;

                                    const enquireBtn = detailsBox.querySelector('.enquire-now-btn');
                                    enquireBtn.addEventListener('click', function () {
                                        const form = document.getElementById('wte_enquiry_contact_form');
                                        if (form) form.scrollIntoView({ behavior: 'smooth' });
                                    });
                                } else {
                                    document.querySelector('.trip-details-box').innerHTML = `<p style="color:red;">${data.data?.message || 'Something went wrong.'}</p>`;
                                }
                            });
                        });

                        monthsDiv.appendChild(btn);
                    });

                    const detailsBox = document.createElement('div');
                    detailsBox.className = 'trip-details-box';

                    tripWrapper.appendChild(monthsDiv);
                    tripWrapper.appendChild(detailsBox);
                }
            });*/
        </script>

        <style>
            /*.custom-trip-wrapper {
                border: 1px solid #ddd;
                padding: 20px;
                margin-top: 30px;
                background-color: #fff;
                border-radius: 8px;
            }
            .best-trip-title{
                border-top: 1px solid #DDDDDD;
                padding-top: 2rem;
                font-size: 1.3rem;
                font-weight: 400;
                display: block;
            }
            .custom-month-buttons {
                display: flex;
                flex-wrap: wrap;
                gap: 10px;
            }
            .month-btn {
                padding: 8px 12px;
                border: 1px solid #ccc;
                background-color: #f5f5f5;
                cursor: pointer;
                border-radius: 4px;
                transition: background 0.3s;
            }
            .month-btn:hover {
                background-color: #e0e0e0;
            }
            .month-btn.disabled-month {
                background-color: #eee;
                color: #aaa;
                cursor: not-allowed;
                opacity: 0.6;
            }
            .trip-details-box {
                margin-top: 20px;
                padding: 15px;
                background-color: #f9f9f9;
                border: 1px solid #ddd;
                border-radius: 6px;
            }
            .trip-details-box h3 {
                margin-top: 0;
                font-size: 20px;
            }*/
        </style>
        {"id":21231,"date":"2025-09-29T10:57:05","date_gmt":"2025-09-29T10:57:05","guid":{"rendered":"https:\/\/dev.dvio.global\/websites\/joy-n-crew\/?post_type=trip&#038;p=21231"},"modified":"2026-05-15T18:02:20","modified_gmt":"2026-05-15T18:02:20","slug":"cherry-blossom-b01-ex-bangalore","status":"publish","type":"trip","link":"https:\/\/dev.dvio.global\/websites\/joy-n-crew\/trip\/cherry-blossom-b01-ex-bangalore\/","title":{"rendered":"Cherry Blossom B01 Ex. Bangalore"},"content":{"rendered":"","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":20877,"comment_status":"open","ping_status":"closed","template":"","destination":[356,359,47,357,358,241,48],"activities":[],"trip_types":[],"difficulty":[],"trip_tag":[],"toursfilter":[64],"triptypesexternalsingle":[],"class_list":["post-21231","trip","type-trip","status-publish","has-post-thumbnail","hentry","destination-hakone","destination-hiroshima","destination-japan","destination-kyoto","destination-nara","destination-osaka-japan","destination-tokyo","toursfilter-international-tours"],"packages_ids":[21232],"trip_extras":[],"cut_off_time":{"enabled":false,"duration":0,"duration_unit":"days"},"booked-seats":[],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Cherry Blossom B01 Ex. Bangalore - Joy N Crew<\/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:\/\/dev.dvio.global\/websites\/joy-n-crew\/trip\/cherry-blossom-b01-ex-bangalore\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Cherry Blossom B01 Ex. Bangalore - Joy N Crew\" \/>\n<meta property=\"og:url\" content=\"https:\/\/dev.dvio.global\/websites\/joy-n-crew\/trip\/cherry-blossom-b01-ex-bangalore\/\" \/>\n<meta property=\"og:site_name\" content=\"Joy N Crew\" \/>\n<meta property=\"article:modified_time\" content=\"2026-05-15T18:02:20+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/dev.dvio.global\/websites\/joy-n-crew\/wp-content\/uploads\/2025\/09\/Cherry-Blossoms-in-Japan-A-Complete-Guide-to-the-Iconic-Sakura-Season-Tokyo-1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1536\" \/>\n\t<meta property=\"og:image:height\" content=\"702\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"8 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/dev.dvio.global\\\/websites\\\/joy-n-crew\\\/trip\\\/cherry-blossom-b01-ex-bangalore\\\/\",\"url\":\"https:\\\/\\\/dev.dvio.global\\\/websites\\\/joy-n-crew\\\/trip\\\/cherry-blossom-b01-ex-bangalore\\\/\",\"name\":\"Cherry Blossom B01 Ex. Bangalore - Joy N Crew\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/dev.dvio.global\\\/websites\\\/joy-n-crew\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/dev.dvio.global\\\/websites\\\/joy-n-crew\\\/trip\\\/cherry-blossom-b01-ex-bangalore\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/dev.dvio.global\\\/websites\\\/joy-n-crew\\\/trip\\\/cherry-blossom-b01-ex-bangalore\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/dev.dvio.global\\\/websites\\\/joy-n-crew\\\/wp-content\\\/uploads\\\/2025\\\/09\\\/Cherry-Blossoms-in-Japan-A-Complete-Guide-to-the-Iconic-Sakura-Season-Tokyo-1.png\",\"datePublished\":\"2025-09-29T10:57:05+00:00\",\"dateModified\":\"2026-05-15T18:02:20+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/dev.dvio.global\\\/websites\\\/joy-n-crew\\\/trip\\\/cherry-blossom-b01-ex-bangalore\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/dev.dvio.global\\\/websites\\\/joy-n-crew\\\/trip\\\/cherry-blossom-b01-ex-bangalore\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/dev.dvio.global\\\/websites\\\/joy-n-crew\\\/trip\\\/cherry-blossom-b01-ex-bangalore\\\/#primaryimage\",\"url\":\"https:\\\/\\\/dev.dvio.global\\\/websites\\\/joy-n-crew\\\/wp-content\\\/uploads\\\/2025\\\/09\\\/Cherry-Blossoms-in-Japan-A-Complete-Guide-to-the-Iconic-Sakura-Season-Tokyo-1.png\",\"contentUrl\":\"https:\\\/\\\/dev.dvio.global\\\/websites\\\/joy-n-crew\\\/wp-content\\\/uploads\\\/2025\\\/09\\\/Cherry-Blossoms-in-Japan-A-Complete-Guide-to-the-Iconic-Sakura-Season-Tokyo-1.png\",\"width\":1536,\"height\":702},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/dev.dvio.global\\\/websites\\\/joy-n-crew\\\/trip\\\/cherry-blossom-b01-ex-bangalore\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/dev.dvio.global\\\/websites\\\/joy-n-crew\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Trips\",\"item\":\"https:\\\/\\\/dev.dvio.global\\\/websites\\\/joy-n-crew\\\/trip\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Cherry Blossom B01 Ex. Bangalore\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/dev.dvio.global\\\/websites\\\/joy-n-crew\\\/#website\",\"url\":\"https:\\\/\\\/dev.dvio.global\\\/websites\\\/joy-n-crew\\\/\",\"name\":\"Joy N Crew\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/dev.dvio.global\\\/websites\\\/joy-n-crew\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/dev.dvio.global\\\/websites\\\/joy-n-crew\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/dev.dvio.global\\\/websites\\\/joy-n-crew\\\/#organization\",\"name\":\"Joy N Crew\",\"url\":\"https:\\\/\\\/dev.dvio.global\\\/websites\\\/joy-n-crew\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/dev.dvio.global\\\/websites\\\/joy-n-crew\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/dev.dvio.global\\\/websites\\\/joy-n-crew\\\/wp-content\\\/uploads\\\/2025\\\/05\\\/cropped-JnC-Logo_A.png\",\"contentUrl\":\"https:\\\/\\\/dev.dvio.global\\\/websites\\\/joy-n-crew\\\/wp-content\\\/uploads\\\/2025\\\/05\\\/cropped-JnC-Logo_A.png\",\"width\":1337,\"height\":446,\"caption\":\"Joy N Crew\"},\"image\":{\"@id\":\"https:\\\/\\\/dev.dvio.global\\\/websites\\\/joy-n-crew\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Cherry Blossom B01 Ex. Bangalore - Joy N Crew","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:\/\/dev.dvio.global\/websites\/joy-n-crew\/trip\/cherry-blossom-b01-ex-bangalore\/","og_locale":"en_US","og_type":"article","og_title":"Cherry Blossom B01 Ex. Bangalore - Joy N Crew","og_url":"https:\/\/dev.dvio.global\/websites\/joy-n-crew\/trip\/cherry-blossom-b01-ex-bangalore\/","og_site_name":"Joy N Crew","article_modified_time":"2026-05-15T18:02:20+00:00","og_image":[{"width":1536,"height":702,"url":"https:\/\/dev.dvio.global\/websites\/joy-n-crew\/wp-content\/uploads\/2025\/09\/Cherry-Blossoms-in-Japan-A-Complete-Guide-to-the-Iconic-Sakura-Season-Tokyo-1.png","type":"image\/png"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/dev.dvio.global\/websites\/joy-n-crew\/trip\/cherry-blossom-b01-ex-bangalore\/","url":"https:\/\/dev.dvio.global\/websites\/joy-n-crew\/trip\/cherry-blossom-b01-ex-bangalore\/","name":"Cherry Blossom B01 Ex. Bangalore - Joy N Crew","isPartOf":{"@id":"https:\/\/dev.dvio.global\/websites\/joy-n-crew\/#website"},"primaryImageOfPage":{"@id":"https:\/\/dev.dvio.global\/websites\/joy-n-crew\/trip\/cherry-blossom-b01-ex-bangalore\/#primaryimage"},"image":{"@id":"https:\/\/dev.dvio.global\/websites\/joy-n-crew\/trip\/cherry-blossom-b01-ex-bangalore\/#primaryimage"},"thumbnailUrl":"https:\/\/dev.dvio.global\/websites\/joy-n-crew\/wp-content\/uploads\/2025\/09\/Cherry-Blossoms-in-Japan-A-Complete-Guide-to-the-Iconic-Sakura-Season-Tokyo-1.png","datePublished":"2025-09-29T10:57:05+00:00","dateModified":"2026-05-15T18:02:20+00:00","breadcrumb":{"@id":"https:\/\/dev.dvio.global\/websites\/joy-n-crew\/trip\/cherry-blossom-b01-ex-bangalore\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/dev.dvio.global\/websites\/joy-n-crew\/trip\/cherry-blossom-b01-ex-bangalore\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dev.dvio.global\/websites\/joy-n-crew\/trip\/cherry-blossom-b01-ex-bangalore\/#primaryimage","url":"https:\/\/dev.dvio.global\/websites\/joy-n-crew\/wp-content\/uploads\/2025\/09\/Cherry-Blossoms-in-Japan-A-Complete-Guide-to-the-Iconic-Sakura-Season-Tokyo-1.png","contentUrl":"https:\/\/dev.dvio.global\/websites\/joy-n-crew\/wp-content\/uploads\/2025\/09\/Cherry-Blossoms-in-Japan-A-Complete-Guide-to-the-Iconic-Sakura-Season-Tokyo-1.png","width":1536,"height":702},{"@type":"BreadcrumbList","@id":"https:\/\/dev.dvio.global\/websites\/joy-n-crew\/trip\/cherry-blossom-b01-ex-bangalore\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/dev.dvio.global\/websites\/joy-n-crew\/"},{"@type":"ListItem","position":2,"name":"Trips","item":"https:\/\/dev.dvio.global\/websites\/joy-n-crew\/trip\/"},{"@type":"ListItem","position":3,"name":"Cherry Blossom B01 Ex. Bangalore"}]},{"@type":"WebSite","@id":"https:\/\/dev.dvio.global\/websites\/joy-n-crew\/#website","url":"https:\/\/dev.dvio.global\/websites\/joy-n-crew\/","name":"Joy N Crew","description":"","publisher":{"@id":"https:\/\/dev.dvio.global\/websites\/joy-n-crew\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/dev.dvio.global\/websites\/joy-n-crew\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/dev.dvio.global\/websites\/joy-n-crew\/#organization","name":"Joy N Crew","url":"https:\/\/dev.dvio.global\/websites\/joy-n-crew\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dev.dvio.global\/websites\/joy-n-crew\/#\/schema\/logo\/image\/","url":"https:\/\/dev.dvio.global\/websites\/joy-n-crew\/wp-content\/uploads\/2025\/05\/cropped-JnC-Logo_A.png","contentUrl":"https:\/\/dev.dvio.global\/websites\/joy-n-crew\/wp-content\/uploads\/2025\/05\/cropped-JnC-Logo_A.png","width":1337,"height":446,"caption":"Joy N Crew"},"image":{"@id":"https:\/\/dev.dvio.global\/websites\/joy-n-crew\/#\/schema\/logo\/image\/"}}]}},"code":"WTE-17614","price":335000,"has_sale":false,"sale_price":0,"discount_percent":0,"currency":{"code":"INR","symbol":"&#8377;"},"duration":{"days":9,"nights":8,"duration_unit":"days","duration_type":"both"},"discount_value":0,"discount_label":"0% Off","primary_category":28,"available_times":{"type":"default","items":["2021-1-01","2021-2-01","2021-3-01","2021-4-01","2021-5-01","2021-6-01","2021-7-01","2021-8-01","2021-9-01","2021-10-01","2021-11-01","2021-12-01"]},"min_pax":"","max_pax":"","description":"<!-- wp:paragraph -->\n<p><strong>Departure Date : 27th March 2026<\/strong><\/p>\n<!-- \/wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Highlights:<\/p>\n<!-- \/wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li>Odaiba Seaside Park<\/li>\n<!-- \/wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Sumida River Cruise<\/li>\n<!-- \/wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Asakusa Senso-ji Temple<\/li>\n<!-- \/wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Team Labs Planet<\/li>\n<!-- \/wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Skytree<\/li>\n<!-- \/wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Shibuya Crossing<\/li>\n<!-- \/wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Akihabara<\/li>\n<!-- \/wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Owakudani Valley<\/li>\n<!-- \/wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Lake Ashi Cruise<\/li>\n<!-- \/wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Mount Fuji 5th Station<\/li>\n<!-- \/wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Matsumoto Castle<\/li>\n<!-- \/wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Tateyama Kurobe Alpine Route<\/li>\n<!-- \/wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Kurobe Dam<\/li>\n<!-- \/wp:list-item -->\n\n<!-- wp:list-item -->\n<li>SC Maglev &amp; Railway Park<\/li>\n<!-- \/wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Kinkaku-ji Golden Pavilion<\/li>\n<!-- \/wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Arashiyama Bamboo Grove<\/li>\n<!-- \/wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Fushimi Inari Shrine<\/li>\n<!-- \/wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Osaka Castle<\/li>\n<!-- \/wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Hiroshima Peace Memorial Park &amp; Museum<\/li>\n<!-- \/wp:list-item -->\n\n<!-- wp:list-item -->\n<li>A-Bomb Dome<\/li>\n<!-- \/wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Itsukushima Shrine<\/li>\n<!-- \/wp:list-item --><\/ul>\n<!-- \/wp:list -->","cost_includes":"Return flights in Economy class\nJapan Tourist visa fees\nTravel Insurance (upto 59 yrs)\nAccommodation in 3\/4 star hotels\nMeals: 08 Breakfast, 08 Lunches, 08 Dinners\nAll sightseeing and transfers as mentioned in the above given itinerary in a Private Coach\nBullet train (Mishima - Hiroshima) Standard Ticket\n2 water bottles per person per day (500 ml)\nServices of Indian Tour Manager","cost_excludes":"5% GST & 5% TCS\nInsurance difference as applicable above the age of 59 years\nAny expenses of personal nature for e.g. Tips, Telephone calls, laundry, porterage, mineral water or any mother\nservices not mentioned above\nExcess baggage charge Meals other than mentioned in the program\nCost of extension of the validity of your air ticket\nAny increase in the airfare, fuel surcharge and\/or taxes charged by the\nairlines on your air ticket\nPorterage at airports & hotels\nAny Increase in the rate of exchange leading to an increase in all land arrangements which may come into effect prior to departure\nKimono-wearing experience INR 3000\/-","itineraries":[{"title":"ARRIVAL IN TOKYO","content":"<!-- wp:image {\"id\":22464,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https:\/\/dev.dvio.global\/websites\/joy-n-crew\/wp-content\/uploads\/2025\/09\/DAY-1_-Arrival-in-Tokyo-_-Ancient-Temples-Digital-Dreams_-1-1024x468.webp\" alt=\"ARRIVAL IN TOKYO\" class=\"wp-image-22464\"\/><\/figure>\n<!-- \/wp:image -->\n\n<!-- wp:paragraph -->\n<p>Arrive at Narita International Airport\u00a0<strong>JL 0754 at 14:00.<\/strong>\u00a0After completing immigration and customs, meet your representative and transfer to your hotel in Tokyo. After check-in, relax or step out to explore the surroundings on your own.<br><strong>Meals: Dinner Overnight in Tokyo<\/strong><\/p>\n<!-- \/wp:paragraph -->"},{"title":"HISTORICAL TOKYO & SKYTREE VIEWS","content":"<!-- wp:image {\"id\":22463,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https:\/\/dev.dvio.global\/websites\/joy-n-crew\/wp-content\/uploads\/2025\/09\/DAY-2_-Historical-Tokyo-Skytree-Views-1-1024x468.webp\" alt=\"HISTORICAL TOKYO &amp; SKYTREE VIEWS\" class=\"wp-image-22463\"\/><\/figure>\n<!-- \/wp:image -->\n\n<!-- wp:paragraph -->\n<p>After breakfast, visit\u00a0<strong>Senso-ji Temple<\/strong>\u00a0and shop for traditional souvenirs\u00a0<strong>at Nakamise Street.\u00a0<\/strong>Later, ascend\u00a0<strong>Tokyo Skytree<\/strong>\u00a0(350-meter observatory deck). In the afternoon, stroll through\u00a0<strong>Chidorigafuchi Park.<\/strong>\u00a0End the day in Akihabara, famous for its anime, electronics, and gaming culture.<br><strong>Overnight: Tokyo<\/strong><\/p>\n<!-- \/wp:paragraph -->"},{"title":" MODERN TOKYO & DIGITAL ART","content":"<!-- wp:image {\"id\":22462,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https:\/\/dev.dvio.global\/websites\/joy-n-crew\/wp-content\/uploads\/2025\/09\/DAY-3_-Modern-Tokyo-Digital-Art-1-1024x468.webp\" alt=\"MODERN TOKYO &amp; DIGITAL ART\" class=\"wp-image-22462\"\/><\/figure>\n<!-- \/wp:image -->\n\n<!-- wp:paragraph -->\n<p>Start your day with the iconic\u00a0<strong>Shibuya Crossing.<\/strong>\u00a0Next, immerse yourself in the cutting-edge interactive exhibits at\u00a0<strong>Team Lab Planet<\/strong>\u00a0in Toyosu. Visit the\u00a0<strong>Imperial Palace Outer Gardens,<\/strong>\u00a0then enjoy leisure time in vibrant neighbourhoods such as\u00a0<strong>Ginza or Shinjuku<\/strong>\u00a0for shopping and dining.<br><strong>Overnight in Tokyo<\/strong><\/p>\n<!-- \/wp:paragraph -->"},{"title":"MT. FUJI & HAKONE ADVENTURE","content":"<!-- wp:image {\"id\":22461,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https:\/\/dev.dvio.global\/websites\/joy-n-crew\/wp-content\/uploads\/2025\/09\/DAY-4_-Mt.-Fuji-Hakone-Adventure-1-1024x468.webp\" alt=\"MT. FUJI &amp; HAKONE ADVENTURE\" class=\"wp-image-22461\"\/><\/figure>\n<!-- \/wp:image -->\n\n<!-- wp:paragraph -->\n<p>Check out and begin a scenic day trip. Head to\u00a0<strong>Mt. Fuji's 5th Station<\/strong>\u00a0(weather permitting) for spectacular views. Continue to the charming village of\u00a0<strong>Oshino Hakkai.<\/strong>\u00a0Then explore the volcanic landscape of\u00a0<strong>Owakudani Valley,<\/strong>\u00a0known for its geothermal activity and black eggs. Enjoy a ride on the\u00a0<strong>Hakone Ropeway<\/strong>\u00a0(subject to operational) offering breathtaking views. Later, transfer to\u00a0<strong>Hakone<\/strong>\u00a0and check into your hotel.<br><strong>Overnight in Hakone<\/strong><\/p>\n<!-- \/wp:paragraph -->"},{"title":"HIROSHIMA - PEACE \u041cEMORIAL PARK","content":"<!-- wp:image {\"id\":22460,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https:\/\/dev.dvio.global\/websites\/joy-n-crew\/wp-content\/uploads\/2025\/09\/DAY-5_-Hiroshima-\u2013-Peace-Memorial-Park-1-1024x468.webp\" alt=\"HIROSHIMA - PEACE \u041cEMORIAL PARK\" class=\"wp-image-22460\"\/><\/figure>\n<!-- \/wp:image -->\n\n<!-- wp:paragraph -->\n<p>After breakfast, board the bullet train from Mishima to\u00a0<strong>Hiroshima,<\/strong>\u00a0experiencing Japan's world-class bullet train. On arrival, visit the poignant\u00a0<strong>Hiroshima Peace Memorial Park, Atomic Bomb Dome,<\/strong>\u00a0and\u00a0<strong>Peace Museum,<\/strong>\u00a0reflecting on the city's resilience.<br><strong>Overnight in Hiroshima<\/strong><\/p>\n<!-- \/wp:paragraph -->"},{"title":" MIYAJIMA ISLAND & AKASHI KAIK\u04aeO BRIDGE - ARRIVE OSAKA","content":"<!-- wp:image {\"id\":22459,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https:\/\/dev.dvio.global\/websites\/joy-n-crew\/wp-content\/uploads\/2025\/09\/DAY-6_-Miyajima-Island-Akashi-Kaikyo-Bridge-\u2013-Arrive-Osaka-1-1024x468.webp\" alt=\"\nMIYAJIMA ISLAND &amp; AKASHI KAIK\u04aeO BRIDGE - ARRIVE OSAKA\" class=\"wp-image-22459\"\/><\/figure>\n<!-- \/wp:image -->\n\n<!-- wp:paragraph -->\n<p>Take a ferry to the picturesque\u00a0<strong>Miyajima Island<\/strong>\u00a0to see the iconic\u00a0<strong>Itsukushima Shrine<\/strong>\u00a0and the famed floating torii gate. After lunch, travel by coach. Enjoy the view of famous\u00a0<strong>Akashi Kaiky\u014d Bridge,<\/strong>\u00a0the world's one of the longest suspension bridge. Continue onward to\u00a0<strong>Osaka<\/strong>\u00a0for check-in and rest.<br><strong>Overnight in Osaka<\/strong><\/p>\n<!-- \/wp:paragraph -->"},{"title":"KYOTO DAY TRIP - CULTURAL IMMERSION","content":"<!-- wp:image {\"id\":22458,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https:\/\/dev.dvio.global\/websites\/joy-n-crew\/wp-content\/uploads\/2025\/09\/DAY-7_-Kyoto-Day-Trip-\u2013-Cultural-Immersion-1-1024x468.webp\" alt=\"KYOTO DAY TRIP - CULTURAL IMMERSION\" class=\"wp-image-22458\"\/><\/figure>\n<!-- \/wp:image -->\n\n<!-- wp:paragraph -->\n<p>Take a day excursion to\u00a0<strong>Kyoto,<\/strong>\u00a0Japan's ancient capital. Visit the stunning\u00a0<strong>Arashiyama Bamboo Grove,<\/strong>\u00a0the golden\u00a0<strong>Kinkaku-ji (Golden Pavilion),<\/strong>\u00a0and explore the serene\u00a0<strong>Kyoto Botanical Garden.<\/strong>\u00a0Return to Osaka by evening.<br><strong>Overnight in Osak\u0430<\/strong><\/p>\n<!-- \/wp:paragraph -->"},{"title":" NARA & OSAKA HIGHLIGHTS - CULTURE & NIGHTLIFE","content":"<!-- wp:image {\"id\":22457,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https:\/\/dev.dvio.global\/websites\/joy-n-crew\/wp-content\/uploads\/2025\/09\/DAY-8_-Nara-Osaka-Highlights-\u2013-Culture-Nightlife-1-1024x468.webp\" alt=\"\nNARA &amp; OSAKA HIGHLIGHTS - CULTURE &amp; NIGHTLIFE\" class=\"wp-image-22457\"\/><\/figure>\n<!-- \/wp:image -->\n\n<!-- wp:paragraph -->\n<p>Travel to\u00a0<strong>Nara,<\/strong>\u00a0Japan's first capital, for a half-day experience. Visit the historic\u00a0<strong>Todaiji Temple,\u00a0<\/strong>home to a giant bronze Buddha, and interact with the friendly deer in\u00a0<strong>Nara Park.<\/strong>\u00a0Return to Osaka and visit the iconic\u00a0<strong>Umeda Sky Building<\/strong>\u00a0for panoramic views of Osaka city. Conclude your trip in vibrant\u00a0<strong>Shinasaibashi Dotonbori,<\/strong>\u00a0known for street food, riverfront lights, and shopping.<br><strong>Overnight in Osaka<\/strong><\/p>\n<!-- \/wp:paragraph -->"},{"title":"DEPARTURE","content":"<!-- wp:image {\"id\":22456,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https:\/\/dev.dvio.global\/websites\/joy-n-crew\/wp-content\/uploads\/2025\/09\/DAY-9_-Departure-1-1024x468.webp\" alt=\"DEPARTURE\" class=\"wp-image-22456\"\/><\/figure>\n<!-- \/wp:image -->\n\n<!-- wp:paragraph -->\n<p>After breakfast,, transfer to\u00a0<strong>Itami Airport (ITM) 14:35<\/strong>\u00a0fo your domestic flight to Narita, connecting to your international flight back to Bangalore.<br><strong>Meals: Breakfast, Lunch<\/strong><\/p>\n<!-- \/wp:paragraph -->"}],"faqs":[{"title":"What is the best time to Visit?","content":"<!-- wp:paragraph -->\n<p>The best time to visit Japan as a tourist is generally considered to be during the Spring and Autumn. Spring (March to May) for its iconic cherry blossoms (sakura) and the mesmerising Alpine route. Beautiful mild weather, and a vibrant atmosphere with pleasant mild temperatures that are ideal for sightseeing. Autumn (September to November) is ravashing with stunning autumn leaves (koyo) in vibrant reds, oranges, and golds, offering beautiful scenery across the country.<\/p>\n<!-- \/wp:paragraph -->"},{"title":"What type of clothes should I carry","content":"<!-- wp:paragraph -->\n<p>Light layers, long-sleeve shirts, t-shirts, light sweater or cardigan, light to medium jacket\/coat, raincoat\/umbrella. A versatile jacket (like a trench or light down), optional scarf\/gloves for late autumn.<\/p>\n<!-- \/wp:paragraph -->"},{"title":"Will I get Indian Meals and Indian Veg Meals?","content":"<!-- wp:paragraph -->\n<p>Yes, you absolutely can get Indian Meals and Indian Veg Meals in Japan, especially in major cities. It\u2019s always a good idea to check the menu or ask staff directly, especially when looking for purely vegetarian or vegan options, as sometimes Japanese curry (which is popular) is different from Indian curry and may contain meat stock.<\/p>\n<!-- \/wp:paragraph -->"},{"title":"How long does it take to process Visas?","content":"<!-- wp:paragraph -->\n<p>Japan Tourist Visa processing can take up to 2 weeks. It may be noted that during peak season Cherry Blossom season in Spring or Autumn due to tourist rush the processing time may vary and processing time may exceed a month. Japan has an e-visa system for Indians travellers but here as well one needs to submit application and passport at the Visa Application Centre. Grant of Visa is at the sole discretion of the consulate.<\/p>\n<!-- \/wp:paragraph -->"},{"title":"What documents would be required for VSIA application","content":"<!-- wp:paragraph -->\n<p>Duly filled Visa application form along with photographs as per consulate specifications, recent bank statements , return air tickets, hotel confirmations, travel itinerary etc. Our customer service associate would be more than happy to assist and guide you through the entire visa application process.<\/p>\n<!-- \/wp:paragraph -->"},{"title":"Is this tour physically demanding?","content":"<!-- wp:paragraph -->\n<p>Your tour will entail easy to moderate activity levels. At JnC we believe that \u201cTravel is in Details\u201d and keeping this ideology in forefront, we mostly have relaxed itineraries.<\/p>\n<!-- \/wp:paragraph -->"},{"title":"Payment structure for tour","content":"<!-- wp:paragraph -->\n<p>Payment structure for the tour depends on the timeframe of booking, If the tour is booked with less than 30 day from tour start date, complete tour cost needs to be paid. In case the booking is done well in advance, monies can be paid in couple of installment i.e. Booking amount, First Installment and Final Instalment, Our associates will guide and help you through the entire payment process, where monies can be paid using multiple platforms like bank transfers, Debit\/Credit Cards, UPI, Cheques etc.<\/p>\n<!-- \/wp:paragraph -->"},{"title":"How much money should I carry?","content":"<!-- wp:paragraph -->\n<p>Well It depends on multiple factors viz. tour duration, activities that you intend to experience whilst on tour, the sighseeings, meals, shopping, etc. Our travel associate would be more than happy to dicuss this in line with the itineary that has been finalised with yopu.<\/p>\n<!-- \/wp:paragraph -->"},{"title":"What are the Key Attractions of the Tour?","content":"<!-- wp:paragraph -->\n<p>\u201cIn case your are intrested in seeing an attarction that is not listed, we would would be more than happy to add the same since this is a customized tour. Please indicate the same to our travel associate and he would look at the best possbile fit. \u201c<\/p>\n<!-- \/wp:paragraph -->"}],"is_featured":false,"featured_image":{"width":1536,"height":702,"file":"2025\/09\/Cherry-Blossoms-in-Japan-A-Complete-Guide-to-the-Iconic-Sakura-Season-Tokyo-1.png","filesize":520231,"sizes":{"medium":{"file":"Cherry-Blossoms-in-Japan-A-Complete-Guide-to-the-Iconic-Sakura-Season-Tokyo-1-300x137.png","width":300,"height":137,"filesize":26108,"mime_type":"image\/png","source_url":"https:\/\/dev.dvio.global\/websites\/joy-n-crew\/wp-content\/uploads\/2025\/09\/Cherry-Blossoms-in-Japan-A-Complete-Guide-to-the-Iconic-Sakura-Season-Tokyo-1-300x137.png"},"large":{"file":"Cherry-Blossoms-in-Japan-A-Complete-Guide-to-the-Iconic-Sakura-Season-Tokyo-1-1024x468.png","width":1024,"height":468,"filesize":223269,"mime_type":"image\/png","source_url":"https:\/\/dev.dvio.global\/websites\/joy-n-crew\/wp-content\/uploads\/2025\/09\/Cherry-Blossoms-in-Japan-A-Complete-Guide-to-the-Iconic-Sakura-Season-Tokyo-1-1024x468.png"},"thumbnail":{"file":"Cherry-Blossoms-in-Japan-A-Complete-Guide-to-the-Iconic-Sakura-Season-Tokyo-1-150x150.png","width":150,"height":150,"filesize":16059,"mime_type":"image\/png","source_url":"https:\/\/dev.dvio.global\/websites\/joy-n-crew\/wp-content\/uploads\/2025\/09\/Cherry-Blossoms-in-Japan-A-Complete-Guide-to-the-Iconic-Sakura-Season-Tokyo-1-150x150.png"},"trip-thumb-size":{"file":"Cherry-Blossoms-in-Japan-A-Complete-Guide-to-the-Iconic-Sakura-Season-Tokyo-1-374x226.png","width":374,"height":226,"filesize":47322,"mime_type":"image\/png","source_url":"https:\/\/dev.dvio.global\/websites\/joy-n-crew\/wp-content\/uploads\/2025\/09\/Cherry-Blossoms-in-Japan-A-Complete-Guide-to-the-Iconic-Sakura-Season-Tokyo-1-374x226.png"},"destination-thumb-size":{"file":"Cherry-Blossoms-in-Japan-A-Complete-Guide-to-the-Iconic-Sakura-Season-Tokyo-1-600x702.png","width":600,"height":702,"filesize":226854,"mime_type":"image\/png","source_url":"https:\/\/dev.dvio.global\/websites\/joy-n-crew\/wp-content\/uploads\/2025\/09\/Cherry-Blossoms-in-Japan-A-Complete-Guide-to-the-Iconic-Sakura-Season-Tokyo-1-600x702.png"},"destination-thumb-trip-size":{"file":"Cherry-Blossoms-in-Japan-A-Complete-Guide-to-the-Iconic-Sakura-Season-Tokyo-1-410x250.png","width":410,"height":250,"filesize":54765,"mime_type":"image\/png","source_url":"https:\/\/dev.dvio.global\/websites\/joy-n-crew\/wp-content\/uploads\/2025\/09\/Cherry-Blossoms-in-Japan-A-Complete-Guide-to-the-Iconic-Sakura-Season-Tokyo-1-410x250.png"},"activities-thumb-size":{"file":"Cherry-Blossoms-in-Japan-A-Complete-Guide-to-the-Iconic-Sakura-Season-Tokyo-1-600x702.png","width":600,"height":702,"filesize":226854,"mime_type":"image\/png","source_url":"https:\/\/dev.dvio.global\/websites\/joy-n-crew\/wp-content\/uploads\/2025\/09\/Cherry-Blossoms-in-Japan-A-Complete-Guide-to-the-Iconic-Sakura-Season-Tokyo-1-600x702.png"},"trip-single-size":{"file":"Cherry-Blossoms-in-Japan-A-Complete-Guide-to-the-Iconic-Sakura-Season-Tokyo-1-990x490.png","width":990,"height":490,"filesize":229205,"mime_type":"image\/png","source_url":"https:\/\/dev.dvio.global\/websites\/joy-n-crew\/wp-content\/uploads\/2025\/09\/Cherry-Blossoms-in-Japan-A-Complete-Guide-to-the-Iconic-Sakura-Season-Tokyo-1-990x490.png"},"wte-embed-list-image":{"file":"Cherry-Blossoms-in-Japan-A-Complete-Guide-to-the-Iconic-Sakura-Season-Tokyo-1-252x200.png","width":252,"height":200,"filesize":31393,"mime_type":"image\/png","source_url":"https:\/\/dev.dvio.global\/websites\/joy-n-crew\/wp-content\/uploads\/2025\/09\/Cherry-Blossoms-in-Japan-A-Complete-Guide-to-the-Iconic-Sakura-Season-Tokyo-1-252x200.png"},"wte-embed-grid-image":{"file":"Cherry-Blossoms-in-Japan-A-Complete-Guide-to-the-Iconic-Sakura-Season-Tokyo-1-400x300.png","width":400,"height":300,"filesize":62855,"mime_type":"image\/png","source_url":"https:\/\/dev.dvio.global\/websites\/joy-n-crew\/wp-content\/uploads\/2025\/09\/Cherry-Blossoms-in-Japan-A-Complete-Guide-to-the-Iconic-Sakura-Season-Tokyo-1-400x300.png"},"woocommerce_thumbnail":{"file":"Cherry-Blossoms-in-Japan-A-Complete-Guide-to-the-Iconic-Sakura-Season-Tokyo-1-300x300.png","width":300,"height":300,"filesize":50288,"uncropped":false,"mime_type":"image\/png","source_url":"https:\/\/dev.dvio.global\/websites\/joy-n-crew\/wp-content\/uploads\/2025\/09\/Cherry-Blossoms-in-Japan-A-Complete-Guide-to-the-Iconic-Sakura-Season-Tokyo-1-300x300.png"},"woocommerce_single":{"file":"Cherry-Blossoms-in-Japan-A-Complete-Guide-to-the-Iconic-Sakura-Season-Tokyo-1-600x274.png","width":600,"height":274,"filesize":82522,"mime_type":"image\/png","source_url":"https:\/\/dev.dvio.global\/websites\/joy-n-crew\/wp-content\/uploads\/2025\/09\/Cherry-Blossoms-in-Japan-A-Complete-Guide-to-the-Iconic-Sakura-Season-Tokyo-1-600x274.png"},"woocommerce_gallery_thumbnail":{"file":"Cherry-Blossoms-in-Japan-A-Complete-Guide-to-the-Iconic-Sakura-Season-Tokyo-1-100x100.png","width":100,"height":100,"filesize":8473,"mime_type":"image\/png","source_url":"https:\/\/dev.dvio.global\/websites\/joy-n-crew\/wp-content\/uploads\/2025\/09\/Cherry-Blossoms-in-Japan-A-Complete-Guide-to-the-Iconic-Sakura-Season-Tokyo-1-100x100.png"},"full":{"file":"Cherry-Blossoms-in-Japan-A-Complete-Guide-to-the-Iconic-Sakura-Season-Tokyo-1.png","width":1536,"height":702,"source_url":"https:\/\/dev.dvio.global\/websites\/joy-n-crew\/wp-content\/uploads\/2025\/09\/Cherry-Blossoms-in-Japan-A-Complete-Guide-to-the-Iconic-Sakura-Season-Tokyo-1.png"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}},"_links":{"self":[{"href":"https:\/\/dev.dvio.global\/websites\/joy-n-crew\/wp-json\/wp\/v2\/trip\/21231","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/dev.dvio.global\/websites\/joy-n-crew\/wp-json\/wp\/v2\/trip"}],"about":[{"href":"https:\/\/dev.dvio.global\/websites\/joy-n-crew\/wp-json\/wp\/v2\/types\/trip"}],"author":[{"embeddable":true,"href":"https:\/\/dev.dvio.global\/websites\/joy-n-crew\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/dev.dvio.global\/websites\/joy-n-crew\/wp-json\/wp\/v2\/comments?post=21231"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/dev.dvio.global\/websites\/joy-n-crew\/wp-json\/wp\/v2\/media\/20877"}],"wp:attachment":[{"href":"https:\/\/dev.dvio.global\/websites\/joy-n-crew\/wp-json\/wp\/v2\/media?parent=21231"}],"wp:term":[{"taxonomy":"destination","embeddable":true,"href":"https:\/\/dev.dvio.global\/websites\/joy-n-crew\/wp-json\/wp\/v2\/destination?post=21231"},{"taxonomy":"activities","embeddable":true,"href":"https:\/\/dev.dvio.global\/websites\/joy-n-crew\/wp-json\/wp\/v2\/activities?post=21231"},{"taxonomy":"trip_types","embeddable":true,"href":"https:\/\/dev.dvio.global\/websites\/joy-n-crew\/wp-json\/wp\/v2\/trip_types?post=21231"},{"taxonomy":"difficulty","embeddable":true,"href":"https:\/\/dev.dvio.global\/websites\/joy-n-crew\/wp-json\/wp\/v2\/difficulty?post=21231"},{"taxonomy":"trip_tag","embeddable":true,"href":"https:\/\/dev.dvio.global\/websites\/joy-n-crew\/wp-json\/wp\/v2\/trip_tag?post=21231"},{"taxonomy":"toursfilter","embeddable":true,"href":"https:\/\/dev.dvio.global\/websites\/joy-n-crew\/wp-json\/wp\/v2\/toursfilter?post=21231"},{"taxonomy":"triptypesexternalsingle","embeddable":true,"href":"https:\/\/dev.dvio.global\/websites\/joy-n-crew\/wp-json\/wp\/v2\/triptypesexternalsingle?post=21231"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}