X

8.5'x28' Midsota Equipment/Tilt NTBWB28-BP-176

2025 Midsota 8.5x28 Equipment Tilt 

GVWR (lbs)

17600 lbs

GAWR (lbs/axle)

8000 lbs/axle

Curb Weight

5160 lbs

Payload

12440 lbs

Width

102

Length

33

Overall Length

394

Deck Height

28

Coupler Height

11.5 - 19.5

Height Coupler

11.5 - 19.5

Height Deck

28

Width Between Fender

82

Load Angle

12

Type

OPEN

Axle

(2) 8000 lb. Slipper Spring Brake

Breakaway

Battery, Switch, and Lanyard

Connector Plug

Round 7-pin Cold Weather (-85)

Coupler

2 5/16" Adjustable Channel Mount, Demco EZ Latch

Crossmembers

3" Steel Channel, 16" On-Center

Decking

2" Pressure Treated Pine

Exterior Finish

Industrial Grade Polymer Finish

Exterior Lights

Full LED, DOT Compliant

Fenders

Square Rolled Steel Tread Plate

Frame

8" x 3" Steel Tube

Hydraulic Components

Hydraulic Lock

Tie Downs

Stake Pockets and Rub Rail

Tires

215/75R17.5J 18-PR

Tongue Jack

12K Drop Leg, Set-Back

Wiring

No Exposed Wiring

8.5'x28' Midsota Equipment/Tilt NTBWB28-BP-176
Price: $16,777 On Sale! $15,999
Black - Equipment/Tilt
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: 121997
VIN: 5JWBT3323SA121997
Condition: New
Year: 2025
Manufacturer: Midsota
Model: NTBWB28-BP-176
Length: 28'
Width: 8.5'
Height:
GVWR (lbs): 17,600
Weight (lbs): 5,160
Payload (lbs): 12,440
Features: 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'; }); });