X

6'x8' Polar King Mobile Refrigerated/Freezer PKM68

2025 Polar King 6x8 Refrigerated/Freezer Trailer 

6x8 REFRIGERATED TRAILER

The PKM68 is the compact solution for your mobile refrigeration needs. Perfect for small businesses and events, this 6' x 8' refrigerated trailer offers a robust capacity of 2,900 lbs., making it an ideal choice for transporting perishable goods with ease. The PKM68 provides efficiency and ease of transport, ensuring that you can move your products without hassle, wherever your business takes you.

  • Temperature Range: -10°F to 50°F

  • Dimensions: 6' x 8'

  • GVWR: 5,000 lbs.

  • Trailer Weight: 2,100 lbs.

  • Capacity: 2,900 lbs.

  • Interior Volume: 268 cu. ft.

  • Elec. Supply: 110v 15 amp Single Phase

6'x8' Polar King Mobile Refrigerated/Freezer PKM68
Our Price! $32,350
White - Refrigerated/Freezer
Location
Watertown
N2047 Sawmill Rd
Watertown, WI 53098
(920) 390-2258
Get a Quote
Specs
Stock Number: 190558
VIN: 1P9RD0812SF190558
Condition: New
Year: 2025
Manufacturer: Polar King Mobile
Model: PKM68
Length: 8'
Width: 6'
Height:
GVWR (lbs): 5,000
Weight (lbs): 2,100
Payload (lbs): 2,900
Features:

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