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
1mo 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 →
nike.com API
Search the Nike product catalog by keyword and retrieve detailed product information including pricing, sizing, color variants, and availability. Use autocomplete suggestions to refine queries and discover relevant products on Nike.com.
backcountry.com API
backcountry.com API
bestbuy.com API
Search Best Buy's entire product catalog and get instant autocomplete suggestions while browsing, then pull up detailed pricing, availability, and stock information for any item. Easily sort through results, look up multiple products at once, and discover what's trending in real-time.
brookstone.com API
Search and browse Brookstone's catalog of products with full-text search, filters, sorting, and pagination to find exactly what you need. Get instant search suggestions and access detailed product information including pricing, descriptions, and availability.
urbanoutfitters.com API
Search Urban Outfitters' catalog to find products and browse categories, then view detailed information including prices, descriptions, color and size availability for each item. Check current sale counts and discover what's trending across the store's product lineup.
sweetwater.com API
Search Sweetwater's catalog of musical instruments, audio equipment, and accessories to find products with detailed pricing, availability, ratings, and images. Get autocomplete suggestions as you type to quickly discover exactly what you're looking for.
thredup.com API
Search and browse ThredUp's secondhand fashion inventory to find specific items and view detailed product information like pricing, condition, and sizing. Get smart search suggestions to discover similar styles and refine your thrifting experience.
zumiez.com API
Search Zumiez products by keyword, browse products by category path, and fetch detailed product information (pricing, images, stock status, and attributes) using a product group ID.