KTM 125 SX Motorcycle Reviews on Cycle Insider (2024)

Motorcycles' + '

'); } } $('.aa-InputWrapperPrefix').removeClass('loading_img_icon'); $(this).addClass('search_img_icon'); if($( "#autocomplete_input_mobile" ).val().length>0){ $('.ui_filter').show(); $('.aa-ClearButton_mobile').show(); } if($( "#autocomplete_input_mobile" ).val().length<=0){; $('.ui_filter').show(); $('.aa-ClearButton_mobile').hide(); } $('.dealership_type').on( "click", function() { localStorage.setItem("refresh",false); event.preventDefault(); if($('.motorcycle_type').hasClass('selected')){ $('.motorcycle_type').removeClass('selected'); } if($(this).hasClass('selected')){ $('.dealership_type').removeClass('selected'); localStorage.setItem('type_filter_search',''); } else{ $(this).addClass('selected'); localStorage.setItem('type_filter_search','dealership'); } $(".global_search_mobile-page-ul").hide(); $('#autocomplete_input_mobile').autocomplete( "close" ); $('#autocomplete_input_mobile').keydown(); }); $('.motorcycle_type').on( "click", function() { localStorage.setItem("refresh",false); event.preventDefault(); if($('.dealership_type').hasClass('selected')){ $('.dealership_type').removeClass('selected'); } if($(this).hasClass('selected')){ $('.motorcycle_type').removeClass('selected'); localStorage.setItem('type_filter_search',''); } else{ $(this).addClass('selected'); localStorage.setItem('type_filter_search','motorcycle'); } $(".global_search_mobile-page-ul").hide(); $('#autocomplete_input_mobile').autocomplete( "close" ); $('#autocomplete_input_mobile').keydown(); }); $('.global_search_mobile-page-ul').on( "touchmove", function(event) { $('#autocomplete_input_mobile').blur(); }); if($('.motorcycle_type').hasClass('selected')){ $('.location_filter_search').show(); } }, close: function(event, ui) { $(".global_search_mobile-page-ul").show(); }, select: function(event, ui) { var a = {}; let d = ""; let b =""; var redirect_url = ""; $(".aa-DetachedSearchButtonPlaceholder").text(""); if(ui.item._index === CYCLE_KEYWORD_INDEX){ let display_title = ui.item._source.manu; if($("#autocomplete_input_mobile").val() != "" && $( "#autocomplete_input_mobile" ).val() != undefined){ display_title = ui.item._source.manu+" "+ui.item._source.model; } a['view'] = 'motorcycles'; a['manu'] = ui.item._source.manu; if($("#autocomplete_input_mobile").val() != "" && $( "#autocomplete_input_mobile" ).val() != undefined){ a['model'] = ui.item._source.model; } if(ui.item._source.type != "" && ui.item._source.type != undefined){ a['type'] = ui.item._source.type; } $('#autocomplete_input_mobile').val(display_title); $('#autocomplete_input_mobile').attr('placeholder',display_title); $('#autocomplete_input_mobile').blur(); $(".aa-DetachedSearchButtonPlaceholder").text(display_title); setTimeout(function() { d = JSON.stringify(a); b = JSON.parse(d); $.post('https://stage.cycleinsider.com/ajax/getSearchURL.php', b, redirect_url => { document.location = redirect_url; }); }, 500); }else if(ui.item._index === 'seeall_link'){ a['view'] = 'rvs'; a['manu'] = ui.item._source.manu; $('#autocomplete_input_mobile').val(ui.item._source.redirect_url); window.location.href = ui.item._source.redirect_url; }else{ event.preventDefault(e); } $('.aa-ClearButton').hide(); }, //adding new custome class classes: { "ui-autocomplete": "global_search_mobile-page-ul", }, }).data('ui-autocomplete')._renderItem = function(ul, item){ if(item._index === CYCLE_KEYWORD_INDEX){ let display_title = toTitleCase(item._source.manu)+" - "; let display_pill_type = "make"; if($("#autocomplete_input_mobile").val() != "" && $( "#autocomplete_input_mobile" ).val() != undefined){ display_title = toTitleCase(item._source.manu)+" "+toTitleCase(item._source.model)+" - "; if(item._source.model != "" && item._source.model != undefined){ display_pill_type = "model"; } } var t = String(display_title).replace( new RegExp(this.term, "gi"), "$&"); return $("

  • ") .data("item.autocomplete",item) .append('' + t + ""+ display_pill_type + '') .appendTo(ul); } if(item._index === "seeall_link"){ var t = String(item._source.title).replace( new RegExp(this.term, "gi"), "$&"); return $("

  • ") .data("item.autocomplete",item) .append('' + t + '') .appendTo(ul); } if(item._index === '' || item._index === DEALERS_INDEX){ return $("

  • ") .data("item.autocomplete",item) .append('No matching results') .appendTo(ul); } }; $('.mobile_view_inputbox').on( "click", function() { $('body').addClass('aa-Detached'); $('.mobile_globale_search').show(100); $('header').hide(100); $('#autocomplete_input_mobile').keydown(); $('#autocomplete_input_mobile').filter(':visible').focus(); }); $('.aa-DetachedCancelButton').on( "click", function() { $('body').removeClass('aa-Detached'); $('.mobile_globale_search').hide(100); $('header').show(100); $('.global_search_desktop-page-ul').hide(300); $('.global_search_mobile-page-ul').hide(300); }); $(window).on('load', function(){ localStorage.setItem('type_filter_search',''); }); $('.aa-ClearButton_mobile').on( "click", function(e) { $(this).hide(); $('#autocomplete_input_mobile').val(""); $('#autocomplete_input_mobile').keydown(); $('#autocomplete_input_mobile').filter(':visible').focus(); $(".aa-DetachedSearchButtonPlaceholder").text(""); $('.aa-DetachedSearchButtonPlaceholder').text("Search for an RV or dealership"); return false; }); $('.aa-ClearButton').on( "click", function(e) { $(this).hide(); $("#autocomplete_input").val(""); $('#autocomplete_input').keydown(); $("#autocomplete_input").focus(); return false; }); $(document).ready(function() { $(window).scroll(function() { if ($(window).scrollTop() > 343) { $('.kw-title-mobile').hide(); $('.mobile-filters-pills-selected').css('top','35px'); $('.kws-search-container-mobile ').addClass('sticky'); } else { $('.kw-title-mobile').show(); $('.mobile-filters-pills-selected').css('top','66px'); $('.kws-search-container-mobile ').removeClass('sticky'); } }); $( "#autocomplete_input" ).on( "keydown", function(event) { if (event.key === 'Enter') { const payload = { event: "cycleInsider_autocompleteInteraction", data: { value: 1, label: "Autocomplete - Enter pressed", elementClass: "aa-Input", } } // TODO - remove after IN-1463 is released, used for QA console.log('pushing to datalayer - enter'); window.dataLayer.push(payload); console.log(payload); } }); // Attach a delegated event handler for autocomplete $( '.global_search_desktop-page-ul' ).on( 'click', 'span.motorcycle_type, span.dealership_type, li.ui-menu-item > span.see_all_link, li.ui-menu-item', function(event) { const currentElement = event.currentTarget.getAttribute("class"); let label = "Autocomplete - result click"; let elementClass = "li.ui-menu-item"; if (currentElement.search("see_all_link") !== -1) { label = "Autocomplete - See all clicked"; elementClass = "span.title_search"; } else if (currentElement.search("motorcycle_type") !== -1) { label = "Autocomplete - Motorcycles button click" elementClass = "span.motorcycle_type"; } else if (currentElement.search("dealership_type") !== -1) { label = "Autocomplete - Dealerships button click"; elementClass = "span.dealership_type"; } const payload = { event: "cycleInsider_autocompleteInteraction", data: { value: 1, label: label, elementClass: elementClass, } } // TODO - remove after IN-1463 is released, used for QA console.log('pushing to datalayer'); window.dataLayer.push(payload); console.log(payload); });});

    • All Motorcycle Reviews
    • >
    • KTM
    • >
    • 125 SX
    • >

    MOTORCYCLE Type

    Make and model

    Year

    4.9 (35&nbspreviews)

    Write a review

    Reliability

    4.8

    Overall quality

    4.9

    Performance

    4.9

    Comfort

    4.5

    For sale near youMatching Motorcycle for sale near you
    ......$0......$0......$0......$0

    Top 10 Motorcycles

    Reviews

    Stars Refinement

    35 ratings and reviews

    Voted most helpful

    review

    Muriel

    Redmond, Washington

    Reviewed on May 7, 2012

    Motorcycle reviewed 2002 KTM 125 SX KTM 125 SX Motorcycle Reviews on Cycle Insider (12)

    5.0

    Seriously - I've been trying out a few bikes to find the right combo, and this is it. Yes, the seat is hard. It's so nice and light, that it offsets its height. It has plenty of power and great suspension. I really liked my KX100, but felt a bit folded up on it, so this is perfect. It was a little nerv... read more

    Seriously - I've been trying out a few bikes to find the right combo, and this is it. Yes, the seat is hard. It's so nice and light, that it offsets its height. It has plenty of power and great suspension. I really liked my KX100, but felt a bit folded up on it, so this is perfect. It was a little nervous for my first ride out, but no crashes - just sore. Now I just need to get in better shape (yes, that 160 lbs. should be closer to 125 - lb. for lb. Go get one ladies!!!

    Reliability

    5.0

    Quality

    5.0

    Performance

    5.0

    Comfort

    4.0

    Show less

    Helpful (0)

    KTM 125 SX Motorcycle Reviews on Cycle Insider (13)Report

    Motorcycle reviewed 2003 KTM 125 SX KTM 125 SX Motorcycle Reviews on Cycle Insider (14)

    5.0

    It's an all-around good bike. The powerband dosent last as long as a CR but she rips.... read more

    It's an all-around good bike. The powerband dosent last as long as a CR but she rips.

    Reliability

    5.0

    Quality

    5.0

    Performance

    5.0

    Comfort

    3.0

    Show less

    Helpful (2)

    KTM 125 SX Motorcycle Reviews on Cycle Insider (15)Report

    Voted most helpful

    review

    nick

    hampstead, New Hampshire

    Reviewed on July 8, 2009

    Motorcycle reviewed 2004 KTM 125 SX KTM 125 SX Motorcycle Reviews on Cycle Insider (16)

    5.0

    I just got my 2004 KTM 125sx for my 14th birthday off craigslist. I ride in mostly trails and woods and surprisingly the two stoke works, for me, beter that a 4 stroke. All of my friends have 125's either Hondas, Yamahas, or Suzukis but my bike smoked them. This bike is definitely faster that the Japanese man... read more

    I just got my 2004 KTM 125sx for my 14th birthday off craigslist. I ride in mostly trails and woods and surprisingly the two stoke works, for me, beter that a 4 stroke. All of my friends have 125's either Hondas, Yamahas, or Suzukis but my bike smoked them. This bike is definitely faster that the Japanese manufacturers bikes and comes stock with a lot of nice extras. I would stongly recommend this bike even for a trail rider because it simply is fun and that's what riding is to me.

    Reliability

    5.0

    Quality

    5.0

    Performance

    5.0

    Comfort

    4.0

    Show less

    Helpful (0)

    KTM 125 SX Motorcycle Reviews on Cycle Insider (17)Report

    Voted most helpful

    review

    Eric

    Indian Trail, North Carolina

    Reviewed on August 8, 2007

    Motorcycle reviewed 2004 KTM 125 SX KTM 125 SX Motorcycle Reviews on Cycle Insider (18)

    5.0

    Ok, watch out for this thing when you see it coming up behind you. I weigh 140 pounds, and this thing will haul BUTT with me on it. But, who ever made the suspension for this thing, went way wrong. How wrong? You hit the ground over a 20ft double, and the thing bottoms out so bad that you think it is goin... read more

    Ok, watch out for this thing when you see it coming up behind you. I weigh 140 pounds, and this thing will haul BUTT with me on it. But, who ever made the suspension for this thing, went way wrong. How wrong? You hit the ground over a 20ft double, and the thing bottoms out so bad that you think it is going to break it in half. If you weigh more than 150 pounds, I will recommend that you turn your suspension 15 clicks out. Also, the front fender hits the front tire when you land. Tightening up the rebound to the suspension will help that. For my last negitive, I would like to give you a tip: get some monkey butt chafing powder BEFORE you ride. You will need this because the seat may feel soft to the touch with your hand, but it is really HARD AS A ROCK. No joke. Ok, and now the positives. Everything else on the bike is awesome. The powerband is easy to control, and the bike has a TON of power down low (for a 2 stroke). Just make sure and watch it coming out of the corners, because it will get away from you. This bike just continues the KTM's dominating history. (Even if they are a little overpriced.)

    Reliability

    4.0

    Quality

    5.0

    Performance

    5.0

    Comfort

    4.0

    Show less

    Helpful (0)

    KTM 125 SX Motorcycle Reviews on Cycle Insider (19)Report

    Voted most helpful

    review

    Dillon Gruber

    Greenville, Pennsylvania

    Reviewed on July 19, 2007

    Motorcycle reviewed 2002 KTM 125 SX KTM 125 SX Motorcycle Reviews on Cycle Insider (20)

    5.0

    I'm 16 and I've had my KTM for 3 years and absolutely love it. Its power band is nice and low in the rpm range, perfect for the tight stuff in the woods and the engine RIPS. I have rode no other stock 125 that has the out right power or torque of this bike, and throttle response is instant. The hydraulic clut... read more

    I'm 16 and I've had my KTM for 3 years and absolutely love it. Its power band is nice and low in the rpm range, perfect for the tight stuff in the woods and the engine RIPS. I have rode no other stock 125 that has the out right power or torque of this bike, and throttle response is instant. The hydraulic clutch is great every time you pull it. It starts on the first or second kick every time. It also looks better than any other brand, in my opinion. The ONLY complaint I have is that the seat is as hard as a rock, after riding for 30 mins you will just want to stand.

    Reliability

    5.0

    Quality

    5.0

    Performance

    5.0

    Comfort

    3.0

    Show less

    Helpful (1)

    KTM 125 SX Motorcycle Reviews on Cycle Insider (21)Report

    For sale near youMotorcycles for sale near you

    Voted most helpful

    review

    Carmen St.Arneault

    nottingham, New Hampshire

    Reviewed on June 9, 2007

    Motorcycle reviewed 2004 KTM 125 SX KTM 125 SX Motorcycle Reviews on Cycle Insider (22)

    5.0

    This bike is the best bike I have ever ridden. I have owned a Honda and a Yamaha and found things wrong with both but not my 04 125SX. The Yamaha didn't have enough traction up front and would lose traction in corners easily. The Honda didn't have enough guts but my 125 SX handles great and has so much more p... read more

    This bike is the best bike I have ever ridden. I have owned a Honda and a Yamaha and found things wrong with both but not my 04 125SX. The Yamaha didn't have enough traction up front and would lose traction in corners easily. The Honda didn't have enough guts but my 125 SX handles great and has so much more power than any other 125 two stroke. I love this bike and you will too if you buy one. The only thing I dislike is that the seat is too hard but I don't notice it when I'm riding.

    Reliability

    5.0

    Quality

    5.0

    Performance

    5.0

    Comfort

    4.0

    Show less

    Helpful (0)

    KTM 125 SX Motorcycle Reviews on Cycle Insider (23)Report

    Voted most helpful

    review

    JJ Kent

    manchester, Vermont

    Reviewed on May 30, 2007

    Motorcycle reviewed 2003 KTM 125 SX KTM 125 SX Motorcycle Reviews on Cycle Insider (24)

    5.0

    THIS BIKE IS AMAZING! I BOUGHT THIS USED AND HAVE RIDDEN IT HARD EVER SINCE. ONLY DRAW BACK WAS THE LOWER BEARING ON THE CONNECTOR ROD SEIZED AFTER 4 YEARS OF RIDING. WITH THAT FIXED THE BIKE WAS AWESOME. I RIDE THE WOODS AND HAVE WON MANY ENDUROS. I BEAT ALL THE KIDS WITH THE BIG HEAVY 4 STROKES. THIS IS A G... read more

    THIS BIKE IS AMAZING! I BOUGHT THIS USED AND HAVE RIDDEN IT HARD EVER SINCE. ONLY DRAW BACK WAS THE LOWER BEARING ON THE CONNECTOR ROD SEIZED AFTER 4 YEARS OF RIDING. WITH THAT FIXED THE BIKE WAS AWESOME. I RIDE THE WOODS AND HAVE WON MANY ENDUROS. I BEAT ALL THE KIDS WITH THE BIG HEAVY 4 STROKES. THIS IS A GREAT BIKE!

    Reliability

    5.0

    Quality

    5.0

    Performance

    5.0

    Comfort

    5.0

    Show less

    Helpful (1)

    KTM 125 SX Motorcycle Reviews on Cycle Insider (25)Report

    Voted most helpful

    review

    corey poston

    dallas, Texas

    Reviewed on April 19, 2007

    Motorcycle reviewed 2003 KTM 125 SX KTM 125 SX Motorcycle Reviews on Cycle Insider (26)

    5.0

    This bike is a beast! If you're not good at riding and not comfotable on a big bike, don't get it because it will handle you and you'll get hurt. I've been racing for at least 5 years and it's a lot!... read more

    This bike is a beast! If you're not good at riding and not comfotable on a big bike, don't get it because it will handle you and you'll get hurt. I've been racing for at least 5 years and it's a lot!

    Reliability

    5.0

    Quality

    5.0

    Performance

    5.0

    Comfort

    5.0

    Show less

    Helpful (1)

    KTM 125 SX Motorcycle Reviews on Cycle Insider (27)Report

    Voted most helpful

    review

    Patrick

    Richmond, Virginia

    Reviewed on November 16, 2006

    Motorcycle reviewed 2004 KTM 125 SX KTM 125 SX Motorcycle Reviews on Cycle Insider (28)

    5.0

    I am an intermediate level mx rider (C class). I owned an 04 KTM 125sx for 1.5 years. It was the first non-japanese bike that I had owned. Good: Overall quality was second to none. From a quality stand point, I would not hesitate to buy another KTM. The motor was great. Power was very broad for a 125; the K... read more

    I am an intermediate level mx rider (C class). I owned an 04 KTM 125sx for 1.5 years. It was the first non-japanese bike that I had owned. Good: Overall quality was second to none. From a quality stand point, I would not hesitate to buy another KTM. The motor was great. Power was very broad for a 125; the KTM would pull turns a gear higher than other 125s. Quality of components was excellent. Bad: The worst trait about the bike was that the front end provided very little feedback in turns. The front end would tuck with no warning on flat turns. Stabillity was also somewhat of an issue, though not as much of a concern as the vague front end. My suspension was stock, perhaps I could have fixed the front end with some suspensin tuning. 06 SX's got new frames. The front ends are much better on the 06's.

    Reliability

    5.0

    Quality

    5.0

    Performance

    4.0

    Comfort

    5.0

    Show less

    Helpful (0)

    KTM 125 SX Motorcycle Reviews on Cycle Insider (29)Report

    Voted most helpful

    review

    stryker

    los alamitos, California

    Reviewed on October 30, 2006

    Motorcycle reviewed 2002 KTM 125 SX KTM 125 SX Motorcycle Reviews on Cycle Insider (30)

    4.0

    This bike is great for the track and it is very reliable in stock condition. It starts very easy on first or second kick. It corners good and jumps great. It's fast for a 125. I would recommend this bike to anyone looking to ride some real tracks.... read more

    This bike is great for the track and it is very reliable in stock condition. It starts very easy on first or second kick. It corners good and jumps great. It's fast for a 125. I would recommend this bike to anyone looking to ride some real tracks.

    Reliability

    5.0

    Quality

    5.0

    Performance

    5.0

    Comfort

    3.0

    Show less

    Helpful (0)

    KTM 125 SX Motorcycle Reviews on Cycle Insider (31)Report

    • 1
    • 2
    • 3
    • 4
    • 1 - 10 of 35 reviews

    For sale near youMore Matching Motorcycles for sale near you
    ......$0......$0......$0......$0......$0

    ×

    Contact Dealership

    KTM 125 SX Motorcycle Reviews on Cycle Insider (37)

    Message Sent!

    Be on the lookout for an email from the dealership.

    Do you have a motorcycle experience to share?

    Help others by leaving a review for a motorcycle or dealership.

    Write a Review

  • KTM 125 SX Motorcycle Reviews on Cycle Insider (2024)

    References

    Top Articles
    Latest Posts
    Article information

    Author: Greg Kuvalis

    Last Updated:

    Views: 5459

    Rating: 4.4 / 5 (75 voted)

    Reviews: 82% of readers found this page helpful

    Author information

    Name: Greg Kuvalis

    Birthday: 1996-12-20

    Address: 53157 Trantow Inlet, Townemouth, FL 92564-0267

    Phone: +68218650356656

    Job: IT Representative

    Hobby: Knitting, Amateur radio, Skiing, Running, Mountain biking, Slacklining, Electronics

    Introduction: My name is Greg Kuvalis, I am a witty, spotless, beautiful, charming, delightful, thankful, beautiful person who loves writing and wants to share my knowledge and understanding with you.