X

6'x8' Polar King Mobile Refrigerated/Freezer PKM68

2022 Polar King 6x8 Refrigerated/Freezer Trailer PKM68

Dimensions 6' x 8'

Storage Space 268 ft

Payload 3000 lbs.

E-Track Ready

Product Specifications

All of our refrigerated trailers feature a one piece, seamless fiberglass construction. They are built to last and ready to operate.

 Refrigeration Unit

GOVI Arktik 2000US

 Temperature Range 0F to 50F

Construction
4" thick (R-28) roof and walls
3/4" Keg Duty Floor
54" x 70" Door
2 5/16" Coupler
E-Track Ready
Interior Antimicrobial Gel Coating
110v 15 amp Single Phase
6'x8' Polar King Mobile Refrigerated/Freezer PKM68
Price: $30,000 On Sale! $26,000
White - Refrigerated/Freezer
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: 190967
VIN: 1P9RD0812NF190967
Condition: Used
Year: 2022
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'; }); });