Discover/Crateandbarrel API
live

Crateandbarrel APIcrateandbarrel.com

Search for furniture and home décor items on Crate & Barrel to instantly view product names, prices, images, and direct links to shop. Browse through results to compare options and find exactly what you're looking for in their catalog.

This API takes change requests — .
Endpoint health
verified 3h ago
search_products
1/1 passing latest checkself-healing
Endpoints
1
Updated
4h ago
Try it
Page number for paginated results.
Search query term (e.g. 'sofa', 'lamp', 'dining table').
Field to sort results by.
Number of results per page (1-100).
Sort direction.
api.parse.bot/scraper/d90a345c-2afe-481b-9942-7c4404933c72/<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/d90a345c-2afe-481b-9942-7c4404933c72/search_products?page=1&query=sofa&sort_by=relevance&per_page=24&sort_order=ascending' \
  -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 crateandbarrel-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.

"""Walkthrough: Crate & Barrel SDK — bounded, re-runnable; every call capped."""
from parse_apis.crateandbarrel_com_api import CrateAndBarrel, SortBy, SortOrder, ParseError

client = CrateAndBarrel()

# Search for sofas sorted by price ascending
for product in client.products.search(query="sofa", sort_by=SortBy.PRICE, sort_order=SortOrder.ASCENDING, limit=3):
    print(product.name, product.price_min, product.price_max)

# Drill into one result
item = client.products.search(query="dining table", sort_by=SortBy.RATING, limit=1).first()
if item:
    print(item.name, item.product_url, item.image_url)

# Typed error handling
try:
    for p in client.products.search(query="outdoor chair", limit=2):
        print(p.name, p.rating, p.review_count, p.is_new)
except ParseError as e:
    print(f"error: {e}")

print("exercised: products.search")
All endpoints · 1 totalmissing one? ·

Full-text search across the Crate & Barrel product catalog. Results are auto-iterated; each product includes name, price range, image URL, product page URL, rating, and review count. Sorting options include relevance, price, rating, best selling, and new.

Input
ParamTypeDescription
pageintegerPage number for paginated results.
queryrequiredstringSearch query term (e.g. 'sofa', 'lamp', 'dining table').
sort_bystringField to sort results by.
per_pageintegerNumber of results per page (1-100).
sort_orderstringSort direction.
Response
{
  "type": "object",
  "fields": {
    "page": "current page number",
    "total": "total number of matching products",
    "per_page": "number of results per page",
    "products": "array of product objects with name, price, image, and URL"
  },
  "sample": {
    "data": {
      "page": 1,
      "total": 1128,
      "per_page": 5,
      "products": [
        {
          "sku": "322117",
          "name": "Lounge 93\" Sofa",
          "is_new": false,
          "rating": 4.5,
          "image_url": "https://cb.scene7.com/is/image/Crate/LoungeSofa93inTCSOSSS23_3D",
          "price_max": 2649,
          "price_min": 1549,
          "product_url": "https://www.crateandbarrel.com/lounge-93-sofa/s322117",
          "review_count": 3550
        }
      ]
    },
    "status": "success"
  }
}

About the Crateandbarrel API

The Crateandbarrel API on Parse exposes 1 endpoint for the publicly available data on crateandbarrel.com. Calls return JSON over HTTPS and are billed per successful response.

Pin a release with the API-Snapshot-Version header so canonical updates don't silently change your contract.

Related APIs
furniture.com API
Search and browse Furniture.com's product catalog by keywords, then narrow results using filters like color, material, style, type, and brand. Sort by price or ratings and navigate through results with pagination to find the perfect furniture for your needs.
chairish.com API
Search and browse vintage furniture and decor listings on Chairish, view detailed product information with pricing and availability, and research sellers through their profiles and customer reviews. Explore product categories and discover shop recommendations to find exactly what you're looking for.
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.
lifeinteriors.com.au API
Search and browse furniture products from Life Interiors' catalog to discover home decor items, view collection details, and access individual product information. Find the perfect pieces for your home by exploring their Australian furniture and interiors selection.
allmodern.com API
Search for modern furniture, lighting, and decor products on AllModern with flexible sorting and pagination options. Browse through curated results to find the perfect pieces for your home.
howardmiller.com API
Search and browse Howard Miller's complete catalog of clocks and furniture to find product details, pricing, and availability from their official store. Quickly look up specific items or explore collections to compare features and make informed purchasing decisions.
ikea.com API
Search and browse IKEA's full product catalog to find items by category, compare measurements, read customer reviews, and check real-time store availability and current deals. Discover new arrivals and best-selling products to help you shop smarter and find exactly what you need.
harborfreight.com API
Search Harbor Freight Tools products by name or category to get real-time pricing, customer reviews, brand information, and detailed product specifications. Filter results using category facets to quickly find deals and compare tools across different product lines.