X

7'x20' Timpte Utility 1020R3TSEZ

2026 Timpte 7x20 Utility Tilt Trailer 

1020 

Overall Width 102” 

Overall Length 24’ 6” 

Payload Capacity 7,580 lbs.

Tongue Length 61” 

Deck Height 24” 

Distance between Fenders 85-1/4” 

Loading Angle <4° 

Wheel Size 15” 

Tire Size ST225/75R15E - 10 ply 

Number of Lug Bolts 6 per wheel (24) 

Axle/Suspension Torsion

Brakes Electric Self-Adjusting 

Coupler 2-5/16”

Coupler Position Adjustable

Jack Style Side Crank

Jack Rating 2,000 lbs.

Tie-Downs Standard with (4) movable D-Rings

and an integrated L-Track on the

front and on both sides of the deck.

Stake Pockets 4

Lighting LED

7'x20' Timpte Utility 1020R3TSEZ
Price: $18,200 On Sale! $17,999
Silver - Utility/Car Racing
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: 003038
VIN: 1TDU22522TB003038
Condition: New
Year: 2026
Manufacturer: Timpte
Model: 1020R3TSEZ
Length: 20'
Width: 7'
Height:
GVWR (lbs): 10,000
Weight (lbs): 2,420
Payload (lbs): 7,580
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'; }); });