items
Set Event Date

Obstacle Course Rentals for Rent

24259

Rent obstacle courses in Dayton, Ohio from A&S Party Rental — ideal for kids’ parties, school events, and family-friendly fun.

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

Obstacle Course Rentals in Dayton, Ohio

Bring the excitement and challenge of a giant obstacle course to your next event with A&S Party Rental in Cincinnati, Ohio! Perfect for birthday parties, school events, church gatherings, family reunions, and community festivals, our obstacle courses keep kids active, engaged, and laughing for hours.

Choose from a variety of inflatable obstacle courses featuring climbing walls, slides, tunnels, and more. Each course is professionally cleaned, inspected, and safely set up by our trained staff so parents can relax while kids race, climb, and play.

Pair your obstacle course with bounce houses, tables, chairs, carnival rides, and other rentals to create a complete family-friendly event. A&S Party Rental proudly serves Dayton and surrounding Ohio, Kentucky, and Indiana areas, helping families and communities host safe, fun-filled, and memorable events.

Contact A&S Party Rental today to reserve your obstacle course and bring high-energy, family fun to your Cincinnati event!

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['216177'] = {"indoor_outdoor":"","staff":"","electric":"3.00","dimensions":"34Lx23Wx14H","rental_id":"216177","rental_name":"Adrenaline Rush Obstacle Course 85\u0027","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221212563\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022216177\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/aspartyobs_1698089469.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/aspartyobs_1698089469_big.jpg\u0022}}"};

Adrenaline Rush Obstacle Course 85′

from $1,325.00

Adrenaline+Rush+Obstacle+Course+85%27

https://www.aspartyrental.com/rentals/obstacle-course-rentals/adrenaline-rush/

216177

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['437671'] = {"indoor_outdoor":"","staff":"","electric":"3.00","dimensions":"26x20x40","rental_id":"437671","rental_name":"Alcatraz Mega Obstacle Course","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00222146447\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022437671\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Alcatraz-Massive-Obstacle-Course_1760714448.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Alcatraz-Massive-Obstacle-Course_1760714448_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00222146445\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022437671\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Alcatraz_5-view-Panel_1760714448.jpeg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Alcatraz_5-view-Panel_1760714448_big.jpeg\u0022}}"};

Alcatraz Mega Obstacle Course

from $1,300.00

Alcatraz+Mega+Obstacle+Course

https://www.aspartyrental.com/rentals/obstacle-course-rentals/alcatraz-mega-obstacle-course/

437671

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['216185'] = {"indoor_outdoor":"","staff":"","electric":"2.00","dimensions":"12x13x35","rental_id":"216185","rental_name":"Backyard Obstacle","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u002253553\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022216185\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/images\/54ecbdfc43713554f6f41985329af1ba.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/images\/54ecbdfc43713554f6f41985329af1ba.jpg\u0022}}"};

Backyard Obstacle

from $0.00

Backyard+Obstacle

https://www.aspartyrental.com/rentals/obstacle-course-rentals/backyard-obstacle/

216185

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['216207'] = {"indoor_outdoor":"","staff":"","electric":"3.00","dimensions":"68x12x18","rental_id":"216207","rental_name":"Boot Camp Ultimate Obstacle 70\u2019","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221212557\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022216207\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/bootcamp_1698089179.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/bootcamp_1698089179_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221212559\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022216207\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/bootcamp2_1698089179.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/bootcamp2_1698089179_big.png\u0022}}"};

Boot Camp Ultimate Obstacle 70’

from $0.00

Boot+Camp+Ultimate+Obstacle+70%E2%80%99

https://www.aspartyrental.com/rentals/obstacle-course-rentals/boot-camp-ultimate-obstacle-70/

216207

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['2095551'] = {"indoor_outdoor":"","staff":"","electric":"2.00","dimensions":"70\u0027x10\u0027x18","rental_id":"2095551","rental_name":"Freedom Obstacle with Warped Wall","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221247547\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222095551\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/e92afc8f-4379-4ff5-9dfa-91cb529b6ac1_1701810727.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/e92afc8f-4379-4ff5-9dfa-91cb529b6ac1_1701810727_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221247549\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222095551\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/74fc4ee5-7064-42d3-892f-0a2ea1e3ea96_1701810728.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/74fc4ee5-7064-42d3-892f-0a2ea1e3ea96_1701810728_big.png\u0022},\u00222\u0022:{\u0022rentalimage_id\u0022:\u00221247551\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222095551\u0022,\u0022rentalimage_order\u0022:\u00222\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_6548_1700245516_1701810728.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_6548_1700245516_1701810728_big.jpg\u0022},\u00223\u0022:{\u0022rentalimage_id\u0022:\u00221247553\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222095551\u0022,\u0022rentalimage_order\u0022:\u00223\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_6552_1700245516_1701810728.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_6552_1700245516_1701810728_big.jpg\u0022},\u00224\u0022:{\u0022rentalimage_id\u0022:\u00222035699\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222095551\u0022,\u0022rentalimage_order\u0022:\u00224\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Freedom Obstacle w Warped Wall_1753385947.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Freedom Obstacle w Warped Wall_1753385947_big.png\u0022}}"};

Freedom Obstacle with Warped Wall

from $1,200.00

Freedom+Obstacle+with+Warped+Wall

https://www.aspartyrental.com/rentals/obstacle-course-rentals/freedom-obstacle-with-warped-wall-coming-04-2024/

2095551

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['2113973'] = {"indoor_outdoor":"","staff":"","electric":"2.00","dimensions":"47\u0027 L X 11\u0027\u0027 W X 14\u0027 H","rental_id":"2113973","rental_name":"Fun Fair Obstacle","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00222146451\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222113973\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/funfairobs_1760714546.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/funfairobs_1760714546_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00222146453\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222113973\u0022,\u0022rentalimage_order\u0022:\u00222\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/funfair1_1760714586.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/funfair1_1760714586_big.png\u0022},\u00222\u0022:{\u0022rentalimage_id\u0022:\u00221472426\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222113973\u0022,\u0022rentalimage_order\u0022:\u00222\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_2831_1714660846.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_2831_1714660846_big.jpg\u0022}}"};

Fun Fair Obstacle

from $899.00

Fun+Fair+Obstacle

https://www.aspartyrental.com/rentals/obstacle-course-rentals/carnival-obstacle/

2113973

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['216389'] = {"indoor_outdoor":"","staff":"","electric":"4.00","dimensions":"18x22x70","rental_id":"216389","rental_name":"Juggernaut","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221212597\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022216389\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/jugg_1698089854.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/jugg_1698089854_big.jpg\u0022}}"};

Juggernaut

from $0.00

Juggernaut

https://www.aspartyrental.com/rentals/obstacle-course-rentals/juggernaut/

216389

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['2554857'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"45 ft L X 11 ft W X 22 ft Hx","rental_id":"2554857","rental_name":"Kids \u0026 Teens Tiki Obstacle Course Wet \u0026 Dry","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221682003\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222554857\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Tiki Obstacle Slide 1_1732721680.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Tiki Obstacle Slide 1_1732721680_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221682001\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222554857\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Tiki Obstacle Slide 2_1732721680.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Tiki Obstacle Slide 2_1732721680_big.png\u0022},\u00222\u0022:{\u0022rentalimage_id\u0022:\u00221682005\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222554857\u0022,\u0022rentalimage_order\u0022:\u00222\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Tiki Obstacle Slide inside_1732721680.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Tiki Obstacle Slide inside_1732721680_big.png\u0022},\u00223\u0022:{\u0022rentalimage_id\u0022:\u00221682007\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222554857\u0022,\u0022rentalimage_order\u0022:\u00223\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Tiki Obstacle Slide 3_1732721772.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Tiki Obstacle Slide 3_1732721772_big.png\u0022}}"};

Kids & Teens Tiki Obstacle Course Wet & Dry

from $950.00

Kids+%26+Teens+Tiki+Obstacle+Course+Wet+%26+Dry

https://www.aspartyrental.com/rentals/inflatable-rentals-dayton/tiki-obstacle-course-wet-dry/

2554857

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['1110761'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"30 x 11 x 16","rental_id":"1110761","rental_name":"Lava Obstacle (Piece 3)","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221212545\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221110761\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/lava3_1698088608.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/lava3_1698088608_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221212547\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221110761\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/lava3-1_1698088609.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/lava3-1_1698088609_big.jpg\u0022}}"};

Lava Obstacle (Piece 3)

from $450.00

Lava+Obstacle+%28Piece+3%29

https://www.aspartyrental.com/rentals/obstacle-course-rentals/lava-obstacle-piece-3/

1110761

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['1110763'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"30\u2019L x 11\u2019W x 16\u2019H","rental_id":"1110763","rental_name":"Lava Obstacle Course (Piece 5)","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221212551\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221110763\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/lava5_1698088931.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/lava5_1698088931_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u0022413917\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u00221110763\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/lava 5a_687045242.jpeg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/lava 5a_687045242_big.jpeg\u0022}}"};

Lava Obstacle Course (Piece 5)

from $450.00

Lava+Obstacle+Course+%28Piece+5%29

https://www.aspartyrental.com/rentals/obstacle-course-rentals/lava-obstacle-course-piece-5/

1110763

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['1110767'] = {"indoor_outdoor":"","staff":"","electric":"2.00","dimensions":"30 x 11 x 16","rental_id":"1110767","rental_name":"Lava Obstacle Course (Piece 6)","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221212553\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221110767\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/lava6_1698088986.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/lava6_1698088986_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221212555\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221110767\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/lava6-1_1698088986.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/lava6-1_1698088986_big.jpg\u0022}}"};

Lava Obstacle Course (Piece 6)

from $450.00

Lava+Obstacle+Course+%28Piece+6%29

https://www.aspartyrental.com/rentals/obstacle-course-rentals/lava-obstacle-course-piece-6/

1110767

Limited

Dropdown

1

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['1110759'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"-24x13x9h","rental_id":"1110759","rental_name":"Lava Obstacle U Turn (Piece 4)","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221212549\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221110759\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/lava4_1698088648.gif\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/lava4_1698088648_big.gif\u0022}}"};

Lava Obstacle U Turn (Piece 4)

from $450.00

Lava+Obstacle+U+Turn+%28Piece+4%29

https://www.aspartyrental.com/rentals/obstacle-course-rentals/lava-obstacle-u-turn-piece-4/

1110759

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['439045'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"","rental_id":"439045","rental_name":"Radical Run A","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u002299955\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022439045\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/Ultrasound\/images\/Radical Run (1)_277538.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/Ultrasound\/images\/Radical Run (1)_277538_big.jpg\u0022}}"};

Radical Run A

from $450.00

Radical+Run+A

https://www.aspartyrental.com/rentals/obstacle-course-rentals/radical-run-a/

439045

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['439047'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"11x10x30","rental_id":"439047","rental_name":"Radical Run B","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u002299957\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022439047\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/Ultrasound\/images\/Radical Run (3)_482616.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/Ultrasound\/images\/Radical Run (3)_482616_big.jpg\u0022}}"};

Radical Run B

from $400.00

Radical+Run+B

https://www.aspartyrental.com/rentals/obstacle-course-rentals/radical-run-b/

439047

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['439049'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"13x16x30","rental_id":"439049","rental_name":"Radical Run C - Climb and Slide Obstacle","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u002299959\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022439049\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/Ultrasound\/images\/Radical Run (2)_303696.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/Ultrasound\/images\/Radical Run (2)_303696_big.jpg\u0022}}"};

Radical Run C – Climb and Slide Obstacle

from $400.00

Radical+Run+C+-+Climb+and+Slide+Obstacle

https://www.aspartyrental.com/rentals/obstacle-course-rentals/radical-run-c-climb-and-slide-obstacle/

439049

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['366360'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"29x16x15","rental_id":"366360","rental_name":"Radical Run Jr. Obstacle Course","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221212485\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022366360\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/radrun_oc_r_front_1__1_1698084879.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/radrun_oc_r_front_1__1_1698084879_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221212487\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022366360\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/7c181de8392115629cb38e396a34d33a_1698084879.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/7c181de8392115629cb38e396a34d33a_1698084879_big.jpg\u0022},\u00222\u0022:{\u0022rentalimage_id\u0022:\u00221212489\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022366360\u0022,\u0022rentalimage_order\u0022:\u00222\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/radrun_oc_r_inside_1__1_1698084879.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/radrun_oc_r_inside_1__1_1698084879_big.png\u0022},\u00223\u0022:{\u0022rentalimage_id\u0022:\u00221571227\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022366360\u0022,\u0022rentalimage_order\u0022:\u00223\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/RadicalRunI_1722356275.jpeg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/RadicalRunI_1722356275_big.jpeg\u0022}}"};

Radical Run Jr. Obstacle Course

from $675.00

Radical+Run+Jr.+Obstacle+Course

https://www.aspartyrental.com/rentals/obstacle-course-rentals/radical-run-jr/

366360

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['2424013'] = {"indoor_outdoor":"","staff":"","electric":"2.00","dimensions":"48Lx12wx15h","rental_id":"2424013","rental_name":"Spooky Fun Zone Obstacle","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00222146459\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222424013\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/eeb966f0-4cd6-475c-b8b7-9f9597f2d36e_1760715102.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/eeb966f0-4cd6-475c-b8b7-9f9597f2d36e_1760715102_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00222146455\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222424013\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/spookyobs_1760715102.jpeg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/spookyobs_1760715102_big.jpeg\u0022},\u00222\u0022:{\u0022rentalimage_id\u0022:\u00222146457\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222424013\u0022,\u0022rentalimage_order\u0022:\u00222\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/spookyobs1_1760715102.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/spookyobs1_1760715102_big.jpg\u0022}}"};

Spooky Fun Zone Obstacle

from $1,200.00

Spooky+Fun+Zone+Obstacle

https://www.aspartyrental.com/rentals/obstacle-course-rentals/spooky-fun-zone-obstacle-mid-september-arrival/

2424013

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['2113975'] = {"indoor_outdoor":"","staff":"","electric":"4.00","dimensions":"32x32x22","rental_id":"2113975","rental_name":"Thunder Mountain","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221315477\u0022,\u0022rentalimage_createtime\u0022:\u00221706885599\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221706885599\u0022,\u0022rentalimage_itemid\u0022:\u00222113975\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/inflatablerockwall (1)_1705006255.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/inflatablerockwall (1)_1705006255_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221571211\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222113975\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Thunder Mountain 2_1722356053.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Thunder Mountain 2_1722356053_big.jpg\u0022},\u00222\u0022:{\u0022rentalimage_id\u0022:\u00221571213\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222113975\u0022,\u0022rentalimage_order\u0022:\u00222\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Thunder Mountain_1722356054.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Thunder Mountain_1722356054_big.jpg\u0022}}"};

Thunder Mountain

from $1,800.00

Thunder+Mountain

https://www.aspartyrental.com/rentals/inflatable-rentals-dayton/thunder-mountain/

2113975

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['273995'] = {"indoor_outdoor":"","staff":"","electric":"4.00","dimensions":"80 x 16 x 14","rental_id":"273995","rental_name":"Toxic Drop Obstacle Course (80\u0027)","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221212505\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022273995\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/ToxicDrop_1698085976.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/ToxicDrop_1698085976_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221212507\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022273995\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Product-Image-940x450-Toxic-DROP-Multiple_Pics-600x287_1698085977.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Product-Image-940x450-Toxic-DROP-Multiple_Pics-600x287_1698085977_big.jpg\u0022},\u00222\u0022:{\u0022rentalimage_id\u0022:\u00221212509\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022273995\u0022,\u0022rentalimage_order\u0022:\u00222\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/e56af9dda94ae7a42806efc855b79931_1698085977.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/e56af9dda94ae7a42806efc855b79931_1698085977_big.png\u0022}}"};

Toxic Drop Obstacle Course (80′)

from $0.00

Toxic+Drop+Obstacle+Course+%2880%27%29

https://www.aspartyrental.com/rentals/obstacle-course-rentals/toxic-drop-obstacle-course-80/

273995

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['555061'] = {"indoor_outdoor":"","staff":"","electric":"2.00","dimensions":"30\u0027L x16\u0027W x15\u0027H","rental_id":"555061","rental_name":"Toxic Radical Obstacle Course","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221212521\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022555061\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Radical_Run_-_Front - Edited_1698086557.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Radical_Run_-_Front - Edited_1698086557_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221212523\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022555061\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/58_Venom_3_1698086557.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/58_Venom_3_1698086557_big.jpg\u0022},\u00222\u0022:{\u0022rentalimage_id\u0022:\u00222035713\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022555061\u0022,\u0022rentalimage_order\u0022:\u00222\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Toxic Radical Obstacle_1753386079.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Toxic Radical Obstacle_1753386079_big.png\u0022}}"};

Toxic Radical Obstacle Course

from $725.00

Toxic+Radical+Obstacle+Course

https://www.aspartyrental.com/rentals/obstacle-course-rentals/toxic-radical-obstacle-course/

555061

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['836807'] = {"indoor_outdoor":"","staff":"","electric":"2.00","dimensions":"40x11x11","rental_id":"836807","rental_name":"Toxic Rampage Obstacle Course","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221212525\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022836807\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/rampageasparty_1698086715.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/rampageasparty_1698086715_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221212527\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022836807\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/rampageasparty1_1698086715.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/rampageasparty1_1698086715_big.png\u0022},\u00222\u0022:{\u0022rentalimage_id\u0022:\u00221212529\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022836807\u0022,\u0022rentalimage_order\u0022:\u00222\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/rampageasparty2_1698086716.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/rampageasparty2_1698086716_big.png\u0022},\u00223\u0022:{\u0022rentalimage_id\u0022:\u00221571209\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022836807\u0022,\u0022rentalimage_order\u0022:\u00223\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Toxic Rampage_1722356003.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Toxic Rampage_1722356003_big.jpg\u0022}}"};

Toxic Rampage Obstacle Course

from $700.00

Toxic+Rampage+Obstacle+Course

https://www.aspartyrental.com/rentals/obstacle-course-rentals/toxic-rampage-obstacle-course/

836807

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['392747'] = {"indoor_outdoor":"","staff":"","electric":"2.00","dimensions":"49x11x14","rental_id":"392747","rental_name":"Warriors Radical Ninja Jump","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00222146461\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022392747\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/warriors radical ninja_1760715312.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/warriors radical ninja_1760715312_big.jpg\u0022}}"};

Warriors Radical Ninja Jump

from $495.00

Warriors+Radical+Ninja+Jump

https://www.aspartyrental.com/rentals/obstacle-course-rentals/warriors-radical-ninja-jump/

392747

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['439439'] = {"indoor_outdoor":"","staff":"","electric":"5.00","dimensions":"58x25x21","rental_id":"439439","rental_name":"Wild One Roller Coaster Obstacle Course","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00222146463\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022439439\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/wildone_1760715455.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/wildone_1760715455_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00222146465\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022439439\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/WildOne_1760715455.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/WildOne_1760715455_big.jpg\u0022},\u00222\u0022:{\u0022rentalimage_id\u0022:\u00222146467\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022439439\u0022,\u0022rentalimage_order\u0022:\u00222\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/WildOne1_1760715455.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/WildOne1_1760715455_big.jpg\u0022}}"};

Wild One Roller Coaster Obstacle Course

from $1,600.00

Wild+One+Roller+Coaster+Obstacle+Course

https://www.aspartyrental.com/rentals/obstacle-course-rentals/wild-one-roller-coaster-obstacle-course/

439439

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();
}
});
});

Obstacle Course Rentals in Dayton

A&S Party Rental is Dayton’s Largest Party Rental Store and offers many different types of fun Obstacle Course Rentals. If you are looking for something larger and more challenging than just a Bounce House rental or one of our Inflatable Combo Units for your next Corporate, School, or Personal event you have come to the right place! Our largest Inflatable Party Rental Items are our inflatable obstacle course rentals. The inflatable obstacle course rentals are also great for college events, after prom rentals, and graduation parties. Our inflatable obstacle course rentals can run over 165 feet long! We offer over 10 different models and sizes of inflatable Obstacle Course Rentals for our customers. We offer Inflatable Obstacle Courses suitable for all ages and for any type of event that you may be having. 

Want to challenge your employees at a corporate picnic? Try our Boot Camp Obstacle Challenge! Or maybe you are looking for something for your child’s next birthday party? Check out our Backyard Obstacle Challenge or our Radical Run Jr. Inflatable Obstacle Course! Call one of our Event Planning Specialists today to receive more information on our inflatable obstacle course rentals and find the perfect match for your next event.

  • School Events
  • Opening Ceremonies
  • Sports Events
  • Carnivals
  • After Proms
  • Company Picnics
  • Holiday Parties
  • Festivals
  • City Events
  • Birthday Parties

Check out our YouTube Channel, Facebook , Pinterest & TikTok

Want to know what our customers think of us and our obstacle course rentals? Check out our reviews here.

Google Reviews  or Facebook Reviews