Wayfair API endpoint
Use Crawlora's Get a Wayfair product's full detail API to extract supported public Wayfair data as structured JSON. This page includes request parameters, cURL examples, response schema, error behavior, credit cost, and a Playground link for testing before integration.
/wayfair/product/{id}Returns one Wayfair product's full detail: name, brand, price, stock status, aggregate rating with a 1-5 star breakdown, images, the color variant shown, and site-selected feature highlights. id is the product's own "W"-prefixed id (e.g. W100794312), taken from a category result's product_id field or a product page's URL. An unrecognized id returns 404. Developers commonly use this endpoint for data enrichment, monitoring, research dashboards, internal automation, and agent-native workflows that need repeatable structured public web data. Authentication uses the documented Crawlora headers, and usage is metered with the credit cost shown on this page.
Request parameters are generated from the active endpoint catalog. Required values must be sent before Crawlora can call the upstream public web data source.
| Parameter | Type | Required | Default | Description | Example |
|---|---|---|---|---|---|
| id (path) | string | Yes | Wayfair product id, starting with W | ||
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/wayfair/product/example" \ -H "x-api-key: $CRAWLORA_API_KEY"
Send your scraping API key in the x-api-key header. Use the console API Keys page to rotate or select the active key.
Endpoint usage is metered in credits. The plan prices, included credits, limits, and overage rates below match the active backend billing configuration.
| Plan | Price | Included credits | Daily cap | Rate limit | Overage |
|---|---|---|---|---|---|
| Free | $0/mo | 2,000 | 500 daily credits | 5/min | No overage |
| Starter | $9/mo | 20,000 | 5,000 daily credits | 15/min | $0.75/1,000 overage credits when enabled |
| Growth | $29/mo | 100,000 | 25,000 daily credits | 45/min | $0.45/1,000 overage credits when enabled |
| Pro | $79/mo | 400,000 | No daily cap | 120/min | $0.30/1,000 overage credits |
| Business | $199/mo | 1,200,000 | No daily cap | 300/min | $0.20/1,000 overage credits |
| Enterprise | $499/mo | 5,000,000 | No daily cap | 1,000/min | $0.12/1,000 overage credits |
This endpoint is executed through Crawlora's managed scraping infrastructure.
Some targets require real browser execution because the data is loaded through JavaScript, dynamic rendering, or interaction-like browser behavior.
For supported endpoints, Crawlora can route requests through a managed browser cluster. This allows Crawlora to execute JavaScript, load dynamic content, apply browser-level request behavior, and normalize the rendered result into JSON.
You do not need to operate your own Playwright, Puppeteer, Chrome, proxy, queue, or retry infrastructure.
- `stock_message` is Wayfair's own inventory status text (e.g. `"795 Left in Stock"`), surfaced verbatim since it is more informative than the plain `in_stock` boolean alone. - `rating_breakdown` maps each star value `"1"` through `"5"` to the number of reviews with that rating. Individual review text is not available from this endpoint -- only the aggregate rating, review count, and histogram. - `selected_color` is the color variant this page rendered; Wayfair's initial page load does not carry a full list of every other available color's id and price, so a full color-variant list is not included. - `highlights` are Wayfair's own site-selected feature bullets (its "Why We Love It" section) -- the closest available substitute for a marketing description; a product without this section returns an empty list. - `original_price` equals `price` when the product is not discounted. - An unrecognized `id` returns `404`. A malformed `id` (missing the `W` prefix) returns `400` before any upstream request is made. ```json {"code":200,"msg":"OK","data":{"product_id":"W100794312","product_name":"Drusilla Ergonomic Mesh Task Chair","brand_name":"Ebern Designs","price":"77.99","original_price":"77.99","currency_code":"USD","in_stock":true,"stock_message":"795 Left in Stock","rating":4.72,"rating_count":994,"rating_breakdown":{"1":16,"2":10,"3":41,"4":106,"5":821},"images":["https://assets.wfcdn.com/im/1/resize-h1000-w1000%5Ecompr-r85/2582/258279464/image.jpg"],"selected_color":"Black","highlights":["This height-adjustable seat makes it easier to find a comfortable sitting position","The breathable mesh back promotes airflow for cooler comfort through the workday","Those smooth-rolling casters glide easily for convenient movement around your workspace"],"url":"https://www.wayfair.com/pdp/product-W100794312.html","source_url":"https://www.wayfair.com/pdp/product-W100794312.html","fetched_at":"2026-08-10T10:00:00Z"}} ```
Crawlora does not silently return bad data when the upstream page cannot be used.
| Status | Common failure case |
|---|---|
| 400 | Invalid input or missing required parameter |
| 429 | Plan or endpoint rate limit exceeded |
| 500 | Internal execution error |
| 502 | Upstream platform failed, returned unusable HTML, or served a challenge page that could not be resolved |
When possible, Crawlora returns structured error context so your integration can retry, back off, or inspect the request.
| Status | Description | Schema |
|---|---|---|
| 400 | Bad Request | #/definitions/app.Response |
| 404 | Not Found | #/definitions/app.Response |
| 429 | Too Many Requests | #/definitions/app.Response |
| 503 | Service Unavailable | #/definitions/app.Response |
Request schema
No body schema
Response schema
#/definitions/wayfair.productDetailResponseDoc
| Field | Type | Required | Enum | Bounds | Example | Description |
|---|---|---|---|---|---|---|
| code | integer | No | 200 | |||
| data | wayfair.ProductDetailResponse | No | ||||
| data.brand_name | string | No | ||||
| data.currency_code | string | No | ||||
| data.fetched_at | string | No | ||||
| data.highlights | array | No | Highlights are Wayfair's own site-selected feature bullets (its "Why We Love It" section), the closest available substitute for a marketing description -- a distinct marketing description field was not found in the page's initial data. | |||
| data.images | array | No | Images lists every distinct product image found on the page. | |||
| data.in_stock | boolean | No | ||||
| data.original_price | string | No | ||||
| data.price | string | No | ||||
| data.product_id | string | No | ||||
| data.product_name | string | No | ||||
| data.rating | number | No | ||||
| data.rating_breakdown | object | No | RatingBreakdown maps each star value ("1" through "5") to the number of reviews with that rating. | |||
| data.rating_count | integer | No | RatingCount is the product's total review count, sourced from the page's own aggregate rating summary. | |||
| data.selected_color | string | No | SelectedColor is the color variant this page rendered (from its own URL/piid). Wayfair's initial page load does not carry a full list of every other available color's id/price -- see service.go's doc comment. | |||
| data.source_url | string | No | ||||
| data.stock_message | string | No | StockMessage is Wayfair's own inventory status text (e.g. "795 Left in Stock"), surfaced verbatim since it is more informative than a plain boolean. | |||
| data.url | string | No | ||||
| msg | string | No | OK |
Use environment variables for secrets and keep Crawlora API keys server-side.
curl -X GET "https://api.crawlora.net/api/v1/wayfair/product/example" \
-H "x-api-key: $CRAWLORA_API_KEY"Crawlora is designed for responsible structured public web data workflows. Customers are responsible for using Crawlora in compliance with applicable laws, third-party rights, target-platform rules, and Crawlora terms.
Read Crawlora terms