giant-bicycles.com APIgiant-bicycles.com ↗
Access Giant Bicycles US product data via API: bike specs, geometry, pricing, clearance listings, gear categories, and authorized dealer locations.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/54100d13-9565-42cf-b36c-6c6ba67aa1a6/list_bike_categories' \ -H 'X-API-Key: $PARSE_API_KEY'
Returns the top-level bike categories available on the Giant Bicycles US site.
No input parameters required.
{
"type": "object",
"fields": {
"categories": "array of category objects with name, slug, and url"
},
"sample": {
"data": {
"categories": [
{
"url": "https://www.giant-bicycles.com/us/bikes/road-bikes",
"name": "Road Bikes",
"slug": "road-bikes"
},
{
"url": "https://www.giant-bicycles.com/us/bikes/mountain-bikes",
"name": "Mountain Bikes",
"slug": "mountain-bikes"
},
{
"url": "https://www.giant-bicycles.com/us/bikes/e-bikes",
"name": "E-bikes",
"slug": "e-bikes"
}
]
},
"status": "success"
}
}About the giant-bicycles.com API
The Giant Bicycles API covers 7 endpoints that expose product catalog data, component specifications, and retail store locations from Giant Bicycles' US site. The get_bike_details endpoint returns full bike specs including frame geometry by size, variant part numbers, MSRP pricing, and product descriptions. Other endpoints handle category browsing, keyword search, clearance listings, gear navigation, and dealer lookup by zip code or city.
Catalog and Product Data
The list_bike_categories endpoint returns top-level category objects with name, slug, and url fields. Those slugs feed directly into list_bikes_by_category, which accepts a required category param and an optional subcategory param to narrow results. The response includes an array of bike objects — each with name, url, price, thumbnail, and tags — plus a total count. search_bikes accepts a free-text query string and returns matching products with name, url, and type fields.
Bike Detail and Specs
get_bike_details is the most data-dense endpoint. Pass a product URL path or slug (full https:// URLs are also accepted) and get back the bike's name, price, description, a specs object of key-value component pairs (groupset, drivetrain, wheels, etc.), a geometry array broken out by frame size, and a variants array with color images and part numbers. The product_id field is returned when available.
Clearance and Gear
list_clearance_bikes requires no inputs and returns all currently discounted models as an array of bike objects with name, url, price, and tags, plus a total. list_gear_categories returns the full gear navigation tree — accessories, clothing, and components — as category objects with name and url.
Retail Store Finder
find_retail_stores accepts a required keyword (city name or ZIP code) and optional lat/lng coordinates. The response includes a dealers array with each store's Name, City, State, Address, Phone, and coordinates, plus a campaigns array that distinguishes Giant Store, Partner Store, and Click & Collect locations. The filteredBy field reflects any active store-type filter.
- Build a bike comparison tool using
get_bike_detailsgeometry and specs fields across multiple models. - Power a price-tracking app by polling
list_bikes_by_categoryand monitoring thepricefield for changes. - Surface clearance deals in a cycling deals aggregator using
list_clearance_bikes. - Add a dealer locator feature to a cycling app using
find_retail_storeswith ZIP code input. - Index Giant's full product catalog for a search engine using
list_bike_categoriesandlist_bikes_by_categorytogether. - Filter bikes by category and tag for a recommendation engine using
category,subcategory, andtagsfields. - Track gear accessory categories for a retail content site using
list_gear_categories.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does Giant Bicycles offer an official developer API?+
What store information does `find_retail_stores` return, and does it show real-time inventory?+
Name, Address, City, State, Phone, coordinates, and store type (Giant Store, Partner Store, or Click & Collect) via the campaigns array. It does not return per-store inventory levels — only store locations and contact details are exposed.Does `get_bike_details` return geometry for all frame sizes?+
geometry field is an array of measurement objects broken out by size, so a single call covers all available frame sizes for a model. The exact set of measurements (reach, stack, top tube, etc.) depends on what Giant publishes for each model.