X

6.5'x14' High Country Utility HU6.5x14SLINGSHOT

2023 Alcom High Country 7x14 Utility Trailer (6.5x14) 

Your Slingshot gets you a little closer to life, but finding how to haul it is tough. This trailer isn't.

 FEATURES

All-Aluminum Construction

24" O/C Floor Crossmembers

2"x3" Subframe Tubing

Straight Style Coupler w/ 2" Ball

(2) 5000# Safety Chains

Torsion Axles

Removable Aluminum Fenders

Extruded Aluminum Decking

7' Fold Down Bi-Fold Rear Ramp

(4) HD D-Rings

Beavertail

Front Bumper

Recessed LED Marker Lights

4-Way Flat Power Connection

SPECS

Model Number HU6.5x14SLINGSHOT

Deck WxL 80" x 166"

Overall WxL 102" x 218"

Deck Height 19"

Hitch Height 16"

Axle(s) - Qty/Rating 1-3500#

Wheels 15" Aluminum

Tires 205/75R15

GVWR 2990#

Curb Weight 810#

Payload 2180#

Wheel Jack 1500#

Power Connection 4-Way Flat
6.5'x14' High Country Utility HU6.5x14SLINGSHOT
Price: $7,250 On Sale! $4,999
Silver - Utility
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: 25035
VIN: 5WFBU1413PS025035
Condition: New
Year: 2023
Manufacturer: High Country
Model: HU6.5x14SLINGSHOT
Length: 14'
Width: 6.5'
Height:
GVWR (lbs): 2,990
Weight (lbs): 754
Payload (lbs): 2,236
Features:

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