Discover/Boot Barn API
live

Boot Barn APIbootbarn.com

Access Boot Barn's western wear catalog via API. Search products, get detailed listings with prices and reviews, and fetch autocomplete suggestions.

Endpoint health
verified 6d ago
search_products
get_search_suggestions
get_product_details
3/3 passing latest checkself-healing
Endpoints
3
Updated
20d ago

What is the Boot Barn 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.

Try it
Page number (1-based)
Sort order for results
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.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/4709c7cb-9a7e-4f39-905a-3e78b9d7af64/search_products?page=1&sort=best-sellers&brand=Ariat&query=cowboy+boots&gender=Men%27s' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace bootbarn-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Boot Barn Product Search — search western wear, drill into details, autocomplete."""
from parse_apis.boot_barn_product_search_api import BootBarn, Sort, ProductNotFound

client = BootBarn()

# Search for cowboy boots sorted by price, capped at 5 results.
for product in client.productsummaries.search(query="cowboy boots", sort=Sort.PRICE_LOW_TO_HIGH, limit=5):
    print(product.name, product.brand, product.price, product.discount)

# Drill into the first result's full details via the typed navigation op.
summary = client.productsummaries.search(query="western hat", limit=1).first()
if summary:
    detail = summary.details()
    print(detail.name, detail.brand, detail.price, detail.description[:100])
    print("Images:", len(detail.images), "Colors:", detail.colors)

# Fetch a product directly by ID.
try:
    boot = client.products.get(product_id="038A96")
    print(boot.name, boot.brand, boot.price, boot.rating)
except ProductNotFound as exc:
    print(f"Product not found: {exc.product_id}")

# Autocomplete suggestions for a partial query.
ac = client.autocompletes.get(query="west")
for s in ac.suggestions:
    print(s.text, s.url)

print("exercised: productsummaries.search / summary.details / products.get / autocompletes.get")
All endpoints · 3 totalmissing one? ·

Full-text search over Boot Barn's product catalog. Returns paginated results (24 per page) with product summaries including price, brand, rating, and discount info. Supports filtering by brand and gender, and sorting by various criteria. Pagination via page number; total_results may be null when the site omits the count.

Input
ParamTypeDescription
pageintegerPage number (1-based)
sortstringSort order for results
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 summary 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": "038A96",
          "name": "Roper Men's Faux Ostrich Cowboy Boots - Broad Square Toe",
          "brand": "Roper",
          "price": 109.99,
          "gender": "Men's",
          "rating": null,
          "category": "Shop Your Store!",
          "discount": 0,
          "image_url": "https://www.bootbarn.com/dw/image/v2/BCCF_PRD/on/demandware.static/-/Sites-master-product-catalog-shp/default/dw51b6d6aa/images/A96/038A96_22_P1.JPG?sw=600&sh=600&sm=fit&q=50",
          "list_price": 109.99,
          "silhouette": "Boot",
          "color_count": null,
          "product_url": "https://www.bootbarn.com/roper-mens-faux-ostrich-cowboy-boots---broad-square-toe/038A96.html?dwvar_038A96_color=7049",
          "review_count": null
        }
      ],
      "page_size": 24,
      "total_results": 571
    },
    "status": "success"
  }
}

About the Boot Barn API

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.

Reliability & maintenanceVerified

The Boot Barn API is a managed, monitored endpoint for bootbarn.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when bootbarn.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official bootbarn.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
6d ago
Latest check
3/3 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
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,000100 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 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.