X

8.5'x16' Stealth Trailers Enclosed Cargo TY 8x16 78"

2025 Stealth 8.6x16 Enclosed Trailer 


* 2x6 Aluminum Tube Main Rails
* .030 Screwless Exterior Aluminum
* Pair Plastic Flo-Thru Vents
* Seamless Aluminum Flat Top Roof
* 3" Flat Bottom Trim
* 3" Flat Top Trim
* Plastic Corner Blocks on Top Trim
* ATP Fenders
* Frame for Roof Vent
* Triple Tube A-frame
* 16" O/C Floor Tube Crossmembers
* 16" O/C Tube Wall Studs
* 24" O/C Tube Roof Bows
* 24" Slanted Embossed Stoneguard
* 36" Slant Wedge on 8.5w Models
* 60" Tongue Length on 8.5w
* 3/4" Drymax Floor
* 3/8" Drymax Walls
* 2,000# Drop Leg Jack
* 48W x 78H Side Door w/Barlock on 8.5 Wide Models
* Aluminum Door Holdback
* Stainless Steel Door Hardware
* Ramp Door w/Flap & Spring Assist
* Aluminum Star Radial Tires & Wheels w/SS Center Caps
* 5200# Axles w/ST225/75R15 Tires
* Electric Brakes w/7-way Plug
* (4) 5000# Recessed D-Rings
* 2-5/16 Coupler
* LED Marker Lights and LED Strip Tailights
* 12V LED Dome Lights w/Switch
* 7-Way Electrical Plug
* Pre-Wire for Backup Camera
* DOT/CSA Approved Safety Equipment
* Limited 3 Year Structural Warranty

8.5'x16' Stealth Trailers Enclosed Cargo TY 8x16 78"
Price: $13,230 On Sale! $11,999
Black - Enclosed Cargo
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: 104654
VIN: 52LBE1625SE104654
Condition: New
Year: 2025
Manufacturer: Stealth Trailers
Model: TY 8x16
Length: 16'
Width: 8.5'
Height: 78"
GVWR (lbs): 7,000
Weight (lbs): 2,989
Payload (lbs): 4,011
Features: Barn Doors, BLACK OUT PKG, Rock Shield, Screwless Exterior, 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'; }); });