Discover/Wayfair API
live

Wayfair APIwayfair.com

Search Wayfair products, fetch details by SKU or URL, retrieve daily deals, browse categories, and filter by dimensions and price via 5 endpoints.

Endpoint health
verified 19h ago
get_categories
get_daily_deals
get_product_details
search_products
4/4 passing latest checkself-healing
Endpoints
5
Updated
22d ago

What is the Wayfair API?

The Wayfair API covers 5 endpoints for searching the Wayfair product catalog, retrieving full product details, and browsing promotions. The get_product_details endpoint returns up to 10 fields per product — including SKU, brand, current price, original price, star rating, review count, and a full image array — using either a product SKU or a direct page URL as input. Other endpoints expose daily sale events, top-level navigation categories, and dimension-filtered product results.

Try it
Page number for pagination.
Search keyword (e.g. 'sofa', 'desk', 'bookshelf')
api.parse.bot/scraper/881e95f6-2127-4669-83b7-fca30162d85e/<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/881e95f6-2127-4669-83b7-fca30162d85e/search_products?page=1&query=desk' \
  -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 wayfair-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.

from parse_apis.wayfair_api import Wayfair, Product, ProductSummary, Deal, Category, NotFoundError

wayfair = Wayfair()

# Search for products by keyword — limit caps total items fetched
for summary in wayfair.products.search(query="standing desk", limit=5):
    print(summary.name, summary.price, summary.sku)

# Drill into a single result's full details (images, specs, brand)
first = wayfair.products.search(query="bookshelf", limit=1).first()
if first:
    product = first.details()
    print(product.name, product.brand, product.price)
    print("Specs:", product.specifications)
    print("Images:", product.images[:2])

# Get product details directly by SKU
try:
    detail = wayfair.products.get(sku="W009454625")
    print(detail.name, detail.brand, detail.original_price)
except NotFoundError as exc:
    print(f"Product not found: {exc}")

# Browse daily deals
for deal in wayfair.deals.list(limit=5):
    print(deal.name, deal.url)

# List top-level categories
for category in wayfair.categories.list(limit=5):
    print(category.name, category.url)

print("exercised: products.search / ProductSummary.details / products.get / deals.list / categories.list")
All endpoints · 5 totalmissing one? ·

Search for products by keyword on Wayfair with optional pagination. Returns a list of product summaries including name, SKU, price, rating, review count, and URL. Each page returns up to ~50 products. Paginated via a page number parameter. Image URLs are not available in search results; use get_product_details for images.

Input
ParamTypeDescription
pageintegerPage number for pagination.
queryrequiredstringSearch keyword (e.g. 'sofa', 'desk', 'bookshelf')
Response
{
  "type": "object",
  "fields": {
    "count": "integer total number of products returned on the page",
    "products": "array of product summary objects with name, sku, url, price, rating, review_count, image_url"
  },
  "sample": {
    "data": {
      "count": 50,
      "products": [
        {
          "sku": "W112032887",
          "url": "https://www.wayfair.com/furniture/pdp/inbox-zero-momoyo-adjustable-height-desk-with-drawers-w112032887.html",
          "name": "Electric Standing Desk with Large Monitor Shelf & Drawers | Height-Adjustable Ergonomic Desk for Home or Office",
          "price": "$149.99",
          "rating": "4.54",
          "image_url": null,
          "review_count": "232"
        }
      ]
    },
    "status": "success"
  }
}

About the Wayfair API

Search and Product Data

The search_products endpoint accepts a query string (e.g. 'sofa', 'bookshelf') and an optional page integer for pagination. Each page returns up to 60 product summaries with name, sku, url, price, rating, review_count, and image_url. The get_product_details endpoint accepts either a sku or a full url and returns a richer record: brand, description, images array, original_price (null when no discount exists), currency (always USD), and specifications.

Deals and Categories

get_daily_deals requires no input parameters and returns the current set of named sale events from Wayfair's daily-sales page, each with a name, url, and image_url. The result set changes as promotions rotate. get_categories similarly requires no input and returns the top-level navigation departments — Furniture, Outdoor, Bedding & Bath, Rugs, Lighting, and others — as name/url pairs.

Dimension Filtering

filter_products_by_dimensions lets you constrain results by physical size and price before they reach your application. It accepts query, width_max, height_max, depth_max, and price_max (all optional, in inches and USD). It fetches detail pages for the first 10 search results and returns only those whose specifications fall within your maximums, including full name, sku, brand, price, and images fields on each match.

Reliability & maintenanceVerified

The Wayfair API is a managed, monitored endpoint for wayfair.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when wayfair.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 wayfair.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
19h ago
Latest check
4/4 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 furniture comparison tool that pulls price, original_price, and rating from get_product_details for a set of SKUs.
  • Monitor daily promotions by polling get_daily_deals and alerting when specific category sale events appear.
  • Filter sofas or desks to a room's exact footprint using filter_products_by_dimensions with width_max, depth_max, and height_max.
  • Populate a category browse page by fetching department names and URLs from get_categories.
  • Track price changes on specific products over time by periodically calling get_product_details with a fixed SKU.
  • Aggregate review counts and star ratings across a product segment using search_products with pagination.
  • Cross-reference Wayfair SKUs with other retailer data by extracting sku and brand fields from 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 Wayfair have an official developer API?+
Wayfair does have a supplier-facing API program (Wayfair's Partner API at partners.wayfair.com), but it is restricted to approved suppliers and trading partners managing inventory and orders. It is not available to general developers querying the product catalog.
What does `get_product_details` return that `search_products` does not?+
search_products returns summary-level fields: name, sku, url, price, rating, review_count, and image_url. get_product_details adds brand, description, a full images array, original_price (the pre-discount price, or null), currency, and specifications — the structured dimension data that filter_products_by_dimensions also uses.
How does pagination work for `search_products`?+
The page parameter is an integer starting at 1. Each page returns up to 60 product summaries. The response includes a count field reflecting how many products were returned on that specific page. There is no total-results-count or total-pages field in the response, so you continue paginating until a page returns fewer than 60 results.
Does the API return individual customer reviews or just aggregate ratings?+
Currently the API returns aggregate data only: rating (a star score out of 5) and review_count (total number of reviews), both as strings. Individual review text, reviewer names, and per-review dates are not exposed. You can fork this API on Parse and revise it to add an endpoint that fetches per-review content for a given SKU.
Does `filter_products_by_dimensions` check all products on a search page?+
It checks the first 10 results from the search query. Products beyond position 10 are not evaluated against dimension or price constraints. You can fork the API on Parse and revise it to increase the number of detail pages fetched per query.
Page content last updated . Spec covers 5 endpoints from wayfair.com.
Related APIs in EcommerceSee all →
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.
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.
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.
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.
williams-sonoma.com API
Search Williams-Sonoma products by keyword, browse product groups by category/group ID, and fetch detailed product information including pricing, images, and product details.
zarahome.com API
Search and browse Zara Home's furniture and home décor catalog. Retrieve product details including name, category, price, available sizes or dimensions, materials, colors, and availability status. Browse by category or search by keyword across the full product range.
homedepot.com API
Search and browse Home Depot's product catalog to compare pricing, check real-time availability, and review detailed product specifications. Find products across all categories, look up store locations and hours, and check fulfillment options including in-store pickup and delivery.
walmart.com API
Retrieve product data from Walmart.com including pricing, descriptions, availability, reviews, and category listings. Access real-time product information to search by keyword, look up items by ID or URL, and browse department categories.