Endpoint Playground
Test Crawlora's Get a Wayfair product's full detail API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/wayfair/product/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | Wayfair product id, starting with W |
{
"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",
"variant_categories": [
{
"name": "Upholstery Color",
"options": [
{
"name": "Black",
"selected": true,
"available": true,
"image_url": "https://assets.wfcdn.com/im/1/resize-h1000-w1000%5Ecompr-r85/1777/177771000/image.jpg"
},
{
"name": "Orange",
"selected": false,
"available": false,
"image_url": "https://assets.wfcdn.com/im/1/resize-h1000-w1000%5Ecompr-r85/2207/220782779/image.jpg"
}
]
}
],
"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"
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns one Wayfair product's full detail: name, brand, price, stock status, aggregate rating with a 1-5 star breakdown, images, every selectable variant option (e.g. color, finish), 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.
{
"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",
"variant_categories": [
{
"name": "Upholstery Color",
"options": [
{
"name": "Black",
"selected": true,
"available": true,
"image_url": "https://assets.wfcdn.com/im/1/resize-h1000-w1000%5Ecompr-r85/1777/177771000/image.jpg"
},
{
"name": "Orange",
"selected": false,
"available": false,
"image_url": "https://assets.wfcdn.com/im/1/resize-h1000-w1000%5Ecompr-r85/2207/220782779/image.jpg"
}
]
}
],
"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"
}
}curl "https://api.crawlora.net/api/v1/wayfair/product/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"