Fall Protection Harness Complete Set - Full Body Safety Harness with Y-Lanyard Shock Absorber

Fall Protection Harness Complete Set - Full Body Safety Harness with Y-Lanyard & Shock Absorber

Safety Gear
KSh 5,500
ANSI Z359.11 Certified
Nairobi Same-Day Delivery

Complete fall protection harness system engineered for workers operating at height in construction, maintenance, and industrial applications. This full body harness features a comprehensive safety design with multiple attachment points (dorsal, chest, and side D-rings), adjustable straps for universal fit, and padded leg and chest sections for extended wear comfort. The included Y-lanyard with integrated shock absorber reduces fall arrest forces to safe levels (less than 6 kN), minimizing injury risk during fall arrest situations. Meets ANSI Z359.11 and OSHA 1926.502 standards for fall protection equipment.

The quick-connect buckles allow for easy donning and doffing while maintaining secure fit, essential for workers who need to put on and remove harnesses frequently. The universal size range accommodates workers up to 130 kg (287 lbs), while the fully adjustable leg, chest, and shoulder straps ensure a personalized, secure fit for each individual. The breathable polyester webbing and nylon components help prevent heat stress during extended wear in Kenya's warm climate. Wear indicators provide visual cues for safety inspections, helping ensure the harness remains in safe working condition throughout its service life.

Ideal for construction workers on scaffolding, roof maintenance technicians, tower workers, telecom installers, window cleaners, confined space entry personnel, and any application where fall protection is required by OSHA regulations. The complete set includes a durable carrying bag for easy transport and storage between jobsites. At BuildMate.co.ke, we supply genuine, certified safety equipment with technical guidance, fast delivery, and after-sales support. Trust the Fall Protection Harness Complete Set for your work-at-height safety needs - backed by ANSI certification and quality warranty.

Technical Specifications

Harness Type Full Body Fall Arrest System
Lanyard Configuration Y-Type Double Leg with Shock Absorber
Attachment Points Dorsal (Back), Chest (Front), and Side (Hip) D-rings
Webbing Material High-tenacity Polyester (45mm width)
Buckle Material Steel Quick-Connect with Nylon Housing
D-ring Material Forged Steel with Zinc Plating
Weight Capacity Up to 130 kg (287 lbs) total weight
Maximum Arrest Force Less than 6 kN (1,350 lbs)
Free Fall Distance Maximum 2 meters (6.5 feet)
Lanyard Length 1.8 meters per leg (with shock pack)
Size Range Universal (adjustable: chest 80-130cm, legs 50-80cm)
Harness Weight Approximately 2.5 kg (complete set)
Standards Compliance ANSI Z359.11-2014, OSHA 1926.502
Temperature Range -40—C to +60—C operating range
Warranty Manufacturer Quality Warranty

Key Features & Benefits

  • Full Body Fall Arrest Design: Distributes fall arrest forces across thighs, chest, and shoulders for reduced injury risk
  • Multiple D-Ring Attachment Points: Dorsal, chest, and side D-rings provide flexibility for various anchor configurations
  • Y-Lanyard with Shock Absorber: Double-leg design allows 100% tie-off; shock pack reduces arrest forces to less than 6 kN
  • Quick-Connect Buckles: Easy donning and doffing while maintaining secure, reliable connection
  • Padded Leg and Chest Sections: Enhanced comfort for extended wear during long work shifts
  • Universal Adjustable Size: Fits workers up to 130 kg with adjustable chest (80-130cm) and leg (50-80cm) straps
  • Breathable Polyester Webbing: Reduces heat buildup and improves comfort in warm climates
  • Wear Indicators: Visual cues help identify worn or damaged webbing during safety inspections
  • Forged Steel D-Rings: Zinc-plated for corrosion resistance and long service life
  • ANSI Z359.11 Certified: Meets stringent American National Standards for fall protection equipment
  • OSHA 1926.502 Compliant: Satisfies Occupational Safety and Health Administration requirements
  • Carrying Bag Included: Durable bag for easy transport and clean storage between jobsites
  • Tool Belt Compatible: Designed to work with standard construction tool belts without interference

Safety & Usage Guidelines

  • Pre-Use Inspection: Inspect harness before each use for cuts, tears, burns, chemical damage, or worn stitching
  • Proper Fit: Ensure all straps are properly adjusted and buckles are securely fastened before work
  • Anchor Point: Always connect to approved anchor points capable of supporting 2,268 kg (5,000 lbs)
  • Training Required: Only trained and authorized personnel should use fall protection equipment
  • Retirement Criteria: Remove from service immediately if subjected to fall arrest forces or shows any signs of damage
  • Storage: Store in cool, dry place away from direct sunlight, chemicals, and moisture
  • Service Life: Replace harness according to manufacturer guidelines or industry standards (typically 5-10 years with proper care)

Complete Set Includes

  • 1x Full Body Fall Arrest Harness (Universal Size)
  • 1x Y-Lanyard with Shock Absorber (Double Leg, 1.8m per leg)
  • 1x Durable Carrying/Storage Bag
  • 1x User Manual with Fitting Instructions
  • 1x Inspection Log Card
  • 1x Certification Documentation (ANSI, OSHA)
← Back to Products

Customer Reviews

Lucy Akinyi
Nakuru

Purchased this Fall Protection Harness Complete Set for personal protection at my construction. The comfort has been impressive. BuildMate's delivery was prompt and the product quality meets expectations. Would recommend for anyone looking for reliable equipment in Kenya.

Reviewed on January 17, 2025
Verified Purchase
Steven Tanui
Marsabit

Been using this Fall Protection Harness Complete Set for several months now at my construction. Perfect for personal protection. The protection level stands out. Happy with this purchase from BuildMate.

Reviewed on September 19, 2026
Verified Purchase
Walter Jepkosgei
Kericho

As a farm work owner in Kenya, I needed reliable equipment for safety compliance. This Fall Protection Harness Complete Set delivers. The fit is exactly what I needed. BuildMate provided excellent service.

Reviewed on December 25, 2026
Verified Purchase

Have you purchased this product? Share your review

Explore Similar Products

Safety Rope 15m Safety Helmet Safety Goggles

© 2025 BuildMate Kenya. All rights reserved.

function renderCartModal() { let cart = JSON.parse(localStorage.getItem('buildmate_cart') || '[]'); let items = Array.isArray(cart) ? cart : (cart.items || []); let total = 0; const list = document.getElementById('cart-items-list'); if (!list) return; if (items.length === 0) { list.innerHTML = '
Your cart is empty.
'; } else { list.innerHTML = items.map(item => { const quantity = item.quantity || item.qty || 0; const price = item.price || 0; const itemTotal = price * quantity; total += itemTotal; return `
${item.name ||
${item.name || ''}
Ksh ${price.toLocaleString()} x ${quantity}
Ksh ${itemTotal.toLocaleString()}
`; }).join(''); } document.getElementById('cart-total-section').innerHTML = `
Total: Ksh ${total.toLocaleString()}
`; } function updateCartCount() { let cart = JSON.parse(localStorage.getItem('buildmate_cart') || '[]'); let count = 0; if (Array.isArray(cart)) { count = cart.reduce((sum, item) => sum + (item.quantity || 0), 0); } else if (cart.items) { count = cart.items.reduce((sum, item) => sum + (item.qty || 0), 0); } var el = document.getElementById('cart-count'); if (el) el.textContent = count; } // Open/close cart overlay with scroll prevention document.addEventListener('DOMContentLoaded', function() { var cartIcon = document.getElementById('cart-icon'); // Cart overlay handled by component var closeCart = document.getElementById('close-cart-modal'); var checkoutBtn = document.getElementById('go-to-checkout'); if (cartIcon && cartOverlay && closeCart) { cartIcon.onclick = function() { renderCartModal(); cartOverlay.style.display = 'flex'; document.body.classList.add('cart-open'); }; closeCart.onclick = function() { cartOverlay.style.display = 'none'; document.body.classList.remove('cart-open'); }; cartOverlay.onclick = function(e) { if (e.target === cartOverlay) { cartOverlay.style.display = 'none'; document.body.classList.remove('cart-open'); } }; // Close cart with Escape key document.addEventListener('keydown', function(e) { if (e.key === 'Escape' && cartOverlay.style.display === 'flex') { cartOverlay.style.display = 'none'; document.body.classList.remove('cart-open'); } }); } if (checkoutBtn) { checkoutBtn.onclick = function() { window.location.href = 'checkout.html'; }; } }); // Live cart count update (sync with localStorage changes) function listenCartCount() { updateCartCount(); window.addEventListener('storage', function(e) { if (e.key === 'buildmate_cart') updateCartCount(); }); } // Cart initialization handled by load-cart-component.js // Navigation Menu Toggle document.addEventListener('DOMContentLoaded', function() { const navToggle = document.getElementById('nav-menu-toggle') || document.querySelector('.nav-menu-toggle'); const nav = document.getElementById('comprehensive-nav'); const closeNav = document.getElementById('close-nav'); const navOverlay = document.querySelector('.nav-overlay'); if (navToggle && nav) { navToggle.addEventListener('click', function() { nav.classList.add('active'); document.body.style.overflow = 'hidden'; }); } if (closeNav && nav) { closeNav.addEventListener('click', function() { nav.classList.remove('active'); document.body.style.overflow = ''; }); } if (navOverlay && nav) { navOverlay.addEventListener('click', function() { nav.classList.remove('active'); document.body.style.overflow = ''; }); } // Close nav with Escape key document.addEventListener('keydown', function(e) { if (e.key === 'Escape' && nav && nav.classList.contains('active')) { nav.classList.remove('active'); document.body.style.overflow = ''; } }); // Navigation category accordion functionality document.querySelectorAll('.nav-category-title').forEach(title => { title.addEventListener('click', function() { const category = this.parentElement; const subcategories = category.querySelector('.nav-subcategories'); const arrowIcon = this.querySelector('.arrow-icon'); if (subcategories) { subcategories.classList.toggle('active'); if (arrowIcon) { arrowIcon.style.transform = subcategories.classList.contains('active') ? 'rotate(180deg)' : 'rotate(0deg)'; } } }); }); });