X

6'x12' Air Tow Enclosed Cargo E14 94"

2025 Air-Tow 6x12 Enclosed Drop-Deck Trailer 

E-14
Enclosed
Model:Enclosed
GVWR:14,395 lbs.
Capacity:10,000 lbs.
Deck Length:12.3′

The Best Built Drop-Deck Enclosed Trailer On The Market!
The Enclosed Airtow Trailer models are the first of their kind and built on the rugged Airtow 14’ utility trailers and come with a heavy-duty but lightweight enclosure made with galvanized Z-bars and sturdy siding. Even down to the latch mechanism for the doors, we opted to steer away from the cheap/flimsy traditional flaps used on enclosed trailers and went with the cam-lock system like you see on commercial semi-trucks that join the doors together and to the frame at the top, center, and bottom making it a mobile vault for your equipment or cargo.

 

GVWR  14,395 lbs.

Capacity          10,000 lbs.

Weight (varies w/ opt.)           4,395 lbs.

Inside Deck Width       6’3″ (75″)(Door Opening 71″)

Inside Deck Length      12’3″

Deck Material Diamond Steel Plate

Door Height    90″ (Inside Height 94″)

Outside Dovetail Length          18″

Overall Width  102″

Axles    Tandem

Wheels/Tires   16″ – 12 Ply

Brakes (electric-std.)   Electric

Suspension (rubber/air)         Rubber

Lift Mechanism           Hydraulic

Coupler           2 5/16″ Ball

6'x12' Air Tow Enclosed Cargo E14 94"
Price: $33,796 On Sale! $32,999
Black - Enclosed Cargo/Specialty
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: 004014
VIN: 7VADE1921SB004014
Condition: New
Year: 2025
Manufacturer: Air Tow
Model: E14
Length: 12'
Width: 6'
Height: 94"
GVWR (lbs): 14,395
Weight (lbs): 4,395
Payload (lbs): 10,000
Features: Dovetail, Tongue Box

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