X

Arctic Cat 700VLX ATV

x Arctic Cat 700VLX ATV

Engine
Engine
Standard
Engine Type
Single-Cylinder
Cylinders
1
Engine Stroke
4-Stroke
Cooling
Liquid / Air
Valves
4
Valves Per Cylinder
4
Valve Configuration
SOHC
Starter
Electric
Fuel Type
Gas
Fuel Requirements
Regular
Carburetion
Standard
Fuel Injector
Yes
Carburetor
No
Carburetion Type
Fuel Injected
Bore (mm/in)
102 / 4.02
Stroke (in/mm)
3.35 / 85
Displacement (cc/ci)
695 / 42.4
Transmission
Transmission
Standard
Transmission Brand
Duramatic™
Transmission Type
Continuously Variable (CVT)
Hi / Low Range
Yes
Reverse
Yes
Primary Drive (Front Wheel/Rear Wheel)
Shaft / Shaft
Drive line
Driveline Type
Selectable 4X2 / 4X4
Number Of Driveline Modes
2
Rear Unlocking Differential
No
Rear Solid Axle
No
Technical specifications
Dimensions
Standard
Weight
Standard
Capacities
Standard
Performance
Standard
Length (in/mm)
84.8 / 2154
Width (in/mm)
47.5 / 1207
Height (in/mm)
48 / 1219
Wheelbase (in/mm)
50 / 1270
Ground Clearance (in/mm)
11 / 279
Dry Weight (lbs/kg)
670 / 303
Towing Capacity (lbs/kgs)
1050 / 476.3
Fuel Capacity (gal/l)
5.7 / 21.6
Engine Displacement to Weight (cc)
1.04
Steering
Steering Control
Handlebar
Steering Type
Manual
Suspension
Front Suspension Type
Independent Double A-Arm
Front Adjustable Fork Pre-Load
Yes
Front Adjustable Rebound Damping
No
Front Central Suspension Strut
No
Front Stabilizer Bar
No
Steering Damper
No
Rear Suspension Type
Independent Double A-Arm
Rear Adjustable Shock / Spring Pre-Load
Yes
Rear Adjustable Rebound Damping
No
Number Rear Shock Absorbers
2
Air Adjustable
No
Front Travel (in/mm)
10 / 254
Rear Travel (in/mm)
10 / 254
Arctic Cat 700VLX ATV
Price: $4,200 On Sale! $3,799
Green - ATV
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: 206410
VIN: 4UF17ATV6HT206410
Condition: Used
Year: 2017
Manufacturer: Arctic Cat
Model: 700VLX
Length:
Width:
Height:
GVWR (lbs): 1
Weight (lbs): 0
Payload (lbs): 0
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'; }); });