X

6'x10' Griffin Dump GT-610

6'x10' Griffin GT-610 Dump



Wheels

Black Powder Coat

Coupler

2-5/16" - Adjustable Coupler

Tires

15" Radial

Power Unit

12v DC Hydraulic Pump - (3200 PSI Pwr Up) (1500 PSI Pwr Down)

Spare Tire Mount

Standard Mount

Battery

Interstate Deep Cycle Marine Battery

Ramps

80" C-Channel Fender Mounted Ramps

Jack

Adjustable 7000lb., Top Wind Drop Leg

Lighting

Amber & Red LED

Control Box w/Key Lock

Easy Front Access

Wiring Harness

3-Piece Plug & Play

Fenders

14ga. Formed Treadplate

Electric Plug

7-Pin Round

Stake Pockets

2" X 4" Tube

Lift System

(2) 3" X 30" Hydraulic Cylinders

Gussets

Front & Rear 2" X 12" Dimension for Wall Extension

Floor & Walls

12ga. Smooth Steel

Safety Chains

(2) Forged Slip Hook - 5/16"x35" 11700lbs. Cap

Integrated Tarp System

Fully Covered Housing

D-Rings

(5) 5000lb. D-Rings Welded Into Floor

Rear Gate

2-Way Combination Spreader / Barn

Axles

Tandem - EZ Lube w/Galvanized Components

Paint Finish

High Gloss Black Powder Coat

Suspension

Equalized Leaf Spring
6'x10' Griffin Dump GT-610
Price: $6,200 On Sale! $5,999
Black - Dump
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: 042727
VIN: 56WBU102XSE042727
Condition: Used
Year: 2025
Manufacturer: Griffin
Model: GT-610
Length: 10'
Width: 6'
Height:
GVWR (lbs): 9,990
Weight (lbs): 2,720
Payload (lbs): 7,270
Features: Full Steel Floor, Side Ramps

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