Corsair SABRE v2 PRO ULTRALIGHT WIRELESS 30000 DPI Gaming Mouse - Black | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support

Corsair SABRE v2 PRO ULTRALIGHT WIRELESS 30000 DPI Gaming Mouse - Black

SKU: CH-931G000-WW
R 2 700.69
Available on Backorder

Ultralight 36g build for zero-fatigue play | 8,000Hz hyper-polling for frame-perfect reactions | 33,000 DPI MARKSMAN S sensor for pinpoint accuracy | 70-hour wireless battery for tournament-ready endurance

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

Ultralight 36g build for zero-fatigue play | 8,000Hz hyper-polling for frame-perfect reactions | 33,000 DPI MARKSMAN S sensor for pinpoint accuracy | 70-hour wireless battery for tournament-ready endurance

Quick Specs

  • Dominate every match with an ultralight 36g design engineered for fatigue-free, pro-level FPS play
  • Experience 8,000Hz hyper-polling for input response eight times faster than standard mice
  • Achieve pixel-perfect crosshair placement with the 33,000 DPI CORSAIR MARKSMAN S sensor
  • Outlast the competition with up to 70 hours of wireless battery life
  • Customise your setup instantly with the browser-based CORSAIR Web Hub

Built for the razor's edge of competitive play

The Corsair SABRE v2 PRO ULTRALIGHT WIRELESS Gaming Mouse is engineered for the discerning South African gamer who refuses to compromise on speed or precision. Whether you're grinding ranked FPS matches or chasing frame-perfect flicks in a LAN final, this mouse is built to disappear in your hand and become an extension of your will. Every gram, every sensor reading, and every wireless packet has been tuned for one purpose: giving you the edge when it matters most.

Ultralight design that erases fatigue

Tired of your wrist giving out before your aim does? At just 36g, the SABRE v2 PRO is precision-built rather than hollowed out, maintaining structural integrity while shedding every unnecessary gram. That ultralight wireless gaming mouse frame means faster flicks, smoother tracking, and none of the arm fatigue that creeps in during marathon sessions. Compact 119mm dimensions make it equally at home with claw, fingertip, or palm grips, so you stay locked in for as long as the match demands.

8,000Hz hyper-polling for a measurable edge

Standard mice update your position once every millisecond. The SABRE v2 PRO does it every 0.125 milliseconds, both wired and wirelessly, delivering eight times more position updates per second. In frame-perfect duels and MOBA skill shots alike, that gap between input and action is where matches are won or lost, and this gaming mouse closes it.

Pinpoint precision, tournament-ready endurance

The CORSAIR MARKSMAN S sensor tracks up to 33,000 DPI with 99.7% resolution accuracy, so your crosshair lands exactly where you intend, even through rapid 180-degree turns. Back that with up to 70 hours of wireless battery life at 1,000Hz, and you can play through an entire tournament weekend without reaching for a cable. When you do need to top up, the included 1.8m USB Type-C cable keeps you in the fight while it charges.

Features

  • Ultralight 36g construction reduces wrist and arm fatigue during extended sessions
  • 8,000Hz hyper-polling rate for ultra-responsive input, wired or wireless
  • CORSAIR MARKSMAN S sensor delivers precise, high-DPI tracking for pixel-perfect aim
  • Up to 70 hours of wireless battery life for tournament-ready endurance
  • 2.4GHz wireless connection for a stable, low-latency link
  • Compact 119mm form suits claw, fingertip, and palm grip styles
  • Customisable via the browser-based CORSAIR Web Hub, no software install required
  • Includes grip tape and replacement mouse skates for a secure, long-lasting feel

Specifications

  • Max DPI: 33000 DPI
  • Connection: Wireless 2.4GHz
  • Weight: 36 g
  • Max Polling Rate: 8000 Hz
  • Battery Life: 70 hours
  • Colour: Black
  • Warranty: 24 months
  • Product Weight: 36g

What's in the Box

  • 1 x Corsair SABRE v2 PRO ULTRALIGHT WIRELESS Gaming Mouse - Black
  • 1 x Grip tape
  • 1 x Replacement mouse skates
  • 1 x 1.8m USB Type-C cable

Why Corsair

Corsair has spent decades engineering gear for players who refuse to settle, and the SABRE v2 PRO carries that legacy into the ultralight wireless era. Built for speed, precision, and endurance, it's a gaming mouse trusted by competitive players everywhere, including the discerning South African gamer looking for a genuine edge.

0.0
0 reviews
Login to Review

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

Related Products

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