Fit Bike Co 2026 PRK BMX Bike (MD) (20.5″ Toptube) (Oxford Blue)
Original price was: $529.95.$158.99Current price is: $158.99.
Description
Fit Bike Co 2026 PRK BMX Bike Description:
Engineered for riders who live for transition, the Fit Bike Co 2026 PRK BMX Bike is purpose-built to dominate parks and bowls. With a frame designed specifically for park riding, it features a quick 12.6â rear end, lower 7.25â standover, and a balanced 75.3° head angle for smooth control on ramps and transitions. The PRK forkâs 25mm offset, peg clearance cut, and gyro-ready 172mm steerer tube make it ready for endless spins and whips. Available in 20â and 20.5â top tube options, each size is paired with tailored crank lengths and 8.7â bars for the perfect fit. Finished with a Pivotal seat, alloy sprocket, and double-wall rear rim, the PRK is dialed in for the park and beyond.
This 20.5″ toptube option is designed for riders in the ballpark of 5’4″ – 5’8″ in height. A 20.0″ toptube version is available for riders around 5′ – 5’4″.
Specifications:
- Frame: Chromoly front triangle (20.5″ TT)
- Fork: Chromoly steerer tube, tapered legs w/ peg cut, welded insert (25mm offset)
- Headset: Integrated, sealed
- Stem: Fit top load
- Bars: 2-piece (8.7″ rise) (29″ width)
- Grips: –
- Cranks: Tubular 3-piece chromoly (165mm length)
- Bottom Bracket: Mid, sealed
- Pedals: Fit PC
- Sprocket: Fit Alloy Key (25T)
- Chain: –
- Front Hub: Sealed bearings, female axle
- Rear Hub: Sealed cassette
- Driver: 9T
- Front Rim: Fit S1W
- Rear Rim: Fit, double wall
- Front Tire: Fit OEM (20 x 2.4″)
- Rear Tire: Fit OEM (20 x 2.4″)
- Seat: Fit, pivotal
- Seat Post: Alloy (200mm)
- Seat Clamp: –
- Brake Lever: Two-finger lever
- Brakes: U-brake with low-tension spring, linear cable
- Gyro: Included
- Gyro Tabs: Included
- Brake Mounts: –
- Extras: –
- Color: Oxford Blue
- Weight: –
Geometry:
- Toptube Length: 20.5″
- Chainstay Length: 12.6″
- Headtube Angle: 75.3°
- Seattube Angle: 71°
- Bottom Bracket Height: 11.6″
- Standover: 7.25″
- Recommended Sizing Guide: 5’4″ – 5’8″
Popular Accessories:
Pro-Tec Classic Certified Helmet
View Item
Dan’s Comp Deluxe 20″ BMX Inner Tube
View Item
DK Random Wrench V3 Tool
View Item
Space Brace Dennis Enarson Knee Pads
View Item
Cult Butter PC Peg
View Item
Kryptonite Kryptoflex Keeper 512 4-Digit Combo Cable Lock
View Item
Wooder x Dan’s Comp Tire Wedgie
View Item
Cult x Vans Flangeless Grips
View Item
Dan’s Comp Laced Bolt T-Shirt
View Item
Odyssey Grandstand V2 PC Pedals(9/16″)
View Item
Colony Paterico Pivotal Seat
View Item
Higher Footwear Crypt Canvas Shoes
View Item
document.addEventListener("DOMContentLoaded", function() { // Select all elements with the class 'recommended-accessory-marketing-price' const priceElements = document.querySelectorAll('.recommended-accessory-marketing-price');
priceElements.forEach(function(priceElement) { const hasStrikethrough = priceElement.querySelector('s');
if (!hasStrikethrough) { const marketingDiv = priceElement.closest('.recommended-accessory-marketing'); const button = marketingDiv.querySelector('.recommended-accessory-marketing-button'); const productLink = marketingDiv.querySelector('a[href]');
if (button && productLink) {
button.textContent = "View Item"; button.href = productLink.href; button.removeAttribute('onclick'); button.style.backgroundColor = '#464647'; button.style.color = '#fff'; button.style.border = '1px solid #464647'; } } }); });
document.addEventListener("DOMContentLoaded", () => { const titles = document.querySelectorAll(".recommended-accessory-marketing-title"); titles.forEach(title => { if (title.textContent.length > 100) { title.textContent = title.textContent.slice(0, 100); } }); });
function cleanImageSrcSmall() { // Get all img elements on the page const smallImages = document.querySelectorAll('img');
// Loop through each img element smallImages.forEach((img) => { const src = img.getAttribute('src');
// Check if the src contains the unwanted path and remove it if (src.includes('cdn-cgi/image/f=auto,width=200/')) { const cleanedSrcSmall = src.replace('cdn-cgi/image/f=auto,width=200/', ''); img.setAttribute('src', cleanedSrcSmall); } }); }
document.addEventListener('DOMContentLoaded', cleanImageSrcSmall);
document.addEventListener("DOMContentLoaded", function () { const MOBILE_BREAKPOINT = 598;
function updateControls(carousel, currentIndex) { const prevButton = carousel.querySelector('.prev'); const nextButton = carousel.querySelector('.next'); const scrollContainer = carousel.querySelector('.scroll-container'); const totalItems = scrollContainer.querySelectorAll('.scroll-item').length;
prevButton.style.display = currentIndex === 0 ? 'none' : 'block'; nextButton.style.display = currentIndex === totalItems - 1 ? 'none' : 'block'; }
function scrollNext(carousel) { const scrollContainer = carousel.querySelector('.scroll-container'); const scrollItem = scrollContainer.querySelector('.scroll-item'); let currentIndex = parseInt(carousel.getAttribute('data-current-index'), 10) || 0;
if (scrollItem && currentIndex < scrollContainer.children.length - 1) { scrollContainer.scrollLeft += scrollItem.clientWidth; currentIndex++; } carousel.setAttribute('data-current-index', currentIndex); updateControls(carousel, currentIndex); } function scrollPrev(carousel) { const scrollContainer = carousel.querySelector('.scroll-container'); const scrollItem = scrollContainer.querySelector('.scroll-item'); let currentIndex = parseInt(carousel.getAttribute('data-current-index'), 10) || 0; if (scrollItem && currentIndex > 0) { scrollContainer.scrollLeft -= scrollItem.clientWidth; currentIndex--; }
carousel.setAttribute('data-current-index', currentIndex); updateControls(carousel, currentIndex); }
function onScroll(carousel) { const scrollContainer = carousel.querySelector('.scroll-container'); const scrollItem = scrollContainer.querySelector('.scroll-item'); if (!scrollItem) return;
const scrollLeft = scrollContainer.scrollLeft; const itemWidth = scrollItem.clientWidth; const currentIndex = Math.round(scrollLeft / itemWidth);
carousel.setAttribute('data-current-index', currentIndex); updateControls(carousel, currentIndex); }
function initializeCarousel(carousel) { const scrollContainer = carousel.querySelector('.scroll-container'); const prevButton = carousel.querySelector('.prev'); const nextButton = carousel.querySelector('.next');
prevButton.addEventListener('click', function () { scrollPrev(carousel); });
nextButton.addEventListener('click', function () { scrollNext(carousel); });
scrollContainer.addEventListener('scroll', function () { onScroll(carousel); });
carousel.setAttribute('data-current-index', 0); updateControls(carousel, 0); }
const carousels = document.querySelectorAll('._carousel'); carousels.forEach(initializeCarousel);
window.addEventListener('resize', function () { carousels.forEach(function (carousel) { const currentIndex = parseInt(carousel.getAttribute('data-current-index'), 10) || 0; updateControls(carousel, currentIndex); }); }); });
For assistance building your new bike, please check out our tech help section here for instructions and tips on how to build your bike to ensure it is safe.
Dan’s Comp recommends riding with a helmet to protect that brain. Shop our selection of freestyle helmets here.
Need help finding the right bike for you? Not sure what size would suit you best? Check out our BMX buyers guide video below!
Note: To ensure that every component on your bicycle is working properly, Dan’s Comp recommends that all bikes be assembled by a qualified mechanic. Improper assembly of your bicycle may lead to premature wear or failure of individual components such as headsets, crank assembly and wheels. Failure to do so may void the manufacturer warranty.
This product was added to our catalog on August 22, 2025














