X

6.5'x12' Big Tex Trailers Utility 35SA-12

2026 Big Tex 7x12 Utility Trailer (6.5x12)

35SA-12

Axles

3,500# Premium, Cambered Axle with Quick-Lubricating Hubs

Brakes

Brake Flanges for Easy Brake Addition

Suspension

Multi-Leaf Slipper Spring

Coupler

2" A-Frame

Safety Chains

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

Jack

2,000# Top Wind, Set-Back Jack with Removable Sand Foot

Frame

3" x 2" x 3/16" Angle

Cross-Members

3” x 2” x 3/16” Angle

Floor

Treated Pine Floor

Fenders

9" x 32" Rolled Formed w/ Back

Ramps

4' Tall 3-Way Ramp Gate w/ Coil Spring Assist

Stake Pockets


Trailer Plug

4-Way Flat w/ Loom

Lights

L.E.D. D.O.T. Stop, Tail, Turn & Clearance

Wiring

Grommet-Mounted Lifetime L.E.D. Lighting

Tires

ST205/75R-15 Load Range C

Bolt Pattern

5 Bolt

Spare Mount

Side Spare Tire Mount

Paint Type

Professional Finish w/ Primer Standard

Paint Color

Black

Sides

17" Tall Open sides with 2” Angle uprights and 2" x 2" Square Tubing Top Rail

6.5'x12' Big Tex Trailers Utility 35SA-12
Our Price! $2,520
Black - Utility
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: 441991
VIN: 16V1U1510T3441991
Condition: New
Year: 2026
Manufacturer: Big Tex Trailers
Model: 35SA-12
Length: 12'
Width: 6.5'
Height:
GVWR (lbs): 2,995
Weight (lbs): 1,078
Payload (lbs): 1,917
Features: 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'; }); });