X

6.5'x14' Big Tex Trailers Utility 35SA-14

#### SINGLE AXLE UTILITY TRAILER

At a generous 77" wide, the 35SA Single Axle Utility Trailer from Big Tex is ideal for home and garden tasks and can even accommodate many side-by-side models.

#### SPECS

AXLE 3,500# EZ Lube Axle w/ Brake Flanges

JACK 2,000# Wind, Set-Back Jack

TIRES T205/75R-15 Load Range C

FLOOR 2" Treated Pine or Douglas Fir*

FRAME 3" x 2" x 3/16" Angle

WHEEL 15" x 5; Black Mod, 5 on 5 Bolt Pattern

FINISH Superior Quality Finish is Applied for a Highly Decorative and Protective Finish

LIGHTS L.E.D. D.O.T.

TONGUE 3" Channel

COUPLER 2" A-Frame

FENDERS 9" x 32" Rolled Formed w/ Back

G.V.W.R. 2,995#

RAIL 2" x 2" Square Tubing

UPRIGHTS 15" Tall Angle, 2" Angle

ELEC. PLUG 4-Way Flat w/ Loom

HITCH TYPE Bumper Pull

SUSPENSION Multi-Leaf Spring

CROSSMEMBERS 3" x 2" x 3/16" Angle

FINISH (Prep) Steel is Cleaned to Ensure a Professional, Smooth Finish

SAFETY CHAINS 1/4" Grd. 30 w/ Safety Latch Hook (2 ea)

G.A.W.R. (Ea. Axle) 2,995#
6.5'x14' Big Tex Trailers Utility 35SA-14
Our Price! $3,000
Black - Utility
Location
Watertown
N2047 Sawmill Rd
Watertown, WI 53098
(920) 390-2258
Get a Quote
Specs
Stock Number: 363753
VIN: 16V1U1714S7363753
Condition: New
Year: 2025
Manufacturer: Big Tex Trailers
Model: 35SA-14
Length: 14'
Width: 6.5'
Height:
GVWR (lbs): 2,995
Weight (lbs): 1,168
Payload (lbs): 1,827
Features: Ramp Gate, Spare Mount

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