Crucial T705 1TB M.2 NVMe Gen5 NAND SSD - Crucial | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
Crucial

Crucial T705 1TB M.2 NVMe Gen5 NAND SSD

SKU: CT1000T705SSD3
R 4 659.00
Out of Stock

Hold on tight, the Crucial T705 Gen5 NVMe SSD is taking Gen5 performance to the maximum level. With sequential reads and write speeds of up to 13,600MB/s and 10,200MB/s (up to 1,400K/1,750K IOPS random reads/writes), the T705 offers faster gaming, video editing, 3D rendering and heavy workload...

Get Notified When Available

Enter your email and we'll notify you when this item is back in stock.

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

Frequently Bought Together

Hold on tight, the Crucial T705 Gen5 NVMe SSD is taking Gen5 performance to the maximum level. With sequential reads and write speeds of up to 13,600MB/s and 10,200MB/s (up to 1,400K/1,750K IOPS random reads/writes), the T705 offers faster gaming, video editing, 3D rendering and heavy workload application processing. Built with Micron's 232-layer TLC NAND and ready for use with your motherboard’s heatsink, the Crucial T705 Gen5 SSD is fully optimized for performance, takes full advantage of Microsoft® DirectStorage, and is backwards compatible with Gen3 and Gen4 motherboards. With SSD speeds nearly 2x faster than Gen4, you’ll never look back after using the Crucial T705.

Stay ahead of the competition by loading AAA game titles up to 15% faster than Gen4 SSDs with DirectStorage. Don’t get stuck in the past — unlock the potential for more detailed textures, faster gameplay, and sharper graphics with an SSD that fully supports DirectStorage and GPU decompression. Boasting blazing load times and consistently high performance for heavy workloads, including AI apps, the Crucial T705 Gen5 NVMe SSD is designed for Intel® Core 13-14th Gen & AMD Ryzen™ 7000 series CPUs and is backwards compatible with PCIe 3.0 and 4.0 systems for ultimate flexibility.

FEATURES:

  • Sequential read/write speeds up to 13,600/10,200MB/s
  • Random read/write speeds up to 1.4M/1.75M IOPs
  • PCIe® 5.0 NVMe® SSD
  • Load games up to 15% faster
  • Adaptive thermal protection to monitor performance and maintain stability
  • Compatible with Intel® Core™ 13th-14th Gen desktop CPUs & AMD Ryzen™ 7000 series CPUs
  • Up to 1TB of storage for more gaming and UHD/8K+ videos
  • Reduce game texture load times and CPU utilisation with Microsoft® DirectStorage
  • Engineered with cutting-edge Micron® 232-layer TLC NAND
  • Hardware encryption for storage security with TCG Opal 2.01
  • Future proof with backward compatibility in PCIe 3.0 or 4.0 systems
  • Easy to install

SPECIFICATIONS:

  • Interface: PCIe Gen 5.0 x4, NVMe 2.0
  • Capacity: 1TB
  • Raw Capacity: 1024GB
  • Form factor: M.2 (2280)
  • SSD Endurance (TBW): 600TB
  • Sequential Read: 13,600 MB/s
  • Sequential Write: 10,200 MB/s
  • MTTF: 1.5 million hours
  • 4KB Random Read: 1,400K IOPS
  • 4KB Random Write: 1,750K IOPS
  • Colour: Black
  • Product Dimensions: 8 x 2.2 x 0.3 cm
  • Product Weight: 12g

WHAT'S IN THE BOX:

  • Crucial T705 1TB Gen5 M.2 NVMe SSD x1
Brand Crucial
Colour Black
Form Factor M.2 2280
Interface PCIe NVMe 5.0 x4
Capacity 1TB
Memory Capacity -
Screen Size -
Resolution -
Refresh Rate -
Cpu -
Cpu Socket -
Warranty 60 Months
0.0
0 reviews
Login to Review

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

Related Products

-46%
Patriot P220 1TB 2.5" SSD
Patriot

Patriot P220 1TB 2.5" SSD

R 2 709.00 R 4 979.00

Save R 2 270.00

In Stock

-33%
PATRIOT SSD VP4000 M.2 NVME 2TB 2230
Patriot

PATRIOT SSD VP4000 M.2 NVME 2TB 2230

R 6 229.00 R 9 329.00

Save R 3 100.00

In Stock

Crucial P310 2TB M.2 NVMe SSD with Heatsink
Crucial

Crucial P310 2TB M.2 NVMe SSD with Heatsink

R 5 449.00

Out of Stock

-46%
Patriot P220 128GB 2.5" SSD
Patriot

Patriot P220 128GB 2.5" SSD

R 539.00 R 989.00

Save R 450.00

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