Stamina fitness equipment can be found at leading retail stores across the US and Canada, and on numerous fitness web sites. Here is a partial list of our retailers. Feel free to give us a call at 1-800-375-7520 or email customerservice@staminaproducts.com if you need help locating a store or identifying a web site.
Variant picker
Choosing a selection results in a full page refresh.
Opens in a new window.
function syncGclidToCart() {
var gclid = localStorage.getItem('stamina_gclid');
if (!gclid) return;
fetch('/cart/update.js', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
attributes: {
gclid: gclid
}
})
});
}
document.addEventListener('click', function (e) {
if (e.target.closest('[href*="/checkout"], .checkout-button, [name="checkout"]')) {
syncGclidToCart();
}
});
syncGclidToCart();