items
Set Event Date

Bounce House Rentals for Rent

24255

Rent bounce houses in Dayton, Ohio from A&S Party Rental — ideal for kids’ parties, school events, and family celebrations.

Professional delivery to Dayton Ohio and surrounding areas. Please submit a quote or contact us to be sure we service your area.

Bounce House Rentals in Dayton, Ohio

Make your next event full of laughter and excitement with bounce house rentals from A&S Party Rental in Dayton, Ohio! Perfect for birthday parties, school events, church gatherings, family reunions, and community festivals, our bounce houses provide safe, fun-filled entertainment for kids of all ages.

Choose from a variety of sizes and themes to match your party, from classic bounce houses to interactive slides and combo units. Each bounce house is professionally cleaned, inspected, and safely set up by our trained staff so parents can relax while the kids jump, slide, and play.

Pair your bounce house with face painters, balloon twisters and carnival games to create a complete, family-friendly event space. A&S Party Rental proudly serves Dayton and surrounding Ohio, Kentucky, and Indiana areas, helping families and communities host unforgettable celebrations.

Contact A&S Party Rental today to reserve your bounce house and make your next Cincinnati event an unforgettable experience for kids and families! aspartyrental.com

function CategoryGallery(rental_id, rental_name, images_arr){ var rid = rental_id; var rentalName = rental_name; // Normalize images_arr: it may arrive as a JSON string, an object, or be undefined try { if (typeof images_arr === 'string' && images_arr.length) { images_arr = JSON.parse(images_arr); } } catch (e) { images_arr = {}; } if (!images_arr) images_arr = {}; // Where to append anchors and thumbs var $bigAfter = jQuery('#io_img_big2_' + rid); var $thumbAfter = jQuery('#io_img_thumb1_' + rid); if ($bigAfter.length && $thumbAfter.length) { var relVal = $bigAfter.attr('rel') || 'img_group noopener'; // Helper to validate a URL-like value (non-empty and not literal placeholders) var isValid = function (u) { if (!u) return false; var s = String(u).trim(); if (!s) return false; if (s.indexOf('%%') !== -1) return false; // ignore unreplaced placeholders if (s === '0' || s.toLowerCase() === 'null' || s.toLowerCase() === 'undefined') return false; return true; }; var addedThumbs = 0; // Iterate image map and append missing big anchors and thumbs for (var key in images_arr) { if (!images_arr.hasOwnProperty(key)) continue; var imgObj = images_arr[key] || {}; var href = imgObj["rentalimage_imagelocbig"] || imgObj["imagelocbig"] || imgObj["big"]; var src = imgObj["rentalimage_imageloc"] || imgObj["imageloc"] || imgObj["thumb"]; // Compute index consistent with existing templates var n = parseInt(key, 10); if (isNaN(n)) { // Try to derive from position by incrementing a counter if keys are not numeric n = 1; } // Category templates already include big1, big2, and thumb1; gallery adds 2+ when missing var bigIndex = n + 1; // matches io_cart_shortcode.html pattern var thumbIndex = n + 1; // thumb id series aligns with big series in newer code // Add big anchor if valid and not already present if (isValid(href)) { var bigId = '#io_img_big' + bigIndex + '_' + rid; if (jQuery(bigId).length === 0) { var $a = jQuery('', { rel: relVal, href: href, id: 'io_img_big' + bigIndex + '_' + rid }); $bigAfter.after($a); $bigAfter = $a; // maintain insertion point } } // Add thumbnail if valid and not already present if (isValid(src)) { var thumbId = '#io_img_thumb' + thumbIndex + '_' + rid; if (jQuery(thumbId).length === 0) { var $img = jQuery('', { 'class': 'io_image_thumb skip-lazy', title: rentalName, src: src, alt: rentalName, id: 'io_img_thumb' + thumbIndex + '_' + rid }).on('mouseover', function () { if (typeof updateMainPic === 'function') { updateMainPic(this); } }); $thumbAfter.after($img); $thumbAfter = $img; // maintain insertion point addedThumbs++; } } } // Reveal the thumbnail box if we added any extra thumbnails if (addedThumbs > 0) { jQuery('#io_img_thumb1_' + rid).closest('.io_image_thumbbox').show(); } } } // Function to generate list view content on demand (global scope) generateListViewContent = function() { console.log('[IO List View] Generating list view content dynamically'); jQuery('.io_item2_list').each(function() { var $item = jQuery(this); // Skip if already generated if ($item.find('.io_list_view_content').length > 0) { return; } // Extract rental_id from the item var rentalId = $item.find('.item_rentalid').text().trim(); if (!rentalId) { console.warn('[IO List View] No rental_id found for item, skipping'); return; } // Read data from dynamically named global variables // var description = String(window['data_description_' + rentalId] || "").replace(/[\r\n]+/g, "").trim(); var indoorOutdoor = String(window.io_category_data[rentalId]["indoor_outdoor"] || "").replace(/[\r\n]+/g, "").trim(); var staff = String(window.io_category_data[rentalId]["staff"] || "").replace(/[\r\n]+/g, "").trim(); var electric = String(window.io_category_data[rentalId]["electric"] || "").replace(/[\r\n]+/g, "").trim(); var dimensions = String(window.io_category_data[rentalId]["dimensions"] || "").replace(/[\r\n]+/g, "").trim(); // Helper function to strip HTML tags from text var stripHtml = function(html) { var tmp = document.createElement("DIV"); tmp.innerHTML = html; return (tmp.textContent || tmp.innerText || "").trim(); }; // Helper function to escape HTML to prevent XSS var escapeHtml = function(text) { var map = { '&': '&', '': '>', '"': '"', "'": ''' }; return text.replace(/[&"']/g, function(m) { return map[m]; }); }; // Strip HTML tags from description // description = stripHtml(description); // Build the HTML structure with escaped content var html = '
'; // html += '
' + escapeHtml(description) + '
'; html += '
'; // Setup field - only add if valid if (indoorOutdoor && indoorOutdoor !== '0' && indoorOutdoor.length > 0) { html += '
'; html += 'Setup:'; html += '' + escapeHtml(indoorOutdoor) + ''; html += '
'; } // Operators field - only add if valid var operatorsText = staff ? staff + ' Adult Supervision Required' : ""; if (operatorsText && operatorsText !== '0 Adult Supervision Required' && operatorsText !== 'Adult Supervision Required' && operatorsText !== '0') { html += '
'; html += 'Operators:'; html += '' + escapeHtml(operatorsText) + ''; html += '
'; } // Power field - only add if valid var powerText = electric ? electric + ' Outlets' : ""; if (powerText && powerText !== '0 Outlets' && powerText !== '0.00 Outlets' && powerText !== 'Outlets' && powerText !== '0') { html += '
'; html += 'Power:'; html += '' + escapeHtml(powerText) + ''; html += '
'; } // Size field - only add if valid if (dimensions && dimensions !== '0' && dimensions.length > 0) { html += '
'; html += 'Size:'; html += '' + escapeHtml(dimensions) + ''; html += '
'; } html += '
'; // close io_item_details_labeled html += '
'; // close io_list_view_content // Insert before the buttons container $item.find('.io_buttons_container').before(html); }); } jQuery(document).ready(function($) { jQuery(".io_item2_list").each(function(){ var rentalId = jQuery(this).find('.item_rentalid').text().trim(); if (io_categoryVariantImages == 'on'){ CategoryGallery(rentalId, window.io_category_data[rentalId]['rental_name'], window.io_category_data[rentalId]["images_arr"]); } }); console.log('[IO View Toggle] Document ready, initializing view toggle functionality'); // Check if category_id has a numeric value to identify actual category pages // This must happen before any view state is applied var categoryId = $('.category_id').text().trim(); var hasNumericCategoryId = categoryId && !isNaN(categoryId) && categoryId.length > 0; if (!hasNumericCategoryId) { console.log('[IO View Toggle] No valid numeric category ID found, this is not a category page - skipping initialization'); return; } console.log('[IO View Toggle] Category page detected with categoryId:', categoryId); $('body').addClass('io-has-category-id'); // Show the toggle buttons on category pages $('.io_view_toggle_container').show(); console.log('[IO View Toggle] Toggle buttons displayed for category page'); // Track if view toggle has been initialized var isInitialized = false; // Initialize view toggle functionality function initViewToggle(force) { // Skip if already initialized unless forced if (isInitialized && !force) { console.log('[IO View Toggle] Already initialized, skipping'); return; } console.log('[IO View Toggle] Initializing view toggle functionality'); // Check if toggle buttons exist if ($('.io_view_toggle_btn').length === 0) { console.warn('[IO View Toggle] Toggle buttons not found in DOM'); return; } console.log('[IO View Toggle] Found', $('.io_view_toggle_btn').length, 'toggle buttons'); // Check if category container exists if ($('.io_catdiv2').length === 0) { console.warn('[IO View Toggle] Category container (.io_catdiv2) not found'); return; } console.log('[IO View Toggle] Found', $('.io_catdiv2').length, 'category containers'); // Get saved view preference from localStorage var savedView = localStorage.getItem('io_category_view') || 'tile'; console.log('[IO View Toggle] Retrieved saved view preference:', savedView); // Set initial view $('.io_catdiv2').removeClass('tile-view list-view').addClass(savedView + '-view'); console.log('[IO View Toggle] Applied initial view class:', savedView + '-view'); // Update button states $('.io_view_toggle_btn').removeClass('active'); $('.io_view_toggle_btn[data-view="' + savedView + '"]').addClass('active'); console.log('[IO View Toggle] Updated button states, active button:', savedView); // Generate list view content if initial view is list if (savedView === 'list') { if (typeof generateListViewContent === 'function') { generateListViewContent(); } else { console.warn('[IO View Toggle] generateListViewContent function not available yet'); } } // Log current items count var itemCount = $('.io_item2_list').length; console.log('[IO View Toggle] Found', itemCount, 'items in category'); // Handle toggle button clicks using native JavaScript for better compatibility // Remove any existing event listeners first $('.io_view_toggle_btn').off('click.viewToggle'); // Use native JavaScript addEventListener for more reliable event handling var buttons = document.querySelectorAll('.io_view_toggle_btn'); console.log('[IO View Toggle] Attaching event listeners to', buttons.length, 'buttons using native JS'); buttons.forEach(function(button) { // Remove any existing listener var newButton = button.cloneNode(true); button.parentNode.replaceChild(newButton, button); // Add fresh event listener newButton.addEventListener('click', function(e) { e.preventDefault(); e.stopPropagation(); var view = this.getAttribute('data-view'); console.log('[IO View Toggle] Button clicked (native listener), switching to view:', view); // Generate list view content if switching to list view if (view === 'list') { if (typeof generateListViewContent === 'function') { generateListViewContent(); } else { console.warn('[IO View Toggle] generateListViewContent function not available'); } } // Update button states document.querySelectorAll('.io_view_toggle_btn').forEach(function(btn) { btn.classList.remove('active'); }); this.classList.add('active'); console.log('[IO View Toggle] Updated button active states'); // Update grid view var catdiv = document.querySelector('.io_catdiv2'); if (catdiv) { catdiv.classList.remove('tile-view', 'list-view'); catdiv.classList.add(view + '-view'); console.log('[IO View Toggle] Applied view class:', view + '-view'); } // Save preference localStorage.setItem('io_category_view', view); console.log('[IO View Toggle] Saved view preference to localStorage:', view); // Debug: Log current layout state setTimeout(function() { if (catdiv) { var containerClasses = catdiv.className; var visibleItems = document.querySelectorAll('.io_item2_list:not([style*="display: none"])').length; console.log('[IO View Toggle] Layout updated - Container classes:', containerClasses); console.log('[IO View Toggle] Visible items after view change:', visibleItems); // Check if list view content is properly shown/hidden if (view === 'list') { var visibleListContent = document.querySelectorAll('.io_list_view_content:not([style*="display: none"])').length; console.log('[IO View Toggle] Visible list content elements:', visibleListContent); } } }, 100); }, true); // Use capture phase console.log('[IO View Toggle] Event listener attached to button:', newButton.getAttribute('data-view')); }); console.log('[IO View Toggle] Event handlers attached successfully'); // Mark as initialized isInitialized = true; } // Initialize when page loads console.log('[IO View Toggle] Starting initial setup'); initViewToggle(); // Also initialize after dynamic content loads (if applicable) $(document).on('io_content_loaded', function() { console.log('[IO View Toggle] Dynamic content loaded event detected, reinitializing'); initViewToggle(); }); // Debug: Monitor for DOM changes that might affect our functionality if (typeof MutationObserver !== 'undefined') { var mutationTimeout; var lastItemCount = $('.io_item2_list').length; var observer = new MutationObserver(function(mutations) { // Debounce: clear existing timeout and set a new one clearTimeout(mutationTimeout); mutationTimeout = setTimeout(function() { var currentItemCount = $('.io_item2_list').length; // Only trigger if we have new items that weren't there before if (currentItemCount > lastItemCount) { console.log('[IO View Toggle] New items detected in DOM (' + lastItemCount + ' -> ' + currentItemCount + ')'); lastItemCount = currentItemCount; // If already initialized, just generate list view content for new items if in list view if (isInitialized) { var currentView = localStorage.getItem('io_category_view') || 'tile'; if (currentView === 'list') { console.log('[IO View Toggle] Generating list view content for new items'); if (typeof generateListViewContent === 'function') { generateListViewContent(); } else { console.warn('[IO View Toggle] generateListViewContent function not available'); } } } else { // Not initialized yet, so initialize console.log('[IO View Toggle] Initializing due to new items'); initViewToggle(); } } }, 250); // 250ms debounce }); observer.observe(document.body, { childList: true, subtree: true }); console.log('[IO View Toggle] DOM mutation observer started'); } // Debug: Log window resize events that might affect responsive layout $(window).on('resize.viewToggle', function() { var windowWidth = $(window).width(); var currentView = $('.io_catdiv2').hasClass('list-view') ? 'list' : 'tile'; console.log('[IO View Toggle] Window resized to:', windowWidth, 'px, current view:', currentView); }); console.log('[IO View Toggle] Initialization complete'); });

window.io_category_data = window.io_category_data || {}; window.io_category_data['507511'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"18x16x7","rental_id":"507511","rental_name":"Animal Land Activity Center","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022611979\u0022,\u0022rentalimage_createtime\u0022:\u00221645469933\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221645469933\u0022,\u0022rentalimage_itemid\u0022:\u0022507511\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/animal-land-activity-img_1707591833.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/animal-land-activity-img_1707591833_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221356765\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022507511\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/animal_land3_1709220587.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/animal_land3_1709220587_big.jpg\u0022},\u00222\u0022:{\u0022rentalimage_id\u0022:\u00221356767\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022507511\u0022,\u0022rentalimage_order\u0022:\u00222\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/animal_land_1709220587.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/animal_land_1709220587_big.jpg\u0022},\u00223\u0022:{\u0022rentalimage_id\u0022:\u00221356769\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022507511\u0022,\u0022rentalimage_order\u0022:\u00223\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/animal_land2_1709220587.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/animal_land2_1709220587_big.jpg\u0022},\u00224\u0022:{\u0022rentalimage_id\u0022:\u00221571277\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022507511\u0022,\u0022rentalimage_order\u0022:\u00224\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Animal Land Activity Center_1722358752.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Animal Land Activity Center_1722358752_big.jpg\u0022}}"};

Animal Land Activity Center

from $400.00

Animal+Land+Activity+Center

https://www.aspartyrental.com/rentals/bounce-house-rentals/animal-land-activity-center/

507511

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['1368683'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"17.7L x 14.8W x 16.2H","rental_id":"1368683","rental_name":"Backyard Combo","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221212469\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221368683\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/backyard-combo-img_1707592230.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/backyard-combo-img_1707592230_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00222035705\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221368683\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Backyard Combo_1753386014.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Backyard Combo_1753386014_big.png\u0022},\u00222\u0022:{\u0022rentalimage_id\u0022:\u00221571275\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221368683\u0022,\u0022rentalimage_order\u0022:\u00222\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Backyard Combo 2_1722358712.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Backyard Combo 2_1722358712_big.jpg\u0022}}"};

Backyard Combo

from $365.00

Backyard+Combo

https://www.aspartyrental.com/rentals/bounce-house-rentals/backyard-combo-module-castle/

1368683

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['1330193'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"30x14x17","rental_id":"1330193","rental_name":"Big Top Combo","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221211585\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221330193\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/big-top-combo-img_1707592287.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/big-top-combo-img_1707592287_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221213059\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221330193\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Photo20Aug200820102022202920PM_1660589792_big-1 (1)_1698158777.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Photo20Aug200820102022202920PM_1660589792_big-1 (1)_1698158777_big.jpg\u0022}}"};

Big Top Combo

from $365.00

Big+Top+Combo

https://www.aspartyrental.com/rentals/bounce-house-rentals/big-top-bouncer/

1330193

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['1873265'] = {"indoor_outdoor":"","staff":"","electric":"2.00","dimensions":"8x25x14","rental_id":"1873265","rental_name":"Boom Box Bounce","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221211537\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221873265\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/boom-box-bounce-house-front_1697905997.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/boom-box-bounce-house-front_1697905997_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221211539\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221873265\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/boom-box-bounce-house-back_1697905998.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/boom-box-bounce-house-back_1697905998_big.png\u0022},\u00222\u0022:{\u0022rentalimage_id\u0022:\u00221571269\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221873265\u0022,\u0022rentalimage_order\u0022:\u00222\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Boom Box Bounce_1722358198.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Boom Box Bounce_1722358198_big.jpg\u0022}}"};

Boom Box Bounce

from $550.00

Boom+Box+Bounce

https://www.aspartyrental.com/rentals/bounce-house-rentals/boom-box-bounce/

1873265

Limited

Hidden

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['437743'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"15x15x13 ","rental_id":"437743","rental_name":"Castle Bounce","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221211523\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022437743\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/casltebounce_1697905636.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/casltebounce_1697905636_big.jpg\u0022}}"};

Castle Bounce

from $300.00

Castle+Bounce

https://www.aspartyrental.com/rentals/bounce-house-rentals/castle-bounce/

437743

Limited

Hidden

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['437865'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"20x16x17","rental_id":"437865","rental_name":"Dalmatian 4 in 1 Combo","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u002298989\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022437865\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/Ultrasound\/images\/Dalmation-Firehouse-Combo-Bouncer_204101743.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/Ultrasound\/images\/Dalmation-Firehouse-Combo-Bouncer_204101743_big.jpg\u0022}}"};

Dalmatian 4 in 1 Combo

from $350.00

Dalmatian+4+in+1+Combo

https://www.aspartyrental.com/rentals/bounce-house-rentals/dalmatian-4-in-1-combo/

437865

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['1185845'] = {"indoor_outdoor":"","staff":"","electric":"2.00","dimensions":"17 x 27 x 18","rental_id":"1185845","rental_name":"Dolphin Water Slide Combo","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221211535\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221185845\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/dolphin-water-slide-combo_1697905937.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/dolphin-water-slide-combo_1697905937_big.jpg\u0022}}"};

Dolphin Water Slide Combo

from $365.00

Dolphin+Water+Slide+Combo

https://www.aspartyrental.com/rentals/bounce-house-rentals/dolphin-water-slide-bounce-house-combo/

1185845

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['2424027'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"17x17x28","rental_id":"2424027","rental_name":"Frankenstein Mega Bounce","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00222146469\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222424027\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/BB2360-Frankenstein20Igloo-HR-02_1721409442_big_1760715839.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/BB2360-Frankenstein20Igloo-HR-02_1721409442_big_1760715839_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221569983\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222424027\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Frankenstein1_1722265731.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Frankenstein1_1722265731_big.png\u0022}}"};

Frankenstein Mega Bounce

from $750.00

Frankenstein+Mega+Bounce

https://www.aspartyrental.com/rentals/bounce-house-rentals/frankenstein-mega-bounce/

2424027

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['2139563'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"15x15x16","rental_id":"2139563","rental_name":"Freedom Bounce House","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00222146497\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222139563\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/BB2401-Module Castle Tower 3 (Medium)-HR-01_1760716290.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/BB2401-Module Castle Tower 3 (Medium)-HR-01_1760716290_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221283413\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222139563\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/bb2401-module castle tower 3 (medium)-hr-06_1704844996.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/bb2401-module castle tower 3 (medium)-hr-06_1704844996_big.png\u0022},\u00222\u0022:{\u0022rentalimage_id\u0022:\u00222146499\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222139563\u0022,\u0022rentalimage_order\u0022:\u00222\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/BB2401-Module Castle Tower 3 (Medium)-HR-04_1760716292.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/BB2401-Module Castle Tower 3 (Medium)-HR-04_1760716292_big.png\u0022}}"};

Freedom Bounce House

from $300.00

Freedom+Bounce+House

https://www.aspartyrental.com/rentals/bounce-house-rentals/freedom-bounce-house/

2139563

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['2095585'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"16L 18W 9H","rental_id":"2095585","rental_name":"Gingerbread Playland","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221283429\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222095585\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/bb2326-gingerbread playland-hr-01_1704846383.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/bb2326-gingerbread playland-hr-01_1704846383_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221283431\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222095585\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/bb2326-gingerbread playland-hr-02_1704846384.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/bb2326-gingerbread playland-hr-02_1704846384_big.png\u0022},\u00222\u0022:{\u0022rentalimage_id\u0022:\u00221283433\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222095585\u0022,\u0022rentalimage_order\u0022:\u00222\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/bb2326-gingerbread playland-hr-06_1704846386.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/bb2326-gingerbread playland-hr-06_1704846386_big.png\u0022}}"};

Gingerbread Playland

from $750.00

Gingerbread+Playland

https://www.aspartyrental.com/rentals/bounce-house-rentals/gingerbread-playland/

2095585

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['1618921'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"15x15x14","rental_id":"1618921","rental_name":"Lucky Bounce House","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022779521\u0022,\u0022rentalimage_createtime\u0022:\u00221660856124\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221660856124\u0022,\u0022rentalimage_itemid\u0022:\u00221618921\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/B1006-Lucky Module Jumper-HR-01_118827970.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/B1006-Lucky Module Jumper-HR-01_118827970_big.png\u0022}}"};

Lucky Bounce House

from $300.00

Lucky+Bounce+House

https://www.aspartyrental.com/rentals/bounce-house-rentals/lucky-module-15-x-15-bounce-house/

1618921

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['887989'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"20x16x15","rental_id":"887989","rental_name":"Module 4-in-1 Combo","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022178171\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022887989\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/4 in 1_109730663.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/4 in 1_109730663_big.jpg\u0022}}"};

Module 4-in-1 Combo

from $365.00

Module+4-in-1+Combo

https://www.aspartyrental.com/rentals/bounce-house-rentals/module-4-in-1-jump-house/

887989

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['2335752'] = {"indoor_outdoor":"","staff":"","electric":"2.00","dimensions":"34.3\u0027 L x 13\u0027W x 16\u0027H","rental_id":"2335752","rental_name":"Module Combo \u0026 Water Slide","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00222146503\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222335752\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/modulecombo\u0026waterslide_1760716749.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/modulecombo\u0026waterslide_1760716749_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221517818\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222335752\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/image_123650291_1718037391.JPG\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/image_123650291_1718037391_big.JPG\u0022},\u00222\u0022:{\u0022rentalimage_id\u0022:\u00221571231\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222335752\u0022,\u0022rentalimage_order\u0022:\u00222\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/New Tsunami_1722356354.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/New Tsunami_1722356354_big.jpg\u0022},\u00223\u0022:{\u0022rentalimage_id\u0022:\u00221571233\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222335752\u0022,\u0022rentalimage_order\u0022:\u00223\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/New Tsunami 2_1722356354.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/New Tsunami 2_1722356354_big.jpg\u0022}}"};

Module Combo & Water Slide

from $375.00

Module+Combo+%26+Water+Slide

https://www.aspartyrental.com/rentals/bounce-house-rentals/module-combo-water-slide-starting-5-29-24-2/

2335752

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['2335754'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"","rental_id":"2335754","rental_name":"Module Medium Castle Bounce","images_arr":"{}"};

Module Medium Castle Bounce

from $300.00

Module+Medium+Castle+Bounce

https://www.aspartyrental.com/rentals/bounce-house-rentals/medium-castle-bounce-starting-5-29-24/

2335754

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['2868387'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"L20 x W15 x H14","rental_id":"2868387","rental_name":"Pixelated Kids Combo Dual Lane Wet\/Dry","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221972773\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222868387\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/minecraft_1749150560.jpeg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/minecraft_1749150560_big.jpeg\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221972775\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222868387\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_5667_1749150560.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_5667_1749150560_big.jpg\u0022},\u00222\u0022:{\u0022rentalimage_id\u0022:\u00221972777\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222868387\u0022,\u0022rentalimage_order\u0022:\u00222\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_5668_1749150560.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_5668_1749150560_big.jpg\u0022},\u00223\u0022:{\u0022rentalimage_id\u0022:\u00221972779\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222868387\u0022,\u0022rentalimage_order\u0022:\u00223\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_5670_1749150560.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_5670_1749150560_big.jpg\u0022},\u00224\u0022:{\u0022rentalimage_id\u0022:\u00222131909\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222868387\u0022,\u0022rentalimage_order\u0022:\u00224\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/pixelatedBounce_1759433196.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/pixelatedBounce_1759433196_big.jpg\u0022}}"};

Pixelated Kids Combo Dual Lane Wet/Dry

from $365.00

Pixelated+Kids+Combo+Dual+Lane+Wet%2FDry

https://www.aspartyrental.com/rentals/bounce-house-rentals/pixelated-wet-dry-combo/

2868387

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['2944207'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"23.5x20x18","rental_id":"2944207","rental_name":"Pumpkin Bounce","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00222146501\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222944207\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/pumpkinbounce_1760716352.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/pumpkinbounce_1760716352_big.jpg\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00222077409\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222944207\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/pumpkin_1756146482.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/pumpkin_1756146482_big.jpg\u0022},\u00222\u0022:{\u0022rentalimage_id\u0022:\u00222077411\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222944207\u0022,\u0022rentalimage_order\u0022:\u00222\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/pumpkinbounce_1756146483.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/pumpkinbounce_1756146483_big.jpg\u0022}}"};

Pumpkin Bounce

from $550.00

Pumpkin+Bounce

https://www.aspartyrental.com/rentals/bounce-house-rentals/pumpkin-bounce/

2944207

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['1583981'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"17x17x27H","rental_id":"1583981","rental_name":"Snowman Igloo Bounce House","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221211517\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221583981\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/aspartyrentalsnowman - Edited_1697905344.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/aspartyrentalsnowman - Edited_1697905344_big.png\u0022}}"};

Snowman Igloo Bounce House

from $600.00

Snowman+Igloo+Bounce+House

https://www.aspartyrental.com/rentals/bounce-house-rentals/snowman-igloo-bounce-house/

1583981

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['2554851'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"14 ft L X 14 ft W X 17 ft H","rental_id":"2554851","rental_name":"Space Bouncer","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221681991\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222554851\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Space Bouncer_1732721176.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Space Bouncer_1732721176_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221721119\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222554851\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/B-053-Space-Bounce-3_1736286138.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/B-053-Space-Bounce-3_1736286138_big.png\u0022},\u00222\u0022:{\u0022rentalimage_id\u0022:\u00221721121\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222554851\u0022,\u0022rentalimage_order\u0022:\u00222\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/B-053-Space-Bounce-2_1736286139.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/B-053-Space-Bounce-2_1736286139_big.png\u0022},\u00223\u0022:{\u0022rentalimage_id\u0022:\u00222035697\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222554851\u0022,\u0022rentalimage_order\u0022:\u00223\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Space Bouncer_1753385916.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Space Bouncer_1753385916_big.png\u0022}}"};

Space Bouncer

from $300.00

Space+Bouncer

https://www.aspartyrental.com/rentals/inflatable-rentals-dayton/space-bouncer/

2554851

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['1620395'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"L15\u0027xW15\u0027xH13\u0027","rental_id":"1620395","rental_name":"Tailgate Combo","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221211521\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221620395\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/C2013-IP-3DFootballComboCIN-WM-01_500x - Edited_1697905588.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/C2013-IP-3DFootballComboCIN-WM-01_500x - Edited_1697905588_big.png\u0022}}"};

Tailgate Combo

from $365.00

Tailgate+Combo

https://www.aspartyrental.com/rentals/bounce-house-rentals/tailgate-bouncer/

1620395

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['1439203'] = {"indoor_outdoor":"","staff":"","electric":"2.00","dimensions":"13x30x15","rental_id":"1439203","rental_name":"Tropical Combo","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221067221\u0022,\u0022rentalimage_createtime\u0022:\u00221684784047\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221684784047\u0022,\u0022rentalimage_itemid\u0022:\u00221439203\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/tropical_combo_wetdry_dy-co-wdtrop-19a-_119_1_1666793385.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/tropical_combo_wetdry_dy-co-wdtrop-19a-_119_1_1666793385_big.png\u0022}}"};

Tropical Combo

from $365.00

Tropical+Combo

https://www.aspartyrental.com/rentals/bounce-house-rentals/tropical-combo-large/

1439203

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['1330195'] = {"indoor_outdoor":"","staff":"","electric":"2.00","dimensions":"30x13x16","rental_id":"1330195","rental_name":"Unicorn Combo","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022820513\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221330195\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Unicorn-Jump-and-Slide_1669859717_big_1683053863.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Unicorn-Jump-and-Slide_1669859717_big_1683053863_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221995433\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221330195\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_1145_1750686902.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_1145_1750686902_big.png\u0022}}"};

Unicorn Combo

from $365.00

Unicorn+Combo

https://www.aspartyrental.com/rentals/bounce-house-rentals/unicorn-combo/

1330195

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['2095587'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"15x15","rental_id":"2095587","rental_name":"White Wedding Bounce House","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221231945\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222095587\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/white bouncehouse - Edited_1709047001.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/white bouncehouse - Edited_1709047001_big.png\u0022}}"};

White Wedding Bounce House

from $399.00

White+Wedding+Bounce+House

https://www.aspartyrental.com/rentals/wedding-package/white-wedding-bounce-house/

2095587

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['227388'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"13 x 13 x 15","rental_id":"227388","rental_name":"13x13 Castle Moonwalk","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022912195\u0022,\u0022rentalimage_createtime\u0022:\u00221675197294\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221675197294\u0022,\u0022rentalimage_itemid\u0022:\u0022227388\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/s-l500 (3)_1667570721.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/s-l500 (3)_1667570721_big.jpg\u0022}}"};

13×13 Castle Moonwalk

from $189.00

13×13+Castle+Moonwalk

https://www.aspartyrental.com/rentals/bounce-house-rentals/13-x-13-castle-moonwalk-pu/

227388

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['466047'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"13x12x","rental_id":"466047","rental_name":"13x13 Module Bounce House","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00222146505\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022466047\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/13x13module_1760717028.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/13x13module_1760717028_big.jpg\u0022}}"};

13×13 Module Bounce House

from $300.00

13×13+Module+Bounce+House

https://www.aspartyrental.com/rentals/bounce-house-rentals/13×13-module-bounce-house-pu/

466047

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['274314'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"16 x 15 x 13","rental_id":"274314","rental_name":"15x15 Module Bounce House","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022518557\u0022,\u0022rentalimage_createtime\u0022:\u00221633623288\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221633623288\u0022,\u0022rentalimage_itemid\u0022:\u0022274314\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/images\/644bc329117a0d8e07689d7cbfb9262e.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/images\/644bc329117a0d8e07689d7cbfb9262e.jpg\u0022}}"};

15×15 Module Bounce House

from $300.00

15×15+Module+Bounce+House

https://www.aspartyrental.com/rentals/bounce-house-rentals/15-x-15-module-bounce-house-pu/

274314

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['227391'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"15 x 15 x 15","rental_id":"227391","rental_name":"15x15 Camelot Bounce House","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022518551\u0022,\u0022rentalimage_createtime\u0022:\u00221633623227\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221633623227\u0022,\u0022rentalimage_itemid\u0022:\u0022227391\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/images\/687b2d01fb2e513919867be23993271b.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/images\/687b2d01fb2e513919867be23993271b.jpg\u0022}}"};

15×15 Camelot Bounce House

from $300.00

15×15+Camelot+Bounce+House

https://www.aspartyrental.com/rentals/bounce-house-rentals/15-x-15-camelot-bounce-house-pu/

227391

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['216173'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"15x16x15","rental_id":"216173","rental_name":"15x15 Castle Moonwalk","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022838273\u0022,\u0022rentalimage_createtime\u0022:\u00221668205765\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221668205765\u0022,\u0022rentalimage_itemid\u0022:\u0022216173\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/castle-2-l_727521.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/castle-2-l_727521_big.jpg\u0022}}"};

15×15 Castle Moonwalk

from $300.00

15×15+Castle+Moonwalk

https://www.aspartyrental.com/rentals/bounce-house-rentals/15-x-15-castle-moonwalk-pu/

216173

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['227393'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"15 x 15 x 15","rental_id":"227393","rental_name":"15x15 Dream Castle Bounce House","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022518555\u0022,\u0022rentalimage_createtime\u0022:\u00221633623268\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221633623268\u0022,\u0022rentalimage_itemid\u0022:\u0022227393\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/images\/9735f00dc83872fd8a16214482d757d9.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/images\/9735f00dc83872fd8a16214482d757d9.jpg\u0022}}"};

15×15 Dream Castle Bounce House

from $300.00

15×15+Dream+Castle+Bounce+House

https://www.aspartyrental.com/rentals/bounce-house-rentals/15-x-15-dream-castle-pu/

227393

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['466053'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"15\u0027 x 16\u0027 x 15\u0027","rental_id":"466053","rental_name":"Mickey Mouse Bounce House","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221211527\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022466053\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/mickey_park_1697905746.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/mickey_park_1697905746_big.jpg\u0022}}"};

Mickey Mouse Bounce House

from $300.00

Mickey+Mouse+Bounce+House

https://www.aspartyrental.com/rentals/bounce-house-rentals/15x-15-mickey-mouse-pu/

466053

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['635815'] = {"indoor_outdoor":"","staff":"","electric":"2.00","dimensions":"18 x 19 x 18","rental_id":"635815","rental_name":"Carnival Fair 5-in-1 Combo","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022144257\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022635815\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Carnival-5in1-DM1_515745281.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Carnival-5in1-DM1_515745281_big.jpg\u0022}}"};

Carnival Fair 5-in-1 Combo

from $365.00

Carnival+Fair+5-in-1+Combo

https://www.aspartyrental.com/rentals/bounce-house-rentals/carnival-fair-5-in-1-bounce-house-combo/

635815

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['228819'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"","rental_id":"228819","rental_name":"Disney Frozen 5-in-1 Combo","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221211529\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022228819\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/aspartyrentalfrozen_1697905773.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/aspartyrentalfrozen_1697905773_big.jpg\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00222035719\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022228819\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Disney Frozen 5-in-1 Combo_1753386115.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Disney Frozen 5-in-1 Combo_1753386115_big.png\u0022}}"};

Disney Frozen 5-in-1 Combo

from $365.00

Disney+Frozen+5-in-1+Combo

https://www.aspartyrental.com/rentals/bounce-house-rentals/disney-frozen-5-and-1-combo-pu/

228819

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['216283'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"20x19x17","rental_id":"216283","rental_name":"Disney Princess 3-D Combo","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022837485\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022216283\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/disney-princess-3d-combo_1668101983.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/disney-princess-3d-combo_1668101983_big.jpg\u0022}}"};

Disney Princess 3-D Combo

from $365.00

Disney+Princess+3-D+Combo

https://www.aspartyrental.com/rentals/bounce-house-rentals/disney-princess-3-d-combo/

216283

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['216299'] = {"indoor_outdoor":"","staff":"","electric":"2.00","dimensions":"16x20x12","rental_id":"216299","rental_name":"16x20 Extra Large Bounce House","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221211531\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022216299\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/20x20-extreme-moonwalk-bounce-house - Edited_1697905809.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/20x20-extreme-moonwalk-bounce-house - Edited_1697905809_big.png\u0022}}"};

16×20 Extra Large Bounce House

from $330.00

16×20+Extra+Large+Bounce+House

https://www.aspartyrental.com/rentals/bounce-house-rentals/extra-large-bounce-16-x-20-pu/

216299

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['274016'] = {"indoor_outdoor":"","staff":"","electric":"2.00","dimensions":"18 x 19 x 18","rental_id":"274016","rental_name":"Ferris Wheel 5-in-1 Combo","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022518575\u0022,\u0022rentalimage_createtime\u0022:\u00221633624650\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221633624650\u0022,\u0022rentalimage_itemid\u0022:\u0022274016\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/images\/b73182acac93b52c55ab80c24b2ac27e.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/images\/b73182acac93b52c55ab80c24b2ac27e.jpg\u0022}}"};

Ferris Wheel 5-in-1 Combo

from $365.00

Ferris+Wheel+5-in-1+Combo

https://www.aspartyrental.com/rentals/bounce-house-rentals/ferris-wheel-5-in-1-inflatable-combo/

274016

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['330896'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"20.4 x 14.6 x 15.10 ","rental_id":"330896","rental_name":"Finding Dory Combo","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u002285055\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022330896\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/images\/9a02a4d33c8a43108f6cfab52eaccc10.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/436b3c5aabacafac904647181156a41e.jpg\u0022}}"};

Finding Dory Combo

from $365.00

Finding+Dory+Combo

https://www.aspartyrental.com/rentals/bounce-house-rentals/finding-dory-combo-bounce-house-50-extension-cord-included/

330896

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['216449'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"15x17x15","rental_id":"216449","rental_name":"Pirate Combo (50\u0027 Extension Cord Included)","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022820579\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022216449\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/abc-bouncer-slide-212-pirate_1666794735.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/abc-bouncer-slide-212-pirate_1666794735_big.jpg\u0022}}"};

Pirate Combo (50′ Extension Cord Included)

from $365.00

Pirate+Combo+%2850%27+Extension+Cord+Included%29

https://www.aspartyrental.com/rentals/bounce-house-rentals/pirate-combo-50-extension-cord-included/

216449

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['274467'] = {"indoor_outdoor":"","staff":"","electric":"2.00","dimensions":"28 x 13 x 14","rental_id":"274467","rental_name":"Kids Tropical Water Combo","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221067227\u0022,\u0022rentalimage_createtime\u0022:\u00221684784266\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221684784266\u0022,\u0022rentalimage_itemid\u0022:\u0022274467\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/kidstropicalcombo_203199605.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/kidstropicalcombo_203199605_big.jpg\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00222131931\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022274467\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/kidstropicalcombo_1759434118.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/kidstropicalcombo_1759434118_big.jpg\u0022}}"};

Kids Tropical Water Combo

from $365.00

Kids+Tropical+Water+Combo

https://www.aspartyrental.com/rentals/bounce-house-rentals/tropical-combo-water-bounce-house-50-extension-cord-includ/

274467

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['216599'] = {"indoor_outdoor":"","staff":"","electric":"2.00","dimensions":"20x19x17","rental_id":"216599","rental_name":"World of Disney Combo","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221211571\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022216599\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/worldofdisney_1697906857.jpeg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/worldofdisney_1697906857_big.jpeg\u0022}}"};

World of Disney Combo

from $365.00

World+of+Disney+Combo

https://www.aspartyrental.com/rentals/bounce-house-rentals/world-of-disney-pu/

216599

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

Bounce House Rentals

Bounce into amazing memories with A&S Party Rental! Explore our giant selection of sanitized, safe bounce houses in Dayton & Cincinnati. Get a free quote & book your epic party today!

Our bounce house rentals and inflatable rentals in Cincinnati and Dayton will ensure you never have another boring party again! A&S Party Rental delivers Bouncers and Bounce House Water Slide Rentals quickly and safely. Not to mention, our Party Rentals can turn any party into a memorable event. We have a wide collection of bouncer rentals and inflatable rentals.

Not only do these bounce houses work well for kid’s birthday parties or children’s events. Additionally, our top of the line inflatable rentals will make any company picnic, wedding, graduation party, or special event a memorable experience.

Furthermore, Our bounce house rentals come in many different shapes and sizes. For example, we rent bouncers from princess castles bouncers to dinosaurs. Each party rental item is quality tested, cleaned and disinfected after every event.

A&S Party Rental will use our professional expertise to set up your party rental supplies. Then we will do a Safety Check, of your bounce house to ensure 100% safety for your event. We license all of their bounce houses with the, we will guarantee that you will be completely satisfied with your rental, as your happiness is our number one priority!

Our bounce house rentals and inflatable rentals in Dayton will ensure you never have another boring party again! A&S Party Rental delivers Bounce House Rentals and Bounce House Water Slides quickly and safely. Not to mention, our inflatable Rentals can turn any party into a memorable event.

We have a wide collection of bounce house rentals and inflatable rentals. Not only do these bounce houses work well for kid’s birthday parties or children’s events. Additionally, our top of the line inflatable rentals & bounce house rentals will make any company picnic, wedding, graduation party, or special event a memorable experience.

Furthermore, Our bounce house rentals come in many different shapes and sizes. For example, We rent from princess castles bouncers to dinosaurs bouncers.

First, Each party rental item or bounce house rental is quality tested, cleaned and disinfected after every event. Secondly, A&S Party Rental will use our professional expertise to set up your party rental supplies. Then we will do a Safety Check, of your inflatable rentals to ensure 100% safety for your event.

We license all of their bounce house rentals with the Amusement Ride and Safety Division. Moreover, we will guarantee that you will be completely satisfied with your rental, as your happiness is our number one priority!

Bounce House Rentals are fun for all!

If you are planning an event in the Dayton area of Ohio, give A&S Party Rental a call or stop by our to warehouse and showroom. We promise to help make your event a one-of-a-kind experience for all your guests! Check out our Bounce House Rentals Guide for more information.

Inflatable Rentals are fun for all!

If you are planning an event in the Cincinnati or Dayton area of Ohio, give A&S Party Rental a call or stop by our warehouse and showroom. We promise to help make your event a one-of-a-kind experience for all your guests! Check out our Bounce House Rental Guide for more information. Finally, Looking For Party Inspirations? Check Out Our Pinterest for more party ideas.

Check out our YouTube Channel, Facebook , Pinterest & TikTok

Want to know what our customers think of our bounce house rentals? Check out our reviews here.

Google Reviews or Facebook Reviews