Pre-Order PVY Turbo
Pre-Order PVY Turbo
Pre-Order PVY Turbo
Pre-Order PVY Turbo
Pre-Order PVY Turbo
Pre-Order PVY Turbo
Pre-Order PVY Turbo
Pre-Order PVY Turbo
Pre-Order PVY Turbo
Pre-Order PVY Turbo
Pre-Order PVY Turbo
Pre-Order PVY Turbo
Pre-Order PVY Turbo
Pre-Order PVY Turbo
1 / 7

Pre-Order PVY Turbo

EN 15194 CE certification | 250W Motor | Max Range 100km | 48V 13Ah/ Battery | Max Load 150kg
Price
€1.199
€0

Quantity

  • Free shipping

    Experience the convenience of free shipping on all orders

  • Installment Payment

    Support klarna installment payment

  • 14 Day Returns

    Return a new and unused item within 14 business days for a full refund

  • Contact us

    Fast response when you need help, contact us: support@pvybike.com

Mastering Every Landscape

PVY Turbo is a powerful electric bike equipped with fat tires and a dual suspension system, ensuring a smooth and comfortable riding experience across diverse terrains. The advanced electric system provides efficient power support, making it an ideal choice for both long-distance journeys and urban commuting. Whether conquering rugged mountain trails or navigating busy city streets, PVY Turbo excels, delivering an exceptional riding experience for cyclists.

Subjugate,Extreme ,Cross-country

Adventure Tour

250W Geared Hub Motor

Powerful Motor

Experience rapid acceleration and exceptional climbing capabilities with the high-performance motor delivering 80Nm of torque. Effortlessly conquer diverse terrains, ascend steep hills, and enjoy an exhilarating ride

High Capacity Battery

Excellent Performance

Introducing Turbo, powered by a high-quality 48V 13Ah lithium battery for unmatched performance and durability. Experience a 30% longer battery life compared to its counterparts, granting an impressive 100km range on a single charge. With only a weekly charging requirement, Turbo ensures you spend more time on the road and less time worrying about power.

EN 15194 CE Certified

PVY Turbo is CE certified for reliable and guaranteed quality. All accessories meet the certification requirements of professional testing organizations.

Shifter

Shifter

The high-quality Shimano 7-Speed Gears provide 7 transmission options, optimizing energy efficiency and reducing exertion on diverse terrains.

nsjgrjsdhseh

Fat Tire

Fat Tire

20*4.0" motorcycle-grade fat tires conquer snow, potholes, and sand terrain at high speeds, ensuring stability, skid resistance, and traction.

Frame

Frame

High quality 6061 aluminum alloy frame with enhanced strength through multi-stage heat treatment. Supports 150kg weight capacity.

Throttle

Throttle

Ergonomic thumb throttle: comfortable to hold and intuitive to control. Accelerate or decelerate with ease by simply pressing lightly on the throttle.

Crankset

Crankset

The Pro Wheel 48T/170MM aluminum crankset efficiently transfers power for strong, lightweight pedal-assisted propulsion.

Front Fork

Front Fork

The lockable front suspension fork ensures unrivalled ride comfort, absorbing shock on all terrains for a smooth, comfortable ride.

Rear Shock

Rear Shock

Our 30mm shock absorbers provide the ultimate in comfort and make your riding experience more enjoyable. Whether on city streets or mountain trails, the shock absorber will help you overcome bumps with ease,...

Mechanical Brake

Mechanical Brake

Mechanical disc brakes deliver powerful, precise, and heat-resistant stopping performance in any conditions.

Derailleur

Derailleur

Durable aluminum alloy derailleur enables smooth and precise gear shifting, optimizing performance and enhancing rider control for a seamless cycling experience.

Color LCD Display

Color LCD Display

Full color display & IPX5 waterproof, showcasing all essential data with clarity.

Headlight

Headlight

Highly visible LED headlights, enhanced visibility for safer night rides.

Taillight

Taillight

Integrated tail lights enhance the safety of nighttime cycling by automatically activating when braking, ensuring improved visibility.

Iron Fender

Iron Fender

No more worries about muddy roads, keep yourself and your bike clean and dry, no matter the weather.

Seat

Seat

Enjoy fatigue-free long-distance rides with the ergonomically designed, comfortable, and shock-absorbing seat.

FAQs

Why is the Turbo advertised as 750W, but the website parameter information is 250W?

Turbo in the factory default settings power limit of 250W, the maximum speed limit of 25Km/h, if you have a greater speed and power needs, you can unlock the operation, unlocked: Turbo power 750W, the maximum speed of 38km/h;

How long is the warranty, and what does it cover?

We have after-sales centers in Europe, PVY 1-Year Warranty Accessory: Structural component-fork, seatpost, handlebar, stem, brake lever, brakes, sprocket, crankset, and thumb shifter, Electronic component- charger, controller, display, booster, shifter handle, motor, and shifter. (if a product problem occurs within the above warranty period, it will be exchanged for a new one free of charge if it cannot be repaired.) For the Frame 10-year warranty applies.

Does it need to be assembled after receiving the bike?

Our ebikes are brand new and come in a folding state for easy shipping. And with an assembly finish of 85%, you can easily put it all together. Once unboxed, simply install the pedals and adjust the handlebar angle to fit your height and riding style. It's a quick and hassle-free process, allowing you to hit the road in no time.

Is the bike waterproof?

Yes, it is IPX5 waterproof, but for safety reasons we advise against using it in harsh weather conditions.

Will replacement parts be available for years to come?

We will continue to provide replacement parts for at least ten years in the future, such as motors, batteries, controllers, meters, etc., and guarantee that the price of replacement parts will always be high quality and low price, so that people can spend a small amount of money to experience riding Fun is the purpose of PVY.

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.