X

5'x10' Stealth Trailers Enclosed Cargo 5x10 72"

2025 Stealth 5x10 Enclosed Trailer 

Standard Trailer Features and Upgrades

* 72" Interior Heigh
* 68" Rear Door Opening
* Color - White
* 24" Slant Wedge
* .030 Exterior Metal
* 3500# Spring Axle
  • 2×3 Aluminum Tube Main Rails 
    .030 Screwless Exterior Aluminum
  • 16″ O/C Floor Tube Crossmembers ATP Fenders
  • 16″ O/C Tube Wall Studs 24″ Slanted Embossed Stoneguard 
  • 24″ O/C Tube Roof Bows 24″ Slant Wedge on 5-6w Models
  • 48″ Tongue Length on 5w & 6w 
  • Triple Tube A-frame 3/8″ Drymax Walls
  • 2,000# Drop Leg Jack Plastic Corner Blocks on Top Trim
  • Spring Axle w/4″ Drop No Side Door on 4 & 5 Wide Model

  • 3500# Axles w/ST205/75R15 Tires Aluminum Door Holdback
  •  (4) 5000# Recessed D-Rings on 8.5×14 and above
  • 2″ Coupler on SA
    12V LED Dome Lights w/Switch (1 on 5 wide models)
  • 4-Way Electrical Plug on SA LED Strip Tailights
  • Frame for Roof Vent Limited 3 Year Structural Warranty
5'x10' Stealth Trailers Enclosed Cargo 5x10 72"
Price: $6,160 On Sale! $5,099
White - Enclosed Cargo
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: 102948
VIN: 53LBE1011SE102948
Condition: New
Year: 2025
Manufacturer: Stealth Trailers
Model: 5x10
Length: 10'
Width: 5'
Height: 72"
GVWR (lbs): 2,990
Weight (lbs): 850
Payload (lbs): 2,140
Features: Ramp Gate, Rock Shield, Screwless Exterior

Other Recommendations

// Function to set a cookie on the Message Box function setCookie(name, value, days) { const date = new Date(); date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000)); document.cookie = `${name}=${value}; expires=${date.toUTCString()}; path=/`; } // Function to get a cookie function getCookie(name) { const cookies = document.cookie.split('; '); for (let cookie of cookies) { const [key, value] = cookie.split('='); if (key === name) return value; } return null; } // Check if the cookie exists and hide the message box if it does document.addEventListener('DOMContentLoaded', () => { const messageBox = document.querySelector('.message-box'); const closeButton = document.querySelector('.mb-close'); if (getCookie('hideMessageBox')) { messageBox.style.display = 'none'; } // Set a cookie when the close button is clicked and hide the message box closeButton.addEventListener('click', () => { setCookie('hideMessageBox', 'true', 7); // Cookie expires in 7 days messageBox.style.display = 'none'; }); });