X

7'x20' Timpte Car Racing 720

2026 Timpte 7x20 Car Hauler Equipment Trailer 

OVERVIEW7000 GVW Trailers

Do you need space to haul medium-sized equipment? Our 7,000 GVW trailer models have you covered. These trailers are designed specifically for hauling sports cars, eliminating the need for ramps, and offering a wide variety of additional options to protect cargo.

SPECS

MODEL TYPE 720

OVERALL WIDTH 102 IN.

OVERALL LENGTH 25 FT. 1 IN.

TONGUE LENGTH 61 IN.

DECK HEIGHT 18 IN.

GROUND CLEARANCE 11 IN.

LOADING ANGLE 4°

DECK/FRAME MATERIAL ALUMINUM (EXTRUDED)

FRAME CONSTRUCTION A-FRAME

C-CHANNEL SIZE 6 IN.

WHEEL SIZE 14 IN.

WHEEL BOLT PATTERN 5 -- 4.5

TIRE SIZE ST205/75R14

TIRE LOAD RANGE D

TIRE LOAD RATING 2,040 LBS

FENDER FIXED

AXLE ROTATING TORSION

BRAKES ELECTRIC

COUPLER 2 5/16 IN

COUPLER POSITION FIXED

JACK STYLE SIDE CRANK

JACK RATING 2,000 LBS

LIGHTING LED

D-RING TIE-DOWNS FOUR

7'x20' Timpte Car Racing 720
Price: $15,650 On Sale! $14,000
Silver - Car Racing/Equipment
Location
Watertown
N2047 Sawmill Rd
Watertown, WI 53098
(920) 390-2258
Get a Quote
Specs
Stock Number: 003142
VIN: 1TDU2252XTE003142
Condition: New
Year: 2026
Manufacturer: Timpte
Model: 720
Length: 20'
Width: 7'
Height:
GVWR (lbs): 7,000
Weight (lbs): 2,140
Payload (lbs): 4,860
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'; }); });