X

American LandMaster AMP 4X4 UTV

x American LandMaster AMP 4X4 UTV

  
Keyed on/off
48V 160AH Lithium-Ion
Converter / 40 amps
Direct drive
Model 24 Schafer
Cable Activated Rear Locking
4wd (Switch engaged on demand, 4 wheel drive)
Double A-arms, adjustable coil over shock with up to 8" travel
Independent trailing arm, with radius rod, adjustable camber & tow control, dual-rate coil over shock with up to 8" of travel
4 wheel disc, hydraulic brake / hand-operated parking brake
TIRES 25” Standard HD DOT / Radial 8 Ply Tires on 12” Aluminum Black
DIMENSIONS 110” L x 58” W x 76” H (110” L with poly bed)**
GVWR 2,220 lbs.
“Poly Bed” with stake pockets
BED DIMENSIONS 35.25” L x 41.5” W x 11” D
BED CAPACITY Poly - 9 cu.ft. / 500 lbs
TOWING CAPACITY 1,500 lbs.
PAYLOAD 900 lbs.
WARRANTY 1 year motor / all other 1 year limited, 5 year Lithium battery
CURB WEIGHT 1,350 lbs.
ACCESSORIES:
FRONT MOUNTED UTITLY RACK
20" WHITE LED FRONT BAR LIGHT
ARMORY RACK KIT
3000lbs WINCH AND 12V BATTERY KIT

American LandMaster AMP 4X4 UTV
Our Price! $19,500
Green - UTV
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: 400367
VIN: A4PUTKZZ0SB400367
Condition: New
Year: 2025
Manufacturer: American LandMaster
Model: AMP 4X4
Length:
Width:
Height:
GVWR (lbs): 2,225
Weight (lbs): 0
Payload (lbs): 0
Features: Winch Package

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