X

8.5'x28' RC Trailers Car Racing

2025 RC Trailers 8.5x28 Enclosed Car Hauler/Racing Trailer

#### Standard Trailer Features and Upgrades

* 87" Interior Height
* 83" Rear Door Opening
* 6000# Torsion Brake Axle
* Spread Axle
* ST235/80516 Radial Tires
* 2-5/16" Adjustable/Removable Coupler
* 3rd Member Tongue
* 12" Extended tongue
* 16" On Center Walls, Roof, and Floor
* Heavy Wall Tube Main Frame
* Beavertail Ramp
* 8" Rear Spoiler
* D-Rings in Each Corner
* 3/4" Engineered Wood Flooring
* Side wall Carpeting Black
* Round Dot Rubber Flooring
* 3/8" Plywood Walls
* LED Strip Tail/Brake Lights
* 12V Wall Switch
* LED Bullet Clearance Lights
* LED 600 Diode Interior Exterior Flood Light
* LED 12" C-Brite Interior/Exterior Light Package
* Basic Stereo Package
* 7 Way Electrical Plug
* Polycore Screwless Exterior
* Color - charcoal
* ATP Stone Guard
* 20ft Power Awning 8' Deep
* Blackout Trim Package
* 1-Piece Aluminum Roof
* Roof Vent
* Max Air Vent Cooler
* 48" Double Door
* Beavertail Ramp Door
* 36" Aluminum Ramp Flap
* 110V to 12V
* 50Amp Services
* 110V GFI Exterior Recept
* L Base Cabinet with overhead Cabinets
8.5'x28' RC Trailers Car Racing
Price: $36,670 On Sale! $31,999
Charcoal - Car Racing/Enclosed Cargo
Location
Watertown
N2047 Sawmill Rd
Watertown, WI 53098
(920) 390-2258
Get a Quote
Specs
Stock Number: 678965
VIN: 56VBE2824SM678965
Condition: New
Year: 2025
Manufacturer: RC Trailers
Model:
Length: 28'
Width: 8.5'
Height:
GVWR (lbs): 12,000
Weight (lbs): 5,652
Payload (lbs): 6,348
Features: BLACK OUT PKG, Finished Interior, Ramp Gate, Rear Spoiler w/ Load Lights, Rock Shield, Rubber Floor, Screwless Exterior, Side Door, Upper Cabinet

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