Checkmate
Heavy-Duty Steel Parallettes Bars (Pair) — 150kg Rated Calisthenics Dip Station
Heavy-Duty Steel Parallettes Bars (Pair) — 150kg Rated Calisthenics Dip StationHeavy-Duty Steel Parallettes Bars (Pair) — 150kg Rated Calisthenics Dip StationHeavy-Duty Steel Parallettes Bars (Pair) — 150kg Rated Calisthenics Dip StationHeavy-Duty Steel Parallettes Bars (Pair) — 150kg Rated Calisthenics Dip Station

24/7 Gym Equipment

A$95

Heavy-Duty Steel Parallettes Bars (Pair) — 150kg Rated Calisthenics Dip Station

:root { --bg: #f9f9f9; --card: #ffffff; --card-alt: #f2f2f2; --border: #dcdcdc; --accent: #9a7209; --accent-lt: #f5e9c8; --text: #1a1a1a; --muted: #4a4a4a; --faint: #888888; --green: #2a7a48; --green-bg: #eaf5ee; --red: #b83232; --red-bg: #fdecea; --blue: #1a4a8a; --blue-bg: #eaf0fa; --shadow: rgba(0,0,0,.06); --stat-num: #c8391a; } * { box-sizing: border-box; margin: 0; padding: 0; } body { background: var(--bg); color: var(--text); font-family: 'Barlow', sans-serif; font-size: 16px; line-height: 1.65; } .pd { max-width: 900px; margin: 0 auto; padding: 36px 24px 80px; } /* ── BADGES ── */ .badge-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; } .badge { display: inline-flex; align-items: center; gap: 6px; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; padding: 5px 12px; border-radius: 3px; } .b-green { background: var(--green-bg); color: var(--green); border: 1px solid var(--green); } .b-gold { background: var(--accent-lt); color: var(--accent); border: 1px solid var(--accent); } .b-grey { background: var(--card-alt); color: var(--muted); border: 1px solid var(--border); } .b-red { background: var(--red-bg); color: var(--red); border: 1px solid var(--red); } .b-blue { background: var(--blue-bg); color: var(--blue); border: 1px solid var(--blue); } .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); display: inline-block; animation: blink 1.8s infinite; } @keyframes blink { 0%,100%{opacity:1} 50%{opacity:.25} } /* ── H1 ── */ .pd-h1 { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 32px; text-transform: uppercase; letter-spacing: .02em; color: var(--text); line-height: 1.1; margin-bottom: 4px; } .pd-h1 .sub { color: var(--accent); font-size: 19px; display: block; margin-top: 5px; font-weight: 700; } /* ── INTRO ── */ .pd-intro { border-left: 4px solid var(--accent); background: var(--accent-lt); border-radius: 0 6px 6px 0; padding: 16px 20px; margin: 18px 0 28px; } .pd-intro p { font-size: 15.5px; color: var(--muted); line-height: 1.75; } .pd-intro p strong { color: var(--text); } /* ── SECTION LABELS ── */ .lbl { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; } h2.stitle { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 23px; letter-spacing: .02em; text-transform: uppercase; color: var(--text); margin-bottom: 16px; line-height: 1.1; } /* ── STAT STRIP ── */ .stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-bottom: 28px; } @media(max-width:600px){ .stats { grid-template-columns: repeat(2,1fr); } } .stat { background: var(--card); border: 1px solid var(--border); border-radius: 8px; padding: 16px 12px; text-align: center; box-shadow: 0 1px 4px var(--shadow); transition: border-color .2s; } .stat:hover { border-color: var(--stat-num); } .stat-n { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 28px; color: var(--stat-num); line-height: 1; display: block; } .stat-u { font-size: 12px; color: var(--stat-num); font-weight: 600; } .stat-l { font-size: 10px; color: var(--faint); margin-top: 5px; display: block; text-transform: uppercase; letter-spacing: .05em; font-family: 'Barlow Condensed', sans-serif; } /* ── HIGHLIGHT BOX ── */ .hi-box { background: var(--card); border: 1px solid var(--border); border-left: 4px solid var(--accent); border-radius: 0 6px 6px 0; padding: 16px 20px; margin: 22px 0; font-size: 15px; color: var(--muted); line-height: 1.7; } .hi-box strong { color: var(--text); } /* ── FEATURES GRID ── */ .feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 28px; } @media(max-width:560px){ .feat-grid { grid-template-columns: 1fr; } } .feat { background: var(--card); border: 1px solid var(--border); border-radius: 8px; padding: 15px 17px; display: flex; gap: 12px; align-items: flex-start; box-shadow: 0 1px 3px var(--shadow); transition: border-color .2s; } .feat:hover { border-color: var(--accent); } .f-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; } .f-body strong { display: block; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: .04em; color: var(--text); margin-bottom: 3px; } .f-body span { font-size: 13px; color: var(--muted); line-height: 1.4; } /* ── 3-CARD GRID ── */ .three-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 28px; } @media(max-width:540px){ .three-grid { grid-template-columns: 1fr; } } .three-card { background: var(--card); border: 1px solid var(--border); border-radius: 8px; padding: 20px 16px; text-align: center; box-shadow: 0 1px 3px var(--shadow); transition: border-color .2s; } .three-card:hover { border-color: var(--accent); } .tc-icon { font-size: 32px; display: block; margin-bottom: 10px; } .tc-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 15px; text-transform: uppercase; letter-spacing: .05em; color: var(--text); display: block; margin-bottom: 6px; } .tc-desc { font-size: 12px; color: var(--muted); line-height: 1.5; } /* ── EXERCISE GRID ── */ .ex-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 28px; } @media(max-width:540px){ .ex-grid { grid-template-columns: 1fr; } } .ex-card { background: var(--card); border: 1px solid var(--border); border-radius: 8px; padding: 15px 17px; } .ex-card h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: var(--accent); margin-bottom: 10px; border-bottom: 1px solid var(--border); padding-bottom: 7px; } .ex-list { list-style: none; } .ex-list li { font-size: 13px; color: var(--muted); padding: 5px 0; border-bottom: 1px solid var(--border); display: flex; gap: 8px; align-items: flex-start; } .ex-list li:last-child { border-bottom: none; } .ex-list li::before { content: '→'; color: var(--accent); font-weight: 700; flex-shrink: 0; } /* ── SPECS TABLE ── */ .sp-table { width: 100%; border-collapse: collapse; font-size: 14px; margin-bottom: 28px; } .sp-table tr { border-bottom: 1px solid var(--border); } .sp-table tr:last-child { border-bottom: none; } .sp-table td { padding: 11px 16px; vertical-align: top; } .sp-table td:first-child { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: var(--accent); width: 44%; white-space: nowrap; background: var(--card-alt); } .sp-table td:last-child { color: var(--muted); background: var(--card); } /* ── COMPARISON TABLE ── */ .cmp { width: 100%; border-collapse: collapse; font-size: 14px; margin-bottom: 28px; } .cmp th { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .05em; padding: 12px 16px; text-align: left; background: var(--card-alt); color: var(--text); border-bottom: 2px solid var(--border); } .cmp td { padding: 11px 16px; border-bottom: 1px solid var(--border); color: var(--muted); background: var(--card); } .cmp tr:nth-child(even) td { background: var(--card-alt); } .cmp .win { color: var(--green); font-weight: 700; } .cmp .lose { color: var(--red); } /* ── PROS/CONS ── */ .pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 28px; } @media(max-width:540px){ .pros-cons { grid-template-columns: 1fr; } } .pc-card { background: var(--card); border: 1px solid var(--border); border-radius: 8px; padding: 16px 18px; } .pc-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 15px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--border); } .pc-title.pro { color: var(--green); border-color: var(--green); } .pc-title.con { color: var(--red); border-color: var(--red); } .pc-list { list-style: none; display: flex; flex-direction: column; gap: 8px; } .pc-list li { font-size: 13px; color: var(--muted); display: flex; gap: 8px; align-items: flex-start; line-height: 1.4; } .pc-list.pros li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; } .pc-list.cons li::before { content: '✗'; color: var(--red); font-weight: 700; flex-shrink: 0; } /* ── WHO IS IT FOR ── */ .who-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; } .who-list li { display: flex; align-items: flex-start; gap: 12px; background: var(--card); border: 1px solid var(--border); border-radius: 6px; padding: 11px 15px; font-size: 14px; color: var(--muted); line-height: 1.5; } .who-list li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; font-size: 15px; } .who-list li strong { color: var(--text); } /* ── DELIVERY ── */ .del-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 28px; } @media(max-width:560px){ .del-grid { grid-template-columns: 1fr; } } .del-card { background: var(--card); border: 1px solid var(--border); border-radius: 8px; padding: 16px; text-align: center; box-shadow: 0 1px 3px var(--shadow); } .del-icon { font-size: 24px; display: block; margin-bottom: 6px; } .del-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .04em; color: var(--text); display: block; margin-bottom: 4px; } .del-text { font-size: 12px; color: var(--muted); line-height: 1.5; } /* ── RELATED LINKS ── */ .rel-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; margin-bottom: 28px; } @media(max-width:480px){ .rel-grid { grid-template-columns: 1fr; } } .rel-link { display: flex; align-items: center; gap: 10px; background: var(--card); border: 1px solid var(--border); border-radius: 6px; padding: 12px 15px; text-decoration: none; color: var(--text); font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: .03em; transition: border-color .2s, color .2s; } .rel-link:hover { border-color: var(--accent); color: var(--accent); } .rel-link .arr { margin-left: auto; color: var(--accent); } /* ── FAQ ── */ .faq-section { margin-bottom: 32px; } .faq-item { border-bottom: 1px solid var(--border); } .faq-item:first-child { border-top: 1px solid var(--border); } .faq-item input[type="checkbox"] { display: none; } .faq-q { font-family: 'Barlow', sans-serif; font-size: 15px; font-weight: 600; color: var(--text); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 14px; user-select: none; padding: 15px 0; } .faq-q:hover { color: var(--accent); } .faq-q::after { content: '+'; font-size: 21px; color: var(--accent); flex-shrink: 0; transition: transform .25s; font-weight: 300; } .faq-item input:checked ~ .faq-q::after { transform: rotate(45deg); } .faq-a { font-size: 14px; color: var(--muted); line-height: 1.75; max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; } .faq-item input:checked ~ .faq-a { max-height: 500px; padding-bottom: 15px; } .faq-a strong { color: var(--text); } /* ── DIVIDER ── */ .div { height: 1px; background: linear-gradient(90deg, var(--accent) 0%, transparent 70%); margin: 24px 0; opacity: .35; } /* ── GEO FOOTER ── */ .geo { background: var(--card-alt); border: 1px solid var(--border); border-radius: 6px; padding: 14px 18px; font-size: 13px; color: var(--faint); line-height: 1.9; } .geo strong { color: var(--muted); } In Stock — Ready to Ship ⭐ 4.9 / 5 — 86 Reviews 🚚 Fast Australia-Wide Delivery 📦 Sold as a Pair Steel Parallettes Bars — Heavy-Duty Calisthenics Dip Station (Pair) Push Up Handles | P-Bars | Workout Stands | 150KG Rated | Australia Our steel parallettes bars are heavy-duty calisthenics bars and dip station handles designed for serious bodyweight training — from beginner push-ups to advanced handstands, L-sits and planche progressions. Built from solid powder-coated steel with non-slip rubber feet, these p-bars offer static and dynamic stability on any surface, including hardwood floors. Rated to 150kg with a 38mm diameter ergonomic handle for neutral wrist alignment — the essential press bars and workout stands for calisthenics athletes, gymnastics training and functional strength across Sydney, Melbourne, Brisbane, Adelaide and Perth. 150KGWeight Capacity 38mmHandle Diameter ~30cmBar Height 4.9/586 Reviews Why steel parallettes instead of training on the floor?Training push-ups and dips flat on the floor locks your wrists into extension and limits range of motion. Steel parallettes allow neutral wrist alignment, eliminating the wrist compression that causes long-term joint strain. They also enable a maximum range of motion (ROM) — your chest drops below hand level on every rep, recruiting more muscle fibre than any floor push-up. For joint longevity and training progression, p-bars are the standard tool used by gymnasts, calisthenics athletes and physiotherapists worldwide. 3 Reasons to Train on Parallettes Why P-Bars Change Your Training 🤲 Neutral Wrist Alignment 38mm handle keeps wrists in a natural neutral position — eliminates the extension stress that causes long-term wrist injury during floor push-ups and dips 📐 Max Range of Motion Elevated bar height allows full depth on every rep — chest drops below hand level for deeper chest activation, superior muscle recruitment and faster strength gains 🛡️ Joint Longevity Reduced wrist, elbow and shoulder strain on every set — designed for long-term training without the repetitive stress injuries associated with floor-based bodyweight work Key Features Industrial-Grade. Wobble-Free. Built to Last. 🏗️ Heavy-Duty Steel ConstructionSolid one-piece welded steel frame — industrial-grade build with no flex, no wobble and no plastic components. Rated to 150kg for weighted dips and advanced skills 🎨 Powder-Coated Anti-Corrosion FinishMatte powder-coat applied over steel for corrosion resistance — maintains grip texture even with sweaty hands, unlike chrome or bare metal alternatives 🤲 38mm Ergonomic Grip HandleIndustry-standard 38mm diameter for optimal grip — matches the feel of professional gymnastics equipment and fits most hand sizes for push-ups, dips and handstands 🦶 Non-Slip Rubber FeetWide rubber base grips any surface — hardwood floors, tiles, rubber gym matting and concrete. No sliding, no scratching, no floor damage ⚖️ Static & Dynamic StabilityWelded base construction provides stability for both static holds (L-sit, planche) and dynamic movements (push-ups, dips) — no rocking during transitions 🎒 Compact & Portable Press BarsLightweight enough to carry between rooms or take to outdoor training sessions — no assembly required, no bolts, no setup time What Can You Do With Steel Parallettes? Full Exercise Library Beginner — Push & Press Full depth push-ups (max ROM) Wide-grip push-ups Diamond push-ups Chest dips (bodyweight) Tricep dips Push-up to hold Intermediate — Core & Holds L-sit (straight leg hold) Tuck L-sit progression Support hold (straight arms) Hollow body push-up Pike push-up (shoulder press) Weighted dips (with belt/vest) Advanced — Skill Work Handstand push-up (HSPU) Planche lean & tuck planche Straddle planche progression Pseudo planche push-up Front lever tuck hold Dragon flag CrossFit & Gymnastics Deficit push-ups (deep ROM) Ring-style dip transitions Gymnastics press to handstand Hip flexor stretch & mobility Wrist conditioning routine Prehab shoulder activation Specifications Technical Details Sold As Pair (2 bars) Material Solid steel frame — one-piece welded construction Weight Capacity 150kg per bar Handle Diameter 38mm — ergonomic grip for neutral wrist alignment Bar Height Approx. 30cm — standard gymnastics parallettes height Surface Finish Powder-coated anti-corrosion matte finish Base Wide non-slip rubber feet — suitable for hardwood, tile, rubber matting & concrete Assembly No assembly required — ready to use immediately Best For Calisthenics, gymnastics, CrossFit, home gyms, PT studios, pre-hab, active ageing Delivery Australia-wide — Sydney, Melbourne, Brisbane, Adelaide, Perth & all regional areas Which Parallettes Should You Buy? Steel vs Plastic vs Wood P-Bars Feature Plastic / Budget Wooden P-Bars These Steel P-Bars Weight Capacity 40–80kg max 80–120kg 150kg rated Static Stability Flexes under load Good Rigid — zero flex Floor Safety Slides on smooth floors Good Rubber feet — non-slip any surface Corrosion Resistance Varies Cracks with moisture Powder-coated steel Weighted Dips Not safe Limited Safe for heavy-duty weighted dips Longevity Low — cracks/flexes Medium Long-term — industrial grade Portability Good Heavy Compact & portable Who Are These Best For? For Every Type of Athlete Calisthenics & bodyweight athletes — the standard training tool for L-sits, planche progressions, handstand push-ups and skill-based strength work Gymnasts & gymnastics coaches — wobble-free press bars that maintain static and dynamic stability across all skill levels CrossFit athletes — deficit push-ups, HSPU progressions and weighted dips using heavy-duty steel rated to 150kg Home gym owners — non-slip rubber feet protect hardwood and tile floors while providing full training capability in a compact footprint Personal trainers & PT studios — versatile multi-client tool for beginner push-ups through to advanced skill work in one pair of portable bars Prehab & active ageing athletes — neutral wrist alignment and reduced joint strain make steel parallettes the safer alternative to floor-based pressing for long-term joint health Outdoor & garage gym trainers — powder-coated steel resists outdoor conditions better than wooden or plastic alternatives Honest Assessment Pros & Cons ✓ Pros 150kg rated — safe for heavy weighted dips and advanced skills Neutral wrist alignment — reduces long-term joint strain Max ROM push-ups — deeper range than floor training Non-slip rubber feet — safe on hardwood, tile and rubber matting Powder-coated steel — no flex, no wobble, corrosion resistant Compact and portable — no assembly, train anywhere 4.9/5 from 86 verified reviews ✗ Cons Fixed height (~30cm) — no adjustable height option Steel handle may feel cold initially in cool environments Not suitable for outdoor use in wet conditions without drying Heavier than plastic alternatives — less convenient for travel Delivery & Pickup 🚚Fast Australia-Wide DeliverySydney Metro: 1–2 days · Melbourne & Brisbane: 2–3 days · Adelaide & Perth: 3–5 days 📦Ready to Use on ArrivalNo assembly required — unbox and start training immediately. Pair securely packaged for safe transit 🏪Pickup — Milperra NSW10/202 Milperra Road, Milperra NSW 2214 · Mon–Fri 9am–5pm · Sat 9am–1pm Frequently Bought Together Complete Your Setup 🤸 Functional Training Accessories → 🎯 Resistance Bands & Balls → 🟫 Rubber Gym Flooring → 🏗️ Strength Equipment → Frequently Asked Questions Everything You Need to Know What are parallettes bars and what are they used for? Parallettes bars (also called p-bars, press bars, push up handles or dip stations) are short elevated parallel bars used for bodyweight strength training. They raise your hands off the floor, allowing neutral wrist alignment and a greater range of motion than floor-based training. They are used for push-ups, dips, L-sits, handstands, planche progressions and gymnastics skills. Unlike floor training, parallettes reduce wrist extension stress — making them essential for joint longevity and long-term calisthenics progression. What is the difference between steel parallettes and plastic or wooden ones? Steel parallettes are the industrial-grade standard for serious training. They provide rigid static and dynamic stability — no flex under load, which is critical for handstands, planche holds and weighted dips. Plastic alternatives typically max out at 40–80kg and flex under heavier loads, creating instability during skill work. Wooden p-bars offer a good grip but can crack with moisture and are heavier to carry. These powder-coated all-metal parallettes with 150kg capacity are the most durable long-term option for all skill levels. Are these non-slip calisthenics bars safe on hardwood floors? Yes. These parallettes feature a wide rubber foot base that grips hardwood floors, tiles, concrete and rubber gym matting without sliding or scratching. The rubber feet are specifically designed to prevent movement during dynamic exercises like push-ups and dips where lateral force is applied. They are safe for use on all common indoor floor surfaces including polished timber, engineered hardwood, ceramic tile and vinyl flooring — making them ideal for home gym use in apartments and houses across Australia. Can I do weighted dips on these parallettes? Yes. With a 150kg weight capacity per bar, these heavy-duty steel parallettes are suitable for weighted dips using a dip belt, weighted vest or plate-loaded setup. The solid one-piece welded construction eliminates the flex and wobble that makes cheap plastic dip stations unsafe under load. For heavy-duty steel parallettes for weighted dips, the key requirement is a welded steel base with a wide rubber foot — both of which are standard on this pair. Why is the 38mm handle diameter important? The 38mm diameter parallettes handle is the industry standard for calisthenics and gymnastics equipment. At this diameter, most adult hand sizes achieve a comfortable wrap-around grip without over-gripping (causing forearm fatigue) or under-gripping (causing instability). The 38mm diameter also mimics the feel of parallel bars used in gymnastics competition, making it the correct training tool for those progressing toward gymnastic or advanced calisthenics movements. Handles under 30mm or over 45mm significantly affect grip comfort and wrist positioning. What calisthenics skill level are these parallettes for — beginner or advanced? These steel parallettes suit all skill levels from beginner to elite. Beginners use them for full-ROM push-ups, tricep dips and basic support holds. Intermediate athletes use them for L-sits, pike push-ups, tuck planche and pseudo planche push-ups. Advanced athletes use them for handstand push-ups, full planche, straddle planche and front lever progressions. The wobble-free gymnastics bars design and 150kg rating means the equipment will never be the limiting factor — only your strength will be. Can parallettes bars be used for handstand practice? Yes — parallettes are one of the most effective tools for handstand practice. The elevated bar height and neutral wrist position make it easier to maintain a straight arm handstand without the wrist hyperextension required when training on the floor. The rubber feet provide the static stability needed for safe handstand practice, especially when learning kick-ups and balance holds. For wobble-free gymnastics bars for handstand practice, steel construction is the safest option — the bar must not move when shifting balance corrections. Are parallettes good for pre-hab, rehabilitation and joint health? Yes — parallettes are widely used in physiotherapy, pre-hab and active ageing fitness programs for this reason. By keeping wrists in neutral alignment and reducing compressive load on the wrist joint, they allow people with wrist pain, elbow tendinopathy or shoulder impingement to continue pressing and dipping movements that would otherwise be too painful on the floor. The joint longevity benefits of neutral wrist alignment make parallettes one of the most recommended tools for lifters and athletes managing upper body joint issues. Do these parallel bars require assembly? No assembly is required. The parallettes bars arrive as a complete pair — fully welded, with rubber feet already fitted. Simply unbox and place them on any flat surface to begin training immediately. This is one of the practical advantages of a solid welded steel frame over adjustable or collapsible alternatives that require assembly and can develop looseness at joints over time. Delivery Areas — Steel Parallettes Bars Australia:Sydney (NSW) · Parramatta · Bankstown · Liverpool · Penrith · Blacktown · Campbelltown · Bondi · Chatswood · Manly · Cronulla · Hornsby · Northern Beaches · Sutherland Shire · Ryde · Hurstville · Melbourne (VIC) · Brisbane (QLD) · Adelaide (SA) · Perth (WA) · Canberra (ACT) · Gold Coast · Newcastle · Wollongong · Sunshine Coast · Geelong · Hobart (TAS) · Darwin (NT) · Central Coast

Save on Heavy-Duty Steel Parallettes Bars (Pair) — 150kg Rated Calisthenics Dip Station with a 24/7 Gym Equipment promo code

Checkmate is a savings app with over one million users that have saved $$$ on brands like 24/7 Gym Equipment.

The Checkmate extension automatically applies 24/7 Gym Equipment discount codes, 24/7 Gym Equipment coupons and more to give you discounts on products like Heavy-Duty Steel Parallettes Bars (Pair) — 150kg Rated Calisthenics Dip Station.