bootbarn.com APIwww.bootbarn.com ↗
Access Boot Barn's western wear catalog via API. Search products, get detailed listings with prices and reviews, and fetch autocomplete suggestions.
curl -X GET 'https://api.parse.bot/scraper/4709c7cb-9a7e-4f39-905a-3e78b9d7af64/search_products?query=cowboy+boots' \ -H 'X-API-Key: $PARSE_API_KEY'
Search for products by keyword with optional filters for brand, gender, sorting, and pagination. Returns up to 24 products per page.
| Param | Type | Description |
|---|---|---|
| page | integer | Page number (1-based) |
| sort | string | Sort order: Featured, best-sellers, newest, price-low-to-high, price-high-to-low |
| brand | string | Filter by brand name (e.g., 'Ariat', 'Cody James', 'Wrangler') |
| queryrequired | string | Search keyword (e.g., 'cowboy boots', 'western hat', 'jeans') |
| gender | string | Filter by gender (e.g., "Men's", "Women's", "Boys'", "Girls'") |
{
"type": "object",
"fields": {
"page": "integer, current page number",
"query": "string, the search query used",
"products": "array of product objects with id, name, brand, price, list_price, category, gender, silhouette, rating, review_count, image_url, product_url, color_count, discount",
"page_size": "integer, number of products returned on this page",
"total_results": "integer or null, total number of matching products"
},
"sample": {
"data": {
"page": 1,
"query": "cowboy boots",
"products": [
{
"id": "2000401240",
"name": "Cody James Ace™ Western Boots - Broad Square Toe",
"brand": "Cody James",
"price": 169.99,
"gender": "Men's",
"rating": null,
"category": "Cody James Ace™ Boots",
"discount": 0,
"image_url": "https://www.bootbarn.com/dw/image/v2/BCCF_PRD/on/demandware.static/-/Sites-master-product-catalog-shp/default/dw6bcf9792/images/240/2000401240_280_P1.JPG?sw=600&sh=600&sm=fit&q=50",
"list_price": 169.99,
"silhouette": "Boot",
"color_count": null,
"product_url": "https://www.bootbarn.com/cody-james-ace-western-boots---broad-square-toe/2000401240.html?dwvar_2000401240_color=280",
"review_count": null
}
],
"page_size": 24,
"total_results": 570
},
"status": "success"
}
}About the bootbarn.com API
The Boot Barn API exposes 3 endpoints covering product search, product details, and search suggestions across Boot Barn's catalog of western wear, cowboy boots, and apparel. The search_products endpoint returns up to 24 products per page with fields including brand, price, list_price, rating, review_count, silhouette, and gender, and supports filtering by brand, gender, and sort order.
Search and Filter Products
The search_products endpoint accepts a required query parameter and optional filters for brand (e.g., Ariat, Wrangler, Cody James), gender (e.g., Men's, Women's), sort order (Featured, best-sellers, newest, price-low-to-high, price-high-to-low), and page for pagination. Each product object in the response includes id, name, brand, price, list_price, category, gender, silhouette, rating, review_count, and image_url. The response also surfaces total_results and page_size for building pagination logic.
Product Details
The get_product_details endpoint retrieves full information for a single product. You can supply either a product_url (the full URL string from search results, which is the more reliable path) or a product_id (an alphanumeric identifier such as 038A96). The response adds fields not present in search results: description (full text of features and product copy), colors (array of available color names), and images (array of all product image URLs), along with rating and review_count.
Search Suggestions and Autocomplete
The get_search_suggestions endpoint takes a partial query string and returns two arrays: suggestions (each with type, text, and url) and products (each with name, url, image_url, and price). This is useful for building type-ahead interfaces or discovering how Boot Barn's catalog interprets partial terms before committing to a full search.
- Build a price-comparison tool for western boots using
priceandlist_pricefields across multiple brands - Track in-catalog availability and pricing changes for specific brands like Ariat or Wrangler over time
- Populate a gift-recommendation engine filtered by
genderand sorted bybest-sellers - Implement a type-ahead search bar using
get_search_suggestionswith partial queries - Aggregate product ratings and review counts from
get_product_detailsto benchmark brand reputation - Scrape full product descriptions and color options for a catalog app or size-guide integration
- Monitor sale pricing by comparing
priceagainstlist_priceacross paginated search results
| 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 Boot Barn have an official developer API?+
What does `get_product_details` return beyond what search results include?+
get_product_details endpoint adds description (full product feature text), colors (all available color variants), and images (the complete array of product image URLs). Search results only return a single image_url. Prefer passing a product_url from search results over a bare product_id, since the ID-based lookup uses a search fallback that may not locate every product.Does the API return size or inventory availability data?+
How does pagination work in `search_products`?+
page parameter (1-based) to step through results. The response includes total_results (which can be null for some queries) and page_size so you can calculate how many pages exist when total_results is populated.Are customer reviews or review text accessible through the API?+
rating and review_count fields on both search results and product detail responses, but individual review text and reviewer details are not returned. You can fork this API on Parse and revise it to add a reviews endpoint that retrieves per-review content for a product.