Discover/bootbarn.com API
live

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.

Endpoints
3
Updated
14d ago
Try it
Page number (1-based)
Sort order: Featured, best-sellers, newest, price-low-to-high, price-high-to-low
Filter by brand name (e.g., 'Ariat', 'Cody James', 'Wrangler')
Search keyword (e.g., 'cowboy boots', 'western hat', 'jeans')
Filter by gender (e.g., "Men's", "Women's", "Boys'", "Girls'")
api.parse.bot/scraper/4709c7cb-9a7e-4f39-905a-3e78b9d7af64/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
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'
All endpoints · 3 totalclick to expand

Search for products by keyword with optional filters for brand, gender, sorting, and pagination. Returns up to 24 products per page.

Input
ParamTypeDescription
pageintegerPage number (1-based)
sortstringSort order: Featured, best-sellers, newest, price-low-to-high, price-high-to-low
brandstringFilter by brand name (e.g., 'Ariat', 'Cody James', 'Wrangler')
queryrequiredstringSearch keyword (e.g., 'cowboy boots', 'western hat', 'jeans')
genderstringFilter by gender (e.g., "Men's", "Women's", "Boys'", "Girls'")
Response
{
  "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.

Common use cases
  • Build a price-comparison tool for western boots using price and list_price fields 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 gender and sorted by best-sellers
  • Implement a type-ahead search bar using get_search_suggestions with partial queries
  • Aggregate product ratings and review counts from get_product_details to benchmark brand reputation
  • Scrape full product descriptions and color options for a catalog app or size-guide integration
  • Monitor sale pricing by comparing price against list_price across paginated search results
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 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.

Frequently asked questions
Does Boot Barn have an official developer API?+
Boot Barn does not publish a public developer API or documentation for third-party access to its catalog data.
What does `get_product_details` return beyond what search results include?+
The 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?+
Not currently. The endpoints cover pricing, descriptions, colors, ratings, and images, but do not expose size options or in-stock/out-of-stock status per size. You can fork this API on Parse and revise it to add an endpoint that retrieves size and inventory data for a given product.
How does pagination work in `search_products`?+
The endpoint returns up to 24 products per page. Use the 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?+
Not currently. The API surfaces aggregate 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.
Page content last updated . Spec covers 3 endpoints from www.bootbarn.com.
Related APIs in EcommerceSee all →
lowes.com API
Search and browse products from Lowe's, including product listings by category, detailed product information, and pricing. Retrieve comprehensive details on specific items to compare options and make informed purchasing decisions.
bilbasen.dk API
Search Denmark's largest car marketplace to find vehicles by make and model, then access detailed pricing and technical specifications including emissions, weight, MSRP, battery size, and equipment details. Get comprehensive car listings and full specs to compare vehicles on Bilbasen.dk.
jula.fi API
Search and browse products from Jula.fi to find hardware items with detailed information including prices (with and without VAT), stock availability, brand details, and product SKUs. Explore products by category or search for specific items to compare pricing and check real-time stock status.
leroymerlin.fr API
Search and browse Leroy Merlin France's complete product catalog to find items by category, view pricing, product details, and compare offerings from Leroy Merlin and their online partners. Access real-time product information including names, IDs, URLs, and seller details to help you discover and evaluate home improvement and DIY products.
industrynet.com API
Find industrial suppliers and browse product categories across a comprehensive marketplace directory. Connect directly with suppliers by viewing detailed listings and submitting contact inquiries programmatically.
carsforsale.com API
Search vehicle listings and browse detailed car inventory by make, model, and trim to find the perfect vehicle on CarsForSale.com. Access comprehensive listing details including pricing, specifications, and availability all in one place.
vivino.com API
Search and discover wines across thousands of options while accessing detailed information like user reviews, pricing, winery profiles, and food pairing recommendations. Explore grape varieties, compare wines side-by-side, and find the perfect bottle based on ratings and availability.
x-kom.pl API
Access product data from x-kom.pl, a major Polish electronics retailer. Search products by keyword or category, retrieve detailed product pages, customer reviews, Q&A, promotions, flash deals, and physical store locations.