Vasque Apex

Vasque Apex

Average Rating: rated 3.50 of 5 stars
Reviewed by 9 Trailspace users

Description

The Apex is a mountaineering boot made by Vasque. It has an average rating of 3.5 stars (out of 5), based on 9 user reviews.

Can't open file: 'retailer_brand.MYI' (errno: 145)
	SELECT
				product.product_id,
				brand.brand_id,
				brand.short_name AS brand,
				brand.url_stub AS brand_url_stub,
				product.product_name,
				product.producttype_id AS producttype_id,
				product.gender,
				product.url_stub,
				product.description,
				product.manufacturer_description,
				UNIX_TIMESTAMP(product.date_available) AS date_available,
				product.date_available_note,
				product.price_msrp,
				product.specs,
#				GROUP_CONCAT(DISTINCT(IF(product.gender IN('u'),'m,w',IF(product.gender IN('b','g'),'k',product.gender)))) AS genders,
				product_totals.overall_average_rating AS average_rating,
				product_totals.overall_num_reviews AS num_reviews,
				product_totals.num_retailers
			FROM
				(
				product,
				brand
				)
			LEFT JOIN
				product_totals
			ON
				product_totals.product_id = product.product_id
			WHERE
				product.url_stub = 'apex'
				AND brand.brand_id = product.brand_id
				AND brand.brand_id = '78'
			GROUP BY
				product.producttype_id
			ORDER BY
				product.producttype_id
			

User Reviews

rated 4 of 5 stars Men's Apex
Reviewed by wayofthemaster, May 23, 2007

"Have over 300 miles on these in size 11. 5D (am in-between 11e-11. 5d) and these fit perfectly. Previously had Vasque Sky Walkers (light hikers) for 9 years (resoled with Vibram) and loved them as well, though I realized my feet grew and they became tight."

Read the complete review »

rated 5 of 5 stars Men's Apex
Reviewed by Lando, Oct 13, 2006

"I bought these boots for mountaineering, and they worked great. Great support, great traction, and very waterproof. I have had them for close to three years, and they still look and work like new. The sole has hardly worn down at all, over constant use in the alpine zone."

Read the complete review »

rated 5 of 5 stars Apex
Reviewed by an anonymous hiker, Apr 30, 2001

"I've put in over 400 miles on these boots and never had a blister. They are excellent. If fitted correctly, and given a proper break-in, they work perfect. Enough Said."

Read the complete review »

rated 5 of 5 stars Men's Apex
Reviewed by Michael Geibelson, Oct 19, 1999

"Having had trouble finding a size 14 in anything comfortable, I wore these babies straight out of the box with heels cloaked in mole skin up Mount Whitney this past weekend. They performed great and I only have a couple nickle-sized heel blisters which were expected."

Read the complete review »

rated 5 of 5 stars Men's Apex
Reviewed by Colin Cunningham, Nov 15, 1998

"I am amazed at the number of bad reviews I've read for this boot. I have always purchased Vasque boots, even when they were called Voyagers. My last pair, which were Hiker II's, lasted me 24 years, with several resolings. I think the problem everyone is experiencing is with the initial fitting."

Read the complete review »

rated 3 of 5 stars Men's Apex
Reviewed by Michael Hinshaw, Dec 03, 1997

"Purchased first pair from Campmor 2-97 and wore around house for about 4 months to break in. The shoes were very uncomfortable at first but appeared to fit properly. I noticed just before a trip to Colorado in July that the lining had worn through on the inside of one of the boots."

Read the complete review »

rated 2 of 5 stars Men's Apex
Reviewed by an anonymous hiker, Oct 08, 1997

"I got the Apex because I wanted a heavy duty boot for backpacking and mountaineering. They accept step-in crampons and I had an OK experience with some Vasque Newbriers. These boots have pros and cons.

Pros - They are tough and provide good support."

Read the complete review »

rated 1 of 5 stars Men's Apex
Reviewed by Craig Patterson, Sep 29, 1997

"Where do I start with these boots. Nothing but blood, sweat and tears. I took then on several medium hikes with different sock combinations but nothing seemed to work. The initial fit in the store seemed outstanding. And still to wear them around town they are comfortable."

Read the complete review »

rated 2 of 5 stars Apex
Reviewed by an anonymous hiker, Feb 17, 1997

"I bought these boots planning to use them for heavy backpacking in the Rockies. After six months of constant use I still get blisters.

The boots are very waterproof, sturdy, and their Vibram soles give great grip on any terrain - but, if you plan to walk epic distances, your feet will feel like hamburger."

Read the complete review »

Have you owned or used a Vasque Apex? Share your thoughts with other hikers and backpackers.

Where to Buy

Can't open file: 'retailer_brand.MYI' (errno: 145)
SELECT
								retailer.*,
								retailer_product.*,
								retailer_brand.*,
								retailer.retailer_id AS retailer_id,
								LEAST(
									IF(retailer_product.gender IS NULL,0,100),
									IF(retailer_product.gender = '',0,100),
									IF(retailer_product.gender = 'u',0,100),
									IF(retailer_product.gender = 'm',1,100),
									IF(retailer_product.gender = 'w',2,100),
									IF(retailer_product.gender = 'k',3,100),
									IF(retailer_product.gender = 'b',4,100),
									IF(retailer_product.gender = 'g',5,100)
								) AS gender_sort
							FROM 
								product AS p1,
								product AS p2,
								retailer_product,
								retailer,
								retailer_brand
							WHERE
								p1.product_id = '9691'
								AND p2.brand_id = p1.brand_id
								AND p2.product_name = p1.product_name
								AND retailer_product.product_id = p2.product_id
								AND retailer_product.status = 'active'
								AND retailer_product.product_link_url != ''
								AND retailer.retailer_id = retailer_product.retailer_id
								AND retailer.is_online = 1
								AND retailer.status = 'active'
								AND retailer.show_product_link = 1
								AND retailer_brand.retailer_id = retailer.retailer_id
								AND retailer_brand.retailer_brand_id = retailer_product.retailer_brand_id
							GROUP BY
								retailer.retailer_id,
								retailer_product.retailer_product_id
							ORDER BY
								retailer.avg_epc DESC,
								retailer.commission_rate DESC,
								retailer.cookie_days DESC,
								retailer.retailer_id ASC,
								price ASC,
								gender_sort ASC
							
Can't open file: 'retailer_brand.MYI' (errno: 145)
SELECT
								*,
								brand.short_name AS brand,
								retailer.retailer_id AS retailer_id
							FROM 
								brand,
								retailer,
								retailer_brand
							WHERE
								brand.brand_id = '78'
								AND retailer_brand.brand_id = brand.brand_id
								AND retailer_brand.status = 'active'
								AND retailer.retailer_id = retailer_brand.retailer_id
								AND retailer.is_online = 1
								AND retailer.status = 'active'
								AND retailer.show_brand_link = 1
							GROUP BY
								retailer.retailer_id
							ORDER BY
								# is_house_brand DESC,
								retailer.avg_epc DESC,
								retailer.commission_rate DESC,
								retailer.cookie_days DESC,
								retailer.retailer_id ASC
							

Sorry, we couldn't find any online retailers selling the Vasque Apex. You may be able to find it new or used at one of these sites:


Trailspace Classifieds

US | Canada | UK | Aus

GearTrade

Retailers: Do you sell the Vasque Apex? List your site here.

Similar Footwear

email this page
Can't open file: 'retailer_brand.MYI' (errno: 145)