X

8.5'x24' Midsota Equipment/Tilt NTBWB24-BP-220

2025 Midsota 8.5x24 Equipment Tilt Trailer

102 x 24 TBWB24 22K BP
Brand
Midsota
GVWR (lbs)
22000 lbs
GAWR (lbs/axle)
10000 lbs/axle
Curb Weight
4860 lbs
Payload
17140 lbs
Width
102
Length
24
Type
OPEN
Axle
(2) 10000 lb. Torsion Brake
Breakaway
Battery, Switch, and Lanyard
Connector Plug
Round 7-pin Cold Weather (-85)
Coupler
2-5/16" 4-Bolt Flat Plate
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
ST235/75R17.15J 18-PR
Tongue Jack
12K Drop Leg, Set-Back
Wiring
No Exposed Wiring
A Frame Steel Tool Box

8.5'x24' Midsota Equipment/Tilt NTBWB24-BP-220
Price: $21,800 On Sale! $19,999
Black - Equipment/Tilt/Equipment
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: 124167
VIN: 5JWBT2926TA124167
Condition: New
Year: 2025
Manufacturer: Midsota
Model: NTBWB24-BP-220
Length: 24'
Width: 8.5'
Height:
GVWR (lbs): 22,000
Weight (lbs): 4,860
Payload (lbs): 17,140
Features: Spare Mount, 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'; }); });