X

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

2025 Stealth 6x10 Enclosed Trailer

 Standard Trailer Features and Upgrades

* 72" Interior Height
* 68" Rear Door Opening
* Color - Black
* 24" Slant Front Wedge
* Double Rear Doors
  • Aluminum Star Radial Tires & Wheels w/SS Center Caps 32W x 68H Side Door w/Barlock 
  • SA/TA Models include 3500# Axles w/ST205/75R15 Tires Aluminum Door Holdback
  • 2″ Coupler on SA (2) 12V LED Dome Lights w/Switch 
  • 4-Way Electrical Plug on SA LED Strip Tailights
  • Frame for Roof Vent Limited 3 Year Structural Warranty

  • 2×3 Aluminum Tube Main Rails on 4w, 5w SA & 6w SA .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 
  • Triple Tube A-frame 3/8″ Drymax Walls
  • 2,000# Drop Leg Jack Plastic Corner Blocks on Top Trim
6'x10' Stealth Trailers Enclosed Cargo 6x10 72"
Price: $5,100 On Sale! $4,599
Black - Enclosed Cargo
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: 103416
VIN: 52LBE1016SE103416
Condition: New
Year: 2025
Manufacturer: Stealth Trailers
Model: 6x10
Length: 10'
Width: 6'
Height: 72"
GVWR (lbs): 2,990
Weight (lbs): 1,075
Payload (lbs): 1,915
Features: Barn Doors, Rock Shield, Side Door

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