Corsair K70 CORE TKL RGB Mechanical Gaming Keyboard | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support

Corsair K70 CORE TKL RGB Mechanical Gaming Keyboard

SKU: CH-911911E-NA
R 2 451.52
Available on Backorder

Command your battlefield with a compact keyboard built for pinpoint precision | blazing-fast MLX Red switches | immersive per-key RGB | onboard profile storage

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

Command your battlefield with a compact keyboard built for pinpoint precision | blazing-fast MLX Red switches | immersive per-key RGB | onboard profile storage

Quick Specs

  • Dominate every match with ultra-responsive CORSAIR MLX Red mechanical switches and a 1,000Hz report rate.
  • Enjoy silky-smooth, wobble-free keystrokes engineered for competitive precision.
  • Free up desk space for your mouse with a compact tenkeyless (TKL) footprint.
  • Personalise your battle station with vivid per-key RGB backlighting through CORSAIR iCUE.
  • Store up to 5 onboard profiles with 8MB of onboard memory for performance on the move.

Precision Gaming in a Compact Form

Tired of your mouse hand bumping into a bulky numpad mid-match? The CORSAIR K70 CORE TKL Mechanical Gaming Keyboard trims away the excess without cutting corners on performance, giving competitive South African gamers a tenkeyless footprint built for pure focus. Every key rides on CORSAIR MLX Red linear switches, pre-lubricated for silky-smooth, wobble-free keystrokes that keep you fast and consistent when it counts.

Switches Engineered for Speed

At the core of the K70 CORE TKL are CORSAIR MLX Red mechanical switches, tuned for light, linear actuation that rewards rapid inputs without sacrificing accuracy. Backed by a 1,000Hz report rate and full key rollover (NKRO), every keystroke registers instantly and independently, so your combos, binds, and rapid-fire commands land exactly when you need them to.

Illuminate Your Battle Station

Ultra-bright per-key RGB lighting brings your setup to life, and with CORSAIR iCUE software you can customise lighting effects and store up to 5 onboard profiles across 8MB of onboard memory, so your personal setup travels with you between PCs. Two layers of internal sound dampening keep the acoustics tight, giving your keystrokes a satisfying, tempered sound rather than a hollow clatter.

Built for the Long Grind

A tangle-free rubber cable and wired USB Type-A connection keep your setup reliable match after match, while dedicated FN shortcuts give you quick access to media and volume controls without breaking your focus. Compatible with PC, Mac, or Xbox One via a USB 3.0 or 3.1 Type-A port, the K70 CORE TKL is ready to become the trusted centre of your gaming setup.

Features

  • CORSAIR MLX Red linear mechanical switches for fast, precise actuation
  • Tenkeyless (TKL) form factor for a compact, mouse-friendly footprint
  • Per-key RGB backlighting with CORSAIR iCUE software customisation
  • 1,000Hz report rate for ultra-responsive input
  • Full key rollover (NKRO) ensures every keystroke registers, even during intense sessions
  • 8MB onboard memory with 5 onboard profiles for storing your settings
  • Dedicated FN shortcuts for media and volume control
  • Durable tangle-free rubber cable with wired USB Type-A connectivity

Specifications

  • Keyboard CUE Software: Supported in iCUE
  • Media and Volume Controls: Yes
  • Wrist Rest Included: No
  • Keyboard Report Rate: 1,000Hz
  • Keyboard Form Factor: TKL (Tenkeyless)
  • Keyboard Colour: Black
  • Switch Type: Mechanical
  • Onboard Memory: 8MB
  • Onboard Profiles: 5
  • Keyboard Type Size: K70
  • Size Full TKL: Tenkeyless
  • Adjustable Height: Yes
  • Wired Connectivity: USB Type-A
  • Keyboard Connectivity: Wired
  • Keyboard Cable Material: Tangle-free rubber
  • WIN Lock: FN Shortcut
  • Media Keys: FN Shortcuts
  • Key Rollover: Full Key (NKRO)
  • Keyboard Matrix: 87 Keys
  • Key Switches: CORSAIR MLX Red
  • Keyboard Layout: NA (North America)
  • Keyboard Warranty: 2 Year
  • Keyboard Compatibility:
    • PC, Mac, or XBOX One with USB 3.0 or 3.1 Type-A port
    • Windows® 10 or macOS® 10.15
    • Internet connection for iCUE software download
  • Product Weight: 743g

What's in the Box

  • 1 x Corsair K70 CORE TKL RGB Mechanical Gaming Keyboard

Why Corsair

Corsair is committed to engineering the finest gaming gear for players who demand precision and performance without compromise. With a legacy of innovation across keyboards, mice, and peripherals, the K70 CORE TKL reflects that commitment — a trusted choice for South African gamers chasing every competitive 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!