garmin.com APIgarmin.com ↗
Access Garmin product catalog data including specs, pricing, accessories, category listings, search results, and in-box contents via 12 structured endpoints.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/2c3c4455-6d80-416f-90e1-67970af98db1/get_homepage_featured_products' \ -H 'X-API-Key: $PARSE_API_KEY'
Scrapes the Garmin homepage to extract featured and highlighted products with links.
No input parameters required.
{
"type": "object",
"fields": {
"products": "array of objects with name, url, and id fields"
},
"sample": {
"data": {
"products": [
{
"id": "1622337",
"url": "https://www.garmin.com/en-US/p/1622337/pn/010-03020-02/",
"name": "INSTINCT® 3 ALPINE RUSH COLLECTION"
}
]
},
"status": "success"
}
}About the garmin.com API
The Garmin.com API covers 12 endpoints for querying the full Garmin product catalog, from browsing categories and searching by keyword to retrieving per-product pricing, technical specifications, and package contents. The get_product_detail endpoint returns SKU, priced variants, and color swatches for any product ID, while compare_products lets you pull side-by-side pricing and swatch data for multiple models in a single call.
Product Discovery and Search
Use search_products with a query string and optional limit to find matching products by keyword. Results include id, sku, name, variation_name, description, url, and image per result. get_new_products returns the same field shape for recently added listings, and get_homepage_featured_products returns a lighter set — name, url, and id — for whatever Garmin is currently featuring at the top of its site.
Category and Sale Browsing
get_subcategories returns the full navigation tree as nested objects with name and subcategories arrays, giving you the category URLs needed to extract numeric keys for get_category_products. That endpoint accepts a category_key string (verified working values include 12521 for handhelds and 38380 for sale items) and returns total, plus a products array with id, name, description, url, image, group, and productIds. get_sales_and_promotions is a convenience wrapper returning the same product shape for current sale and promotional listings without requiring a category key.
Per-Product Detail
get_product_detail takes a product_id and returns sku, productName, productId, a pricing object containing a pricedSkus array with full pricing details, and a swatches array with swatchName, imageUrl, and sku per color option. get_product_specs accepts either a product ID or full URL and returns a flat specs object mapping specification names to values. get_product_overview returns a description string and a features array for marketing copy and key feature bullets. get_product_in_the_box returns an items string array of package contents.
Accessories and Comparison
get_product_accessories returns associationProducts — an array of compatible accessories each with mainImageUrl, displayName, partNumber, and productId. compare_products accepts a comma-separated list of product IDs and returns a comparison array where each entry mirrors the get_product_detail response shape: productId, productName, sku, pricing, and swatches. This is useful for building side-by-side model comparison tables without making individual detail calls.
- Build a Garmin watch comparison tool using
compare_productsto display pricing and color variants side by side. - Populate a product database with technical specs via
get_product_specskeyed by product ID. - Track sale and promotional inventory changes over time using
get_sales_and_promotions. - Generate accessory recommendation widgets by querying
get_product_accessoriesfor a given device. - Index the full Garmin catalog for keyword search by combining
get_subcategories,get_category_products, andsearch_products. - Display package contents alongside product listings using
get_product_in_the_box. - Monitor new product launches by polling
get_new_productsfor changes in the results array.
| 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 Garmin have an official public developer API?+
What does `get_product_detail` return beyond basic product info?+
pricing object containing a pricedSkus array with per-SKU pricing details, a swatches array with each color option's swatchName, imageUrl, and sku, plus the top-level productId, productName, and sku. It does not return inventory availability or stock levels.How do I find valid category keys for `get_category_products`?+
get_subcategories first to retrieve the navigation tree with category URLs, then extract the numeric key from the URL. Verified working keys include 12521 for handhelds and 38380 for sale items. Unrecognized keys return an empty product list.Does the API return customer reviews or ratings for products?+
Does `search_products` support filtering by category or price range?+
search_products endpoint accepts a query string and an optional limit integer. It does not currently expose category or price-range filter parameters. You can fork this API on Parse and revise the endpoint to add those filter inputs.