K800 PRO 2000W Motor 23AH Battery Two Wheel Drive 26"x4.0" Fat Tire Dual Motor Electric Bike

43 sold
$1,584.98
$1,848.84
-$263.86
Color- Black-Blue
To- EU
Quantity
Free shipping
Sustainably made
Secure payments
Vendor by:
Description

Highlights

  • 【Powerful 2×1000w Motor Ebike】 This adult electric bicycle is designed to provide a powerful and thrilling riding experience. With two 1000W high-speed brushless motors, it can reach a maximum speed around 50km/h and continuously output strong power to tackle hills and challenging terrains with ease. This makes it perfect for off-road adventures and commuting in areas with varied terrain.

  • 【Reliable Safety System】 The e-bike features a powerful front and rear hydraulic brake system that is designed to stop the bike quickly and smoothly, even at high speeds. Additionally, the system comes with a power-off function to provide an added layer of safety. The bike is equipped with 2pc larger and thicker 180mm disc rotors, which deliver more effective braking power for maximum control when going downhill.

  • 【Fat Tire Electric Bike】 This city commuter e-bike is equipped with 26x4.0 inch fat tires that are specifically designed to handle any terrain or road condition. Whether you're traversing rocky beaches, snow-covered countryside, or climbing steep hills, these tires will provide the grip and stability you need for a smooth ride. Furthermore, the bike is powered by a high-capacity 48V 23Ah removable battery.

  • 【Four Riding Modes】 This e-bike offers a range of riding modes to suit your preferences. You can choose between pure electric mode, pedal assist mode, classic bike mode, or even activate the cruise control mode for an effortless ride. Each mode has its own unique benefits, allowing you to enjoy a customized riding experience every time.
  • 【Looking Forward to Your Riding Experience】Our Men's electric bike is designed to make your journeys comfortable, sustainable, and hassle-free. With 85% pre-installation, you'll only need to manually attach some simple accessories like pedals, front wheel, handlebars, saddle, and so on.
  • 【Front + rear shock absorbers】The K800 pro is a full-suspension electric bicycle, and its front fork is a lockable double shoulder fork. The rear suspension Shock Absorber Can Effectively reduce vibration in a rough environment while enhancing ride comfort.

  • Packing & DeliveryTo better ensure the safety of your goods, professional, environmentally friendly, convenient and efficient packaging services will be provided.

Specification

Model
K800Pro ( Dual Motor Fat E-Bike )
Frame
6061 Aluminum Alloy Full Suspension Frame
Fork
Aluminum Alloy Dual Crown Suspension Fork with Lockout
Front Motor
48V 1000W Brushless Geared Hub Motor
Rear Motor
48V 1000W Brushless Geared Hub Motor
Max Speed
around 55km/h
Battery
48V 23Ah Lithium Battery .
Range
Fully Electric Mode Range: around 40~60km
Pedal Assist Mode Range: around 80~100km
Brake
Hydraulic Disc Brake with power cut-off Feature
Drivetrain
Shimano 7-Speed
Display
Smart LCD display that shows speed, battery status, pedal assist level, etc.
Throttle
Twist Throttle ( on the Right side of Handlebar )
Headlight
LED Headlight powered by battery
Tire
26"x4.0" inch Fat Tire

You may also like

Customer Reviews
Here are what our customers say.
Write a Review
Customer Reviews
Wow you reached the bottom
Newest
Most liked
Highest ratings
Lowest ratings
×
class SpzCustomFileUpload extends SPZ.BaseElement { constructor(element) { super(element); this.uploadCount_ = 0; this.fileList_ = []; } buildCallback() { this.action = SPZServices.actionServiceForDoc(this.element); this.registerAction('upload', (data) => { this.handleFileUpload_(data.event?.detail?.data || []); }); this.registerAction('delete', (data) => { this.handleFileDelete_(data?.args?.data); }); this.registerAction('preview', (data) => { this.handleFilePreview_(data?.args?.data); }); this.registerAction('limit', (data) => { this.handleFileLimit_(); }); this.registerAction('sizeLimit', (data) => { this.handleFileSizeLimit_(); }); } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } setData_(count, file) { this.uploadCount_ = count; this.fileList_ = file; } handleFileUpload_(data) { data.forEach(i => { if(this.fileList_.some(j => j.url === i.url)) return; this.fileList_.push(i); }) this.uploadCount_++; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileUpload", { count: this.uploadCount_, files: this.fileList_}); if(this.fileList_.length >= 5){ document.querySelector('#review_upload').style.display = 'none'; } if(this.fileList_.length > 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '8px'; } } handleFileDelete_(index) { this.fileList_.splice(index, 1); this.uploadCount_--; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileDelete", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; if(this.fileList_?.length === 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '132px'; } } handleFilePreview_(index) { const finalPreviewData = this.fileList_[index]; const filePreviewModal = document.getElementById('filePreviewModal'); const fullScreenVideo = document.getElementById('fullScreenVideo'); const fullScreenImage = document.getElementById('fullScreenImage'); const previewModalClose = document.getElementById('previewModalClose'); const previewLoading = document.getElementById('previewLoading'); filePreviewModal.style.display = 'block'; previewLoading.style.display = 'flex'; if(finalPreviewData?.type === 'video'){ const media = this.mediaParse_(this.fileList_[index]?.url); fullScreenVideo.addEventListener('canplaythrough', function() { previewLoading.style.display = 'none'; }); fullScreenImage.src = ''; fullScreenImage.style.display = 'none'; fullScreenVideo.style.display = 'block'; fullScreenVideo.src = media.mp4 || ''; } else { fullScreenImage.onload = function() { previewLoading.style.display = 'none'; }; fullScreenVideo.src = ''; fullScreenVideo.style.display = 'none'; fullScreenImage.style.display = 'block'; fullScreenImage.src = finalPreviewData.url; } previewModalClose.addEventListener('click', function() { filePreviewModal.style.display = 'none'; }); } handleFileLimit_() { alert(window.AppReviewsLocale.comment_file_limit || 'please do not upload files more than 5'); this.triggerEvent_("handleFileLimit"); } handleFileSizeLimit_() { alert(window.AppReviewsLocale.comment_file_size_limit || 'File size does not exceed 10M'); } clear(){ this.fileList_ = []; this.uploadCount_ = 0; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleClear", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; } mediaParse_(url) { var result = {}; try { url.replace(/[?&]+([^=&]+)=([^&]*)/gi, function (str, key, value) { try { result[key] = decodeURIComponent(value); } catch (e) { result[key] = value; } }); result.preview_image = url.split('?')[0]; } catch (e) {}; return result; } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, name, data); this.action.trigger(this.element, name, event); } } SPZ.defineElement('spz-custom-file-upload', SpzCustomFileUpload);
The review would not show in product details on storefront since it does not support to.