Corsair iCUE LINK TITAN 360 RX RGB AIO Liquid CPU Cooler - Black | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support

Corsair iCUE LINK TITAN 360 RX RGB AIO Liquid CPU Cooler - Black

SKU: CW-9061018-WW
R 3 946.53
Available on Backorder

Extreme 360mm cooling performance | Dynamic customizable RGB lighting | Centralised iCUE LINK control | Whisper-quiet digital fan control | Tool-free personalisation

This item is on backorder — new stock is expected around 28 Sep 2026. Order now and we'll ship yours as soon as it arrives.

Free shipping over R 3 450.00
Secure checkout
14-day returns
Expert support
Secure payment — PayFast & Yoco · 256-bit SSL encrypted

Frequently Bought Together

Extreme 360mm cooling performance | Dynamic customizable RGB lighting | Centralised iCUE LINK control | Whisper-quiet digital fan control | Tool-free personalisation

Quick Specs

  • Achieve extreme cooling performance with a 360mm radiator and three high-performance RX120 RGB fans
  • Experience peak thermal efficiency thanks to the FlowDrive cooling engine's three-phase motor
  • Enjoy dynamic, customizable lighting with 20 RGB LEDs on the pump plus eight per fan
  • Control your entire cooling setup through iCUE LINK connectivity and iCUE software
  • Personalise your rig with tool-free CapSwap pump cap modules (sold separately)

Serious Cooling for Serious Builds

The Corsair iCUE LINK TITAN 360 RX RGB AIO Liquid CPU Cooler is built for PC enthusiasts and overclockers who demand reliable, high-capacity thermal performance from their rigs. With a 360mm radiator and three RX120 RGB fans working in tandem, this cooler is designed to handle the thermal load of demanding, high-wattage CPUs without breaking a sweat. It's a cooling solution built for builders who take their systems seriously.

Engineered to Keep Your CPU Cool Under Pressure

Tired of watching your CPU throttle the moment a build gets demanding? At the heart of this cooler sits the FlowDrive cooling engine, driven by a three-phase motor for peak thermal efficiency. A copper cold plate draws heat away from your CPU efficiently, while the aluminium 360mm radiator dissipates it fast. The three RX120 RGB fans deliver airflow from 10.4 to 73.5 CFM and static pressure from 0.12 to 4.33 mm-H2O, with digital fan control spinning them anywhere from 300 to 2100 RPM to match the workload.

Lighting That Moves With Your System

Cooling performance is only half the story. The pump features an RGB cap display with 20 RGB LEDs, complemented by eight more per fan, creating dynamic lighting that syncs across your build. iCUE LINK connectivity and full iCUE software support mean you control lighting and performance from one place, without a tangle of separate cables. Want to make it your own? Tool-free CapSwap modules let you personalise the pump's look further (sold separately).

Quiet Power, Built to Last

Performance means little if it comes with constant fan noise. This cooler operates across a noise range of just 10 to 36 dBA, staying quiet at idle and only ramping up when your CPU actually needs it. Durable black sleeved, low-permeation rubber tubing runs 450mm in length, giving you flexibility for radiator placement while resisting wear over time — a cooler designed to perform reliably build after build.

Features

  • 360mm radiator with three RX120 RGB fans for maximum heat dissipation
  • FlowDrive cooling engine with three-phase motor for peak thermal efficiency
  • Copper cold plate for efficient heat transfer from CPU to coolant
  • Aluminium radiator construction for durable, lightweight cooling
  • 20 RGB LEDs on the pump plus eight per fan for dynamic lighting effects
  • iCUE LINK connectivity and iCUE software for centralised control
  • Digital fan control with speeds from 300 to 2100 RPM
  • Tool-free CapSwap pump cap modules for personalisation (sold separately)

Specifications

  • Radiator Size: 360 mm
  • Socket Compatibility: Intel LGA 1851, LGA 1700, AMD AM5, AM4
  • Fan Count: 3 x 120mm
  • Pump Display: RGB Cap
  • Max Noise Level: 36 dB
  • RGB Lighting: Yes
  • Tube Length: 450 mm
  • Colour: Black
  • Product Dimensions: 39.6 x 12.5 x 12.5 cm
  • Product Weight: 2000g

What's in the Box

  • 1 x Corsair iCUE LINK TITAN 360 RX RGB AIO Liquid CPU Cooler - Black

Why Corsair

Corsair has spent decades engineering components trusted by gamers, builders and overclockers worldwide. The iCUE LINK TITAN 360 RX brings that same obsession with performance and control to your cooling setup, backed by the wider iCUE ecosystem. For South African PC enthusiasts building serious rigs, Corsair remains a name you can build around with confidence.

0.0
0 reviews
Login to Review

No reviews yet. Be the first to review this product!

Related Products

Asus ROG Strix LC IV 360 ARGB LCD White Edition

Asus ROG Strix LC IV 360 ARGB LCD White Edition

R 6 230.59

Out of Stock

Antec Omni Matrix 360 ARGB CPU Liquid Cooler White

Antec Omni Matrix 360 ARGB CPU Liquid Cooler White

R 1 018.79

Out of Stock

MSI MPG Coreliquid P13 360 AIO Liquid CPU Cooler - White

MSI MPG Coreliquid P13 360 AIO Liquid CPU Cooler - White

R 3 531.25

Only 3 left - order soon!

// Share product with fallback // 2026-05-22: rewritten. Old version had three bugs: // 1) Copy Link button used `this.textContent='Copied!'` which destroyed the // icon (textContent replaces everything). After clicking, the link icon // disappeared. // 2) Inline onclick handlers had nested \x27-escaped strings interpolating // `url` directly — if the URL contained a single quote the JS broke. // 3) Close button used `this.closest('div[style]').parentElement.remove()` // — fragile, depends on no inline style elsewhere in the DOM tree. // New version: build with DOM nodes, attach proper event listeners, keep the // icon, gracefully handle clipboard failure, use a held reference to close. function shareProduct() { var title = document.querySelector('.product-title').textContent; var url = window.location.href; if (navigator.share) { navigator.share({ title: title, url: url }).catch(function() {}); return; } // Fallback: show share options modal var modal = document.createElement('div'); modal.style.cssText = 'position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,0.6);z-index:9999;display:flex;align-items:center;justify-content:center;padding:1rem;'; var encoded = encodeURIComponent(url); var encodedTitle = encodeURIComponent(title); var content = document.createElement('div'); content.style.cssText = 'background:#fff;border-radius:12px;padding:24px;max-width:360px;width:100%;text-align:center;'; content.innerHTML = '

Share this product

' + '
' + ' Facebook' + ' WhatsApp' + ' Email' + '
' + '' + '
'; modal.appendChild(content); function closeModal() { if (modal.parentNode) modal.parentNode.removeChild(modal); } modal.addEventListener('click', function(e) { if (e.target === modal) closeModal(); }); content.querySelector('[data-action="close-modal"]').addEventListener('click', closeModal); var copyBtn = content.querySelector('[data-action="copy-link"]'); var copyLabel = copyBtn.querySelector('.btn-label'); copyBtn.addEventListener('click', function() { function flashLabel(text) { var prev = copyLabel.textContent; copyLabel.textContent = text; setTimeout(function() { copyLabel.textContent = prev; }, 1800); } if (navigator.clipboard && navigator.clipboard.writeText) { navigator.clipboard.writeText(url) .then(function() { flashLabel('Copied!'); }) .catch(function() { flashLabel('Press Ctrl+C'); }); } else { // Legacy browser fallback — execCommand still works on http: contexts var ta = document.createElement('textarea'); ta.value = url; ta.style.position = 'fixed'; ta.style.opacity = '0'; document.body.appendChild(ta); ta.select(); try { document.execCommand('copy'); flashLabel('Copied!'); } catch (e) { flashLabel('Press Ctrl+C'); } document.body.removeChild(ta); } }); document.body.appendChild(modal); }
Chat with us!