X

8.5x20+4 Timpte Deckover/Gooseneck 1620GNDOHD

2026 Timpte 8.5x20 Deckover Gooseneck (8.5x20+4) 

1620 GN DO HD

Overall Width 102”

Overall Length 28’ 32’

Payload Capacity 12,540 lbs

Ramp Length Approx. 4’ 

Tongue Length 96” 

Deck Height 35” 

Loading Angle 14° 

Overall Deck Length 20’

Dovetail Length 60” 

Wheel Size 16” 

Tires ST235/80R16G - 14 ply 

Number of Lug Bolts 8 per wheel (32) 

Axle 8K Fixed

Suspension Rubber Torsion 

Brakes Electric Self-Adjusting 

Coupler 2-5/16”

Coupler Position Adjustable

Jack Style Dual 12K Jacks 

Jack Rating 12,000 lbs. each

(24,000 lbs. total)

Stake Pockets 12 per side (24 total) 

Lighting LED

8.5x20+4 Timpte Deckover/Gooseneck 1620GNDOHD
Price: $20,300 On Sale! $19,999
Silver - Deckover/Gooseneck
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: 003325
VIN: 1TDU32826TE003325
Condition: New
Year: 2026
Manufacturer: Timpte
Model: 1620GNDOHD
Length: 20'
Width: 8.5'
Height:
GVWR (lbs): 16,000
Weight (lbs): 3,540
Payload (lbs): 12,460
Features: Dovetail, Spare Mount, Spare Tire, Stabilizer Jacks, 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'; }); });