Discover/Brookstone API
live

Brookstone APIbrookstone.com

Search Brookstone's product catalog, retrieve detailed variant and pricing data, and get autocomplete suggestions via 3 structured API endpoints.

Endpoint health
verified 3d ago
get_product
search_products
search_suggestions
3/3 passing latest checkself-healing
Endpoints
3
Updated
26d ago

What is the Brookstone API?

The Brookstone API gives developers access to Brookstone's product catalog through 3 endpoints covering full-text search, product detail retrieval, and autocomplete suggestions. The search_products endpoint returns paginated listings with up to 48 products per page, including pricing, variants, filter facets, and category data. Individual product records expose all variant SKUs, option sets, image arrays, and stock availability.

Try it
Page number for pagination
Sort order for results
Number of products per page (1-48)
Search query text
api.parse.bot/scraper/d79cfaea-3a75-416e-ae4c-5f5afd9a64d7/<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/d79cfaea-3a75-416e-ae4c-5f5afd9a64d7/search_products?page=1&sort=relevance&limit=5&query=massage' \
  -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 brookstone-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.

"""Brookstone product search: search, drill-down, and autocomplete suggestions."""
from parse_apis.brookstone_product_search_api import Brookstone, Sort, ProductNotFound

client = Brookstone()

# Search for products sorted by price, capped at 5 total items.
for product in client.productsummaries.search(query="heated blanket", sort=Sort.PRICE_ASCENDING, limit=5):
    print(product.title, product.price_min, product.vendor)

# Drill into the first result for full details.
summary = client.productsummaries.search(query="massage", limit=1).first()
if summary:
    detail = summary.details()
    print(detail.title, detail.price_min_formatted, detail.available)
    for variant in detail.variants[:3]:
        print(variant.title, variant.price, variant.available)

# Fetch a product directly by handle.
try:
    product = client.products.get(handle="brookstone-cozy-heated-plush-throw")
    print(product.title, product.price_varies, len(product.images))
except ProductNotFound as exc:
    print(f"Product not found: {exc.handle}")

# Autocomplete suggestions for a query.
for suggestion in client.suggestions.suggest(query="chair", limit=5):
    print(suggestion.title, suggestion.price, suggestion.available)

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

Full-text search over Brookstone's product catalog. Returns paginated product listings with pricing, variant summaries, options, and available filters for the result set. Pagination via page number; results ordered by the chosen sort. Each product exposes a handle suitable for get_product drill-down.

Input
ParamTypeDescription
pageintegerPage number for pagination
sortstringSort order for results
limitintegerNumber of products per page (1-48)
queryrequiredstringSearch query text
Response
{
  "type": "object",
  "fields": {
    "page": "integer, current page number",
    "sort": "string, sort order applied",
    "limit": "integer, results per page",
    "query": "string, the search query used",
    "filters": "array of filter objects with type, label, id, and optional values",
    "products": "array of product summary objects with id, title, handle, vendor, product_type, available, price_min, price_max, compare_at_price_min, compare_at_price_max, featured_image, options, variants, categories, review_count, review_ratings, url",
    "total_pages": "integer, total number of pages",
    "total_products": "integer, total number of matching products"
  },
  "sample": {
    "data": {
      "page": 1,
      "sort": "relevance",
      "limit": 5,
      "query": "massage",
      "filters": [
        {
          "id": "pf_pt_product_type",
          "type": "product_type",
          "label": "Product Type"
        },
        {
          "id": "pf_p_price",
          "type": "price",
          "label": "Price",
          "values": [
            {
              "to": 50,
              "key": "*-50",
              "doc_count": 31
            }
          ]
        }
      ],
      "products": [
        {
          "id": 8153303548090,
          "url": "https://www.brookstone.com/products/zyllion-rechargeable-shiatsu-back-and-neck-massager-pillow-with-heat-2-speed-levels-change-rotation-and-wired-connection-zma-34rb-by-zyllion",
          "title": "Rechargeable Shiatsu Back and Neck Massager Pillow with Heat",
          "handle": "zyllion-rechargeable-shiatsu-back-and-neck-massager-pillow-with-heat-2-speed-levels-change-rotation-and-wired-connection-zma-34rb-by-zyllion",
          "vendor": "Zyllion",
          "options": [
            {
              "name": "Color",
              "values": [
                "Black"
              ]
            }
          ],
          "variants": [
            {
              "id": 44932901699770,
              "sku": "carro-67826989",
              "price": "89.95",
              "title": "Black",
              "available": true,
              "compare_at_price": null
            }
          ],
          "available": true,
          "price_max": 89.95,
          "price_min": 89.95,
          "categories": [
            "massage",
            "neck_and_back"
          ],
          "product_type": "",
          "review_count": 0,
          "featured_image": "https://cdn.shopify.com/s/files/1/0262/2226/4423/files/03_955708d1-0c0a-4f60-aa53-22abd802df8e.jpg?v=1765906659",
          "review_ratings": 0,
          "compare_at_price_max": null,
          "compare_at_price_min": null
        }
      ],
      "total_pages": 18,
      "total_products": 184
    },
    "status": "success"
  }
}

About the Brookstone API

Search and Browse the Catalog

The search_products endpoint accepts a required query string plus optional parameters for page, limit (1–48), and sort. Supported sort values include relevance, best-selling, price-ascending, price-descending, title-ascending, and title-descending. Responses include total_products, total_pages, and a filters array of facet objects — each with a type, label, id, and optional nested values — so you can render filter UIs or narrow subsequent queries programmatically.

Product Detail

The get_product endpoint takes a handle (the URL-safe slug returned in search results) and returns a full product record. Fields include id, title, vendor, tags, available, images, options, and a variants array. Each variant carries its own id, title, sku, price, available flag, option values, and featured_image. This makes it straightforward to map out a product's full size/color/style matrix without additional requests.

Autocomplete Suggestions

The search_suggestions endpoint is optimized for search-as-you-type flows. It accepts a query and optional limit (1–10) and returns a lightweight product array with fields like price, compare_at_price, image, product_type, vendor, and available. The compare_at_price field indicates when a product is on sale relative to its regular price, which is useful for surfacing discounted items in suggestion dropdowns.

Data Scope

All three endpoints reflect current Brookstone catalog data including live pricing and stock status. Product listings include both price_min and price_max to represent price ranges across variants in search results, with per-variant pricing available in the detail endpoint.

Reliability & maintenanceVerified

The Brookstone API is a managed, monitored endpoint for brookstone.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when brookstone.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 brookstone.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
3d 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 Brookstone product comparison tool using variant-level SKU, price, and availability data from get_product.
  • Power a deal-finder that surfaces discounted items by comparing price and compare_at_price fields from search_suggestions.
  • Aggregate massage and wellness product pricing across retailers using search_products with the price-ascending sort.
  • Implement a faceted search UI by reading the filters array returned by search_products.
  • Monitor stock availability for specific products by polling the available field on variants via get_product.
  • Populate an autocomplete widget by wiring search_suggestions to a keypress handler with a per-request limit.
  • Track catalog size and category breadth by paginating through search_products results and reading categories per product.
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 Brookstone have an official public developer API?+
Brookstone does not publish an official public developer API. This Parse API provides structured access to Brookstone's product catalog data.
What does the `filters` array in `search_products` actually contain?+
Each object in the filters array includes a type, a human-readable label, an id, and an optional values array listing the discrete filter options for that facet (for example, color or size choices). These correspond to the filter controls visible on Brookstone's search results pages.
Does the API return customer reviews or ratings for products?+
Not currently. The API covers product titles, descriptions, pricing, variant data, tags, and stock status across all three endpoints. You can fork it on Parse and revise to add a reviews endpoint if Brookstone exposes that data.
Is there a limit to how many products `search_products` can return per page?+
The limit parameter accepts values between 1 and 48. For larger catalogs you paginate using the page parameter alongside the returned total_pages value. There is no single-request way to retrieve the full catalog in one call.
Does the API expose Brookstone store location or in-store inventory data?+
Not currently. The API covers online catalog data including product availability as reflected on Brookstone.com, but does not include physical store locations or location-specific stock levels. You can fork it on Parse and revise to add a store-locator endpoint if that data is accessible.
Page content last updated . Spec covers 3 endpoints from brookstone.com.
Related APIs in EcommerceSee all →
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.
anker.com API
Search and browse Anker products to find prices, images, variants, and availability information directly from their online store. Get detailed product specifications to compare items and make informed purchasing decisions.
backcountry.com API
backcountry.com API
bhphotovideo.com API
Search and browse B&H Photo's massive inventory of cameras, electronics, and photography gear with instant access to pricing, specifications, images, and customer reviews. Filter products by category, compare detailed specs, and discover used items all in one integrated platform.
containerstore.com API
Search The Container Store's product catalog and get real-time autocomplete suggestions to find storage solutions and organizational products. Browse through available items with instant search results and product recommendations as you type.
westelm.com API
Search West Elm's furniture and home décor catalog by keyword, browse autocomplete suggestions, and filter results by price, style, color, and other attributes. Sort products by relevance, price, or rating and paginate through results.
buybuybaby.com API
Search and browse buybuy BABY products across categories, view detailed product information including prices and reviews, and discover featured items from the home page. Access reliable, up-to-date inventory data to compare products and make informed purchasing decisions.
dickblick.com API
Search and browse Dick Blick's catalog of art supplies with advanced filtering and sorting options, plus get autocomplete suggestions as you type. Find exactly what you need with pagination support to explore their full product inventory.