Antec NX410 V2 ATX | Micro-ATX | ITX ARGB Mid-Tower Gaming Chassis - Black - Antec | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
Antec

Antec NX410 V2 ATX | Micro-ATX | ITX ARGB Mid-Tower Gaming Chassis - Black

SKU: NX410 V2
R 999.00
Only 1 left!
Only 1 left in stock - order soon!

The Antec NX410 V2 ATX ARGB Mid-Tower Gaming Chassis delivers the perfect balance of style, functionality, and cooling performance. Designed with gamers in mind, it features a sleek tempered glass side panel and a mesh front panel that enhances airflow while offering a modern, streamlined look....

Free shipping over R 3 450.00
Secure checkout
14-day returns
Expert support

Frequently Bought Together

The Antec NX410 V2 ATX ARGB Mid-Tower Gaming Chassis delivers the perfect balance of style, functionality, and cooling performance. Designed with gamers in mind, it features a sleek tempered glass side panel and a mesh front panel that enhances airflow while offering a modern, streamlined look. Pre-installed with two 140mm ARGB fans at the front and a 120mm ARGB fan at the rear, this chassis provides vibrant lighting effects and optimal airflow right out of the box.

The NX410 V2 is engineered to handle demanding builds with ease. It supports ATX, Micro-ATX, and ITX motherboards, and offers generous hardware clearance, including room for GPUs up to 335mm in length and CPU coolers up to 168mm in height. The case accommodates up to six fans, ensuring your system stays cool even during intense gaming sessions. For liquid cooling enthusiasts, the NX410 V2 supports radiators up to 360mm at the front and 280mm at the top, offering versatile cooling solutions.

With its magnetic dust filters on the top and bottom, maintenance is a breeze. These filters help keep your system clean and dust-free, ensuring long-lasting performance. The front panel provides easy access to connectivity options, including one USB 3.0 port, two USB 2.0 ports, and HD audio jacks, keeping your essential peripherals within reach.

Whether you're building a high-performance gaming rig or a stylish workstation, the Antec NX410 V2 combines stunning aesthetics with practical features. Its ample drive bays, robust cooling options, and thoughtful design make it an excellent choice for builders who want a chassis that performs as well as it looks.

FEATURES:

  • 1 x 120mm and 2 x 140mm ARGB fans included
  • Tempered glass side panel
  • Mesh front panel for enhanced airflow
  • Supports up to 6 fans
  • Top and bottom magnetic dust filters

SPECIFICATIONS:

  • Form Factor: Mid Tower
  • Materials: SPCC / ABS
  • Mainboard Support: ATX, Micro-ATX , ITX
  • Front Access & Controls: Power, LED Control Button, USB3.0 x 1, USB2.0 x 2, HD-AUDIO
  • Side Panel: Tempered Glass
  • Drive Bays:
    • 3.5″/2.5″: 2/1
    • 2.5″: 3
  • Expansion Slots: 7
  • Fan Support:
    • Front: 3 x 120 mm / 3 x 140 mm
    • Top: 2 x 120 mm / 2 x 140 mm
    • Rear: 1 x 120mm
    • Included Fan(s): 2 x 140 mm ARGB fan in front & 1 x 120 mm ARGB fan in rear
  • Radiator Support:
    • Front: 120 mm / 240 mm / 280 mm / 360 mm
    • Top: 120 mm / 240 mm / 280 mm
    • Side: 120mm
  • Clearance:
  • Max GPU Length: ≤ 335mm
  • Max CPU Cooler Height: ≤ 168mm
  • Max PSU Length: ≤ 165mm
  • Dust Filter: Top / Bottom
  • Product Dimensions: 39 x 21 x 48.5 cm
  • Product Weight: 6300g

WHAT’S IN THE BOX:

  • Antec NX410 V2 ATX ARGB Mid-Tower Gaming Chassis – Black x1
Brand Antec
Colour Black
Form Factor -
Interface -
Capacity -
Memory Capacity -
Screen Size -
Resolution -
Refresh Rate -
Cpu -
Cpu Socket -
Warranty 12 Months
0.0
0 reviews
Login to Review

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

Related Products

New
DeepCool CH260 Wood mATX Gaming Chassis - Black
DEEPCOOL

DeepCool CH260 Wood mATX Gaming Chassis - Black

R 1 299.00

Out of Stock

Antec Chassis AX61 Elite
Antec

Antec Chassis AX61 Elite

R 799.00

In Stock

MSI MAG FORGE 100R ATX GAMING CASE
MSI

MSI MAG FORGE 100R ATX GAMING CASE

R 1 099.00

Out of Stock

Antec FLUX Rear ARGB ATX Mid Tower Gaming Chassis - Black
Antec

Antec FLUX Rear ARGB ATX Mid Tower Gaming Chassis - Black

R 1 599.00

Out of Stock

// 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!