× Bidding has ended on this item.
"); if (!$(this).is(":visible")) { $(this).fadeTo(1000, 1, function () { $(this).slideDown(500); }); } }); } if (data.Accepted) { //prepare success system message systemMessage = "
×" + contextMessageDictionary["ActionSuccess"] + "
"; if (!$(".awe-rt-ListingActionMessage").is(":visible") || $(".awe-rt-ListingActionMessage").html() == "") { $(".awe-rt-ListingActionMessage").hide(); $(".awe-rt-ListingActionMessage").html(systemMessage); $(".awe-rt-ListingActionMessage").slideDown(); } else { $(".awe-rt-ListingActionMessage").fadeOut(200, function () { $(this).html(systemMessage); $(this).fadeIn(200); }); } //render checkout button if a lineitem was returned //EXCEPT: when Auto Generate Invoices is enabled, do not render checkout buttons for lots until the entire event has ended if (!autoGenerateInvoices && ownerAllowsInstantCheckout && data.LineItemID) { var checkoutUrl = 'https://vistaauction.com/Account/Checkout?lineitemid=' + data.LineItemID; checkoutUrl += '&returnUrl=%2fEvent%2fLotDetails%2f288661090%2fGotrax-GKS-Electric-Scooter-for-Kid-Ages-612-Max-4-Miles-Range-and-75-Mph-Spe'; if (autoCheckoutForBuyNow) { window.location = checkoutUrl; } var checkoutHtml = '
' + '' + '' + '' + '' + '' + '' + 'Checkout' + '' + '' + '
'; if ($(".detail__context-menu").find(".btn__detail__checkout").length == 0) { $(".detail__context-menu").prepend(checkoutHtml).show(); } else { jslog("skipped rendering checkout button because one already exists."); } } if (data.LineItemID && !highlightCheckoutButtonForBuyNow) { //render contact seller button if one does not already exist if (false && $("a.btn__detail__contactuser").length == 0) { var contactSellerUrl = '/Account/SendListingMessage?receiver=admin&template=ask_listing_question&listingID=288661091&returnUrl=%2FEvent%2FLotDetails%2F288661090%2FGotrax-GKS-Electric-Scooter-for-Kid-Ages-612-Max-4-Miles-Range-and-75-Mph-Spe'; var contactSellerHtml = '
' + '' + '' + '' + '' + '' + '' + 'Contact Seller' + '' + '' + '
'; $(".detail__context-menu").append(contactSellerHtml).show(); jslog("contact button rendered for line item #" + data.LineItemID); } //render feedback button if (false) { var feedbackUrl = '/Account/SubmitFeedback?LineItemID=REPLACELINEITEMID&ListingID=288661091&Receiver=admin' .replace("REPLACELINEITEMID", data.LineItemID); var feedbackHtml = '
' + '' + '' + '' + '' + '' + '' + 'Feedback' + '' + '' + '
'; $(".detail__context-menu").append(feedbackHtml).show(); jslog("feedback button rendered for line item #" + data.LineItemID); } } } else { //ReasonString is populated, prepare a Negative System message if (contextMessageDictionary[data.ReasonString]) { systemMessage = "
×" + contextMessageDictionary[data.ReasonString] + "
"; } else { systemMessage = "
×" + data.ReasonString + "
"; } if (!$(".awe-rt-ListingActionMessage").is(":visible") || $(".awe-rt-ListingActionMessage").html() == "") { $(".awe-rt-ListingActionMessage").hide(); $(".awe-rt-ListingActionMessage").html(systemMessage); $(".awe-rt-ListingActionMessage").slideDown(); } else { $(".awe-rt-ListingActionMessage").fadeOut(200, function () { $(this).html(systemMessage); $(this).fadeIn(200); }); } } } else { //Context is null, but ReasonString is populated, prepare a Negative System message if (contextMessageDictionary[data.ReasonString]) { systemMessage = "
×" + contextMessageDictionary[data.ReasonString] + "
"; } else { systemMessage = "
×" + data.ReasonString + "
"; } if (!$(".awe-rt-ListingActionMessage").is(":visible") || $(".awe-rt-ListingActionMessage").html() == "") { $(".awe-rt-ListingActionMessage").hide(); $(".awe-rt-ListingActionMessage").html(systemMessage); $(".awe-rt-ListingActionMessage").slideDown(); } else { $(".awe-rt-ListingActionMessage").fadeOut(200, function () { $(this).html(systemMessage); $(this).fadeIn(200); }); } } } }); // render a checkout button if: // // - the lot ends successfully, and // - the winner is viewing, but only if // - auto gen invoices is disabled // // mainly to prevent one invoice per LOT per buyer, rather than the generally preferred one invoice per EVENT per buyer $(document).on("SignalR_UpdateListingStatus", function (event, data) { if ($.inArray(data.ListingID, interestingListings) < 0) return; if (autoGenerateInvoices || ownerAllowsInstantCheckout) { if (data.Status == "Successful" && data.LineItemID && data.LineItemPayerUN == "") { //when Auto Generate Invoices is enabled, do not render checkout buttons for lots until the entire event has ended if (!autoGenerateInvoices) { var checkoutUrl = 'https://vistaauction.com/Account/Checkout?lineitemid=' + data.LineItemID; checkoutUrl += '&returnUrl=%2fEvent%2fLotDetails%2f288661090%2fGotrax-GKS-Electric-Scooter-for-Kid-Ages-612-Max-4-Miles-Range-and-75-Mph-Spe'; var checkoutHtml = '
' + '' + '' + '' + '' + '' + '' + 'Checkout' + '' + '' + '
'; if ($(".detail__context-menu").find(".btn__detail__checkout").length == 0) { $(".detail__context-menu").prepend(checkoutHtml).show(); } else { jslog("skipped rendering checkout button because one already exists."); } } //render contact seller button if one does not already exist if (false && $("a.btn__detail__contactuser").length == 0) { //"/Account/SendListingMessage?receiver=tester1&template=ask_listing_question&listingID=166614&returnUrl=%2FListing%2FDetails%2F166614%2Ftest-item-J" var contactSellerUrl = '/Account/SendListingMessage?receiver=admin&template=ask_listing_question&listingID=288661091&returnUrl=%2FEvent%2FLotDetails%2F288661090%2FGotrax-GKS-Electric-Scooter-for-Kid-Ages-612-Max-4-Miles-Range-and-75-Mph-Spe'; var contactSellerHtml = '
' + '' + '' + '' + '' + '' + '' + 'Contact Seller' + '' + '' + '
'; $(".detail__context-menu").append(contactSellerHtml).show(); jslog("contact button rendered for line item #" + data.LineItemID); } //render feedback button if (false) { var feedbackUrl = '/Account/SubmitFeedback?LineItemID=REPLACELINEITEMID&ListingID=288661091&Receiver=admin' .replace("REPLACELINEITEMID", data.LineItemID); var feedbackHtml = '
' + '' + '' + '' + '' + '' + '' + 'Feedback' + '' + '' + '
'; $(".detail__context-menu").append(feedbackHtml).show(); jslog("feedback button rendered for line item #" + data.LineItemID); } } } }); $(".GoToPrevLot").on("click", function () { var thisLotOrder = 183; var lastLotOrder = 819; if (thisLotOrder > 0) { $(".GoToPrevLot").prop("disabled", true); $.post("/RealTime/GetLotIdByLotOrder", { eventId: 288617811, lotOrder: (thisLotOrder - 1) }) .done(function (data) { if (data.LotId) { window.location.href = "/Event/LotDetails" + "/" + data.LotId; } }); } }); $(".GoToNextLot").on("click", function () { var thisLotOrder = 183; var lastLotOrder = 819; if (thisLotOrder < lastLotOrder) { $(".GoToNextLot").prop("disabled", true); $.post("/RealTime/GetLotIdByLotOrder", { eventId: 288617811, lotOrder: (thisLotOrder + 1) }) .done(function (data) { console.log("next lot result: ", data); if (data.LotId) { window.location.href = "/Event/LotDetails" + "/" + data.LotId; } }); } }); $(document).on("SignalR_UpdateInvoiceStatus", function (event, data) { if ($.inArray(data.ListingID, interestingListings) < 0) return; jslog("SignalR_UpdateInvoiceStatus (listing, invoice, status, payer): " + data.ListingID + ", " + data.InvoiceID + ", " + data.InvoiceStatus + ", " + data.InvoicePayerUN); //show "View Invoice" or "Checkout" button if applicable if (data.InvoicePayerUN == aweUserName) { //get result of /RealTime/IsInvoicePayable?invoiceId=nnnnnn var promise = Proxy.invokeAsync("IsInvoicePayable", { invoiceId: data.InvoiceID }, function(result) { var checkoutUrl = 'https://vistaauction.com/Account/Invoice/' + data.InvoiceID; checkoutUrl += '?returnUrl=%2fEvent%2fLotDetails%2f288661090%2fGotrax-GKS-Electric-Scooter-for-Kid-Ages-612-Max-4-Miles-Range-and-75-Mph-Spe'; if (result.isPayable) { //invoice is payable if (autoCheckoutForBuyNow) { window.location = checkoutUrl; } if ($("a.btn__detail__checkout").length == 0) { //render checkout button if one does not already exist var checkoutHtml = '
' + '' + '' + '' + '' + '' + '' + 'Checkout' + '' + '' + '
'; $(".detail__context-menu").prepend(checkoutHtml).show(); jslog("checkout button rendered for invoice #" + data.InvoiceID); } } else { //the invoice is not payable, so instead of 'checkout' button, render 'view invoice' button if one does not already exist if ($("a.btn__detail__invoices").length == 0) { var viewInvoiceHtml = '
' + '' + '' + '' + '' + '' + '' + 'View Invoice' + '' + '' + '
'; $(".detail__context-menu").append(viewInvoiceHtml).show(); jslog("view invoice button rendered for invoice #" + data.InvoiceID); } } //only render the contact and/or feedback buttons if either // a) the web.config setting HighlightCheckoutButtonForBuyNow is set to False, or // b) the invoice is not payable if (!highlightCheckoutButtonForBuyNow || !result.isPayable) { //render contact seller button if one does not already exist if (false && $("a.btn__detail__contactuser").length == 0) { var contactSellerUrl = '/Account/SendListingMessage?receiver=admin&template=ask_listing_question&listingID=288661091&returnUrl=%2FEvent%2FLotDetails%2F288661090%2FGotrax-GKS-Electric-Scooter-for-Kid-Ages-612-Max-4-Miles-Range-and-75-Mph-Spe'; var contactSellerHtml = '
' + '' + '' + '' + '' + '' + '' + 'Contact Seller' + '' + '' + '
'; $(".detail__context-menu").append(contactSellerHtml).show(); jslog("contact button rendered for invoice #" + data.InvoiceID); } //render feedback button if (false) { var feedbackUrl = '/Account/SubmitFeedback?LineItemID=REPLACELINEITEMID&ListingID=288661091&Receiver=admin' .replace("REPLACELINEITEMID", data.LineItemID); var feedbackHtml = '
' + '' + '' + '' + '' + '' + '' + 'Feedback' + '' + '' + '
'; $(".detail__context-menu").append(feedbackHtml).show(); jslog("feedback button rendered for invoice #" + data.InvoiceID); } } }, function(error) { jslog("Error retrieving invoice status (1): " + error); } ); promise.fail(function (jqXHR, textStatus) { jslog("Error retrieving invoice status (2): " + textStatus); }); } }); });
Back To Catalog
WARRANTY & CONDITION
Most of these items are either new in the box or some are online returns. Some of the items may have been previously opened, used, or have been damaged. The photos used are stock photos and are representative of the merchandise. Each item is listed per their individual UPC label. Please pay close attention to the item's description, as our staff flags item(s) that are incomplete and/or damaged. These items will contain additional details about their condition. ALL SALES ARE FINAL. Items are sold as-is with no warranty. No refunds will be made.
15.00% Buyer's Premium
$2.00 Per Lot Fee
This Auction Uses Proxy Bidding.
Active
Gotrax GKS Electric Scooter for Kid Ages 6-12, Max 4 Miles Range and 7.5 Mph Spe 
MSRP: $149.99 - Used, scratches.
- Current Price $2.00 ( )
-
Your Maximum Bid Is $0.00
- 2 Bid(s) View Bid History
Payment Options Seller Accepts Credit Cards
Details
- Item # 184
- Listing ID 288661091
- End Date
- Start Date
Description
Used, scratches.
Retail Price: $ 149.99
*For Reference Only. Please read the condition comment and look at the pictures of the actual product
OH - Olena
FAQs
How fast does the Gotrax GKS go? ›
Gotrax GKS Electric Scooter for Kid Ages 6-12, Max 4 Miles Range and 7.5 Mph Speed, 6" Solid Rubber Wheels UL2272 Certification, Lightweight Electric Kick Scooter for Kids Boy Girl. Brief content visible, double tap to read full content.
How long does Gotrax GKS battery last? ›A: Hello there Megan, The Gotrax GKS Electric Scooter has a battery life of 4 miles distance or up to 2 hours depending on terrain and charging habits.
Why is my Gotrax GKS scooter beeping? ›A: The beeping means your battery is low. Make sure to plug it in completely so the charger goes from green to red. Then when it is done it'll turn green and unplug it. Don't leave it plugged in over night as you could burn the battery out.
How fast does the Gotrax G4 scooter go? ›Speed & Acceleration
Zooming onto the scene with an impressive top speed of 20 mph, the G4 is easily the fastest scooter in the GoTrax range.
How is Gotrax Apex speed limiter removal done? If you own a Gotrax Apex electric scooter and would love to remove its speed limiter, then you can only succeed by swapping the BMS, battery, motor, and controller. That way, you inject more power into the motor, which is what will make your Gotrax Apex scooter faster.
How many miles can a GoTrax scooter go on a full charge? ›Perfect for short commutes and adventures around the neighborhood with a 15.5 MPH top speed and 12 mile range.
Can I leave my Gotrax scooter charging overnight? ›When you do bring your PEV be sure to not leave it charging overnight. GOTRAX products have overcharge protection but its best to let it charge with in the 4-5 hour time frame.
Can I leave my Gotrax scooter in the rain? ›Our electric scooters are rated IPX4 in waterproofing or higher. They can handle light rain and splashing but prolonged exposure to heavy rain can damage the e-scooter. Be sure to check the weather the days you're riding!
Should I leave my e-scooter charging all the time? ›Avoid overcharging your battery
The best charging process is to stop charging as soon as the scooter's battery is full. Your electric scooter might have built-in overcharge protection but even so, it is always best practice to unplug it once the battery level is full.
E1 Error Code | Clean Console Connection to Battery with Dry Cloth. Replace Console if this doesn't work. |
---|---|
22e Error Code | Unscrew the back of the handlebar panel and check the connections between the throttle and esc and brake. Make sure everything is securely in place and attached. |
How long does GoTrax electric scooter last? ›
The V2 is perfect for short commutes and the 36V battery can keep you out on the road for up to 12 miles on a single charge, or at least that's what the specs say … in realistic conditions you're more likely to see around 10 miles and if you are on the upper end of the 220 lbs weight limit riding the scooter to its max ...
Are GoTrax scooters waterproof? ›For starters, all of GOTRAX's electric scooters and e-bikes have an IP waterproof rating attached to them in their specs dropdown menu.
How long does it take to fully charge a GoTrax scooter? ›Charge Time
The GoTrax Apex can reach full charge within just 4 hours. For a scooter of the Apex's size, specs, and power, this is about industry standard. The charging port is located to the rear of the scooter, just below the fender.
The app will be especially useful for the most popular electric scooter models like the Xiaomi M365, Xiaomi M365 Pro, Ninebot ES2, Ninebot ES4, Ninebot Max, GoTrax XR Ultra, GoTrax GXL Commuter, GoTrax G4, Glion Dolly, Hiboy Max, Hiboy S2, Kugoo S1 Pro, Kugoo M4 Pro, Kugoo G-Booster, Razor E100, Razor E300, Razor ...
How can I make my 4 mph mobility scooter go faster? ›- Upgrade the Battery. Batteries power electric mobility scooters. ...
- Rewind or Upgrade the Motor. ...
- Change the Sprockets. ...
- Reduce Weight. ...
- Remove the Speed Limiter. ...
- Replace the Drive Belt. ...
- Scooter Tires. ...
- Regular Maintenance.
Can You Overcharge a Mobility Scooter Battery? Simply put, no you cannot overcharge your battery. With the majority of batteries now fitted with a cut-off point, you can have peace of mind that your battery will turn off as soon as it is fully charged.
What is the life span of an electric scooter battery? ›Again, the battery's lifespan is counted in charge cycles, typically stated for an electric scooter battery as somewhere between 300 - 500 full cycles of charging/discharging. These numbers roughly correspond to around 3,000 to 10,000 miles of wear and tear.
Is it OK to leave electric scooter charging overnight? ›Never leave an electric scooter charging overnight or for an extended period. Overcharging can lead to overheating, which can lead to a fire.
Is it OK to leave EV plugged in overnight? ›It is almost always completely safe to leave one's EV plugged in. Electric vehicles have systems in place to prevent the battery from being overcharged. Thus, leaving it plugged in is totally cool.
How often should I charge my Gotrax scooter? ›Charging your electric scooter should take no more than 4-6 hours. Don't charge overnight, charging the battery overnight can decrease the batteries lifespan. If you don't use your electric scooter for prolonged periods of time, most likely in winter, we still recommend to charge it every other week and power it on.
Is it OK to ride electric scooter in the rain? ›
Your scooter will be perfectly safe in light rain. You can even cruise through a few shallow puddles without much worry. However, you should avoid riding through super heavy rain and deep puddles.
Are electric scooters okay in rain? ›Let's just say from the start: it's not a good idea to ride an electric scooter in the rain. No e-scooter is completely waterproof and guaranteed to be always impervious to the rain, plus they're difficult to handle. Scooters are intended for dry surfaces and aren't very easy to handle on wet surfaces.
Can rain damage an electric scooter? ›It is advisable to avoid riding your electric scooters during heavy rains. During that time there are higher chances of water clogging and this can lead to submerging the electric system of your e scooter and causing it damage.
Should I charge my scooter to 100%? ›You don't need to charge your battery to 100% every time you use it. In fact, your battery will last longer if you don't charge it to 100% each time. However, if you expect to be using your scooter for a long journey, it's fine to keep charging until you reach 100%.
Should I charge my e-scooter to 100? ›Charge Your E-Scooter Regularly
Charging your electric scooter after every use is not obligatory. But ideally, you should keep your battery between 30% and 80% charged.
If your electric scooter keeps shutting down or cutting out while riding, you've most likely blown a fuse or tripped the circuit breaker. This usually happens due to overloading – going up steep inclines or riding through mud, for example.
Can I buy extra battery for electric scooter? ›The additional external battery for your electric scooter is a product that you connect to the internal battery.
What to do if electric scooter runs out of battery? ›So, if you own an e-vehicle or scooter and it gets low on charge, it is better to tow that vehicle to the nearest charging station. But if you are not near such power stations, it is always best to call for a tow truck.
Can I return my Gotrax scooter? ›Any new and unused product purchased on the Website can be returned within 14 days for a refund (to original method of payment).
What PSI should a Gotrax scooter be? ›Your tires should be at 50 psi to have a smooth ride and avoid pinching the tubes.
What does 30e mean on a Gotrax scooter? ›
Error Code 21e: Current abnormal | Exchange or Return |
---|---|
Error Code 30e: Password Disconnect | Replace Console |
If your electric scooter starts but won't accelerate, then it could be a problem with loose, improperly functioning components or improper settings. To fix such problems: Fix any loose connections. Replace a damaged throttle.
How do you start a GoTrax kids scooter? ›The kids' electric scooters work in the same way. Except some models have our two-button activation system. After your child pushes off, they just have to place their second foot on the button at the rear of the deckboard to engage the motor.
How do you unlock the speed limit on an electric scooter? ›Release the right speed control lever and the left brake at the same time once 10 seconds elapse. Turn off the scooter. Turn on the scooter and you will have managed to unlock the speed limit. You will notice the top speed going from 16km/h to a top of 45km/hr.
What is the lifespan of a scooter? ›Electric scooters usually last for three to five years. Some people say their scooter lasted more than five years. This depends on many factors, including how well it's maintained. Proper maintenance is key to extending the lifespan of an electric scooter.
How long does it take for Gotrax? ›Our standard order processing time is 1-2 business days and orders generally arrive between 3-5 business days after that.
Can GoTrax scooters be tracked? ›GoTrack units are tracking units, not navigation units. The driver does not interact with the system at all while operating the vehicle. Simply put, GoTrack does not show a driver where they are, GoTrack shows someone else where the driver is and where they have been.
Can you ride GoTrax in snow? ›The Gotrax has an IP54 rating that protects the internal circuitry from water damage. You could ride the scooter in the snow and on ice.
Does GoTrax have suspension? ›10" front pneumatic tire and dual 8.5" rear pneumatic tires, 2 suspension system provide fantastic comfort and stability, even on rough surfaces or speed bumps. To ride your GOTRAX E-scooter safely, put one foot on the scooter and the other on the ground to push off.
How often should I charge my electric scooter? ›When you store your electric scooter for a long period, make sure the battery is at least 40-50 % charged. It is advisable to charge your electric scooter minimum once per 30 days. Leaving your electric scooter for about 3 months without charge will cause battery damage.
How many hours should I charge my scooter? ›
Charging times can vary significantly depending on the size of the scooter, type of battery and charge remaining in the battery. However, a full charge can take anywhere from 6 to 10 hours. The battery is fully charged when the light on your charger turns green. In some cases, this light might also flash green.
How do you know when your Gotrax scooter is fully charged? ›The charger box will have a green light when fully charged and a red light when charging.
How fast can a GoTrax GXL V2 go? ›Not only is the GXL V2 super affordable, it has a decent top speed of 15.5 mph, a range of 12 miles, and additional features like a dual-braking system and LED light setup that are often found on more expensive models.
How fast does the GoTrax G2 go? ›Make your daily ride a blast with Gotrax's G2 Electric Kick Scooter! The power-packed 200-watt motor gives the G2 electric scooter the kick it needs to reach a top speed of 15.5 mph - so you'll touch down at your destination in record time!
How fast does the GoTrax G3 go? ›Riders looking for high performing specs without digging into the higher price range will love the G3. The G3 reaches speeds up to 15 miles per hour and travels up to 15.5 miles per charge, helping you get to and from your destination better than ever before.
Can the GoTrax get wet? ›Our electric scooters are rated IPX4 in waterproofing or higher. They can handle light rain and splashing but prolonged exposure to heavy rain can damage the e-scooter. Be sure to check the weather the days you're riding!
Are GoTrax scooter trackable? ›You are probably looking for GOTRAX, they make electric scooters and hoverboards. However, if you want to put a GPS tracker on an electric scooter check out our asset tracker or give us a call at 1-800-772-2885.
Does the Gotrax have Bluetooth? ›Features. Find a hoverboard that checks off all your boxes. LED Infinity wheels, chrome finishes, self-balancing, and bluetooth are just a few of perks to our hoverboards.
Is the Gotrax g2 waterproof? ›For starters, all of GOTRAX's electric scooters and e-bikes have an IP waterproof rating attached to them in their specs dropdown menu. IP stands for ingress protection which ranges from IP01 to IP68.
How much weight can a GoTrax hold? ›Maximum weight capacity is 220 lbs.
How much air pressure for GoTrax scooter? ›
Your tires should be at 50 psi to have a smooth ride and avoid pinching the tubes.
Does the GoTrax G3 have a lock on it? ›The GoTrax G3 also comes with a built in wire lock.
Can I leave my electric scooter in the rain? ›Remember, water-resistant electric scooters might tolerate excessive moisture, but the battery won't stand up to the exposure. Leaving a scooter in rain is never a good idea. You should always park it in a covered area for protection or cover it with a tarp.