Endpoint Playground
Test Crawlora's Browse a Wayfair category 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/category?category=<category>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| category | string | Yes | Wayfair category id, slug, or URL | |
| page | integer | No | Result page, 1-based, defaults to 1 |
{
"code": 200,
"msg": "OK",
"data": {
"category": "office-chairs-c478390",
"category_id": "478390",
"page": 1,
"count": 2,
"total_count": 19734,
"has_more": true,
"products": [
{
"product_id": "W110106074",
"product_name": "Huba Wide Seat Leisure Office Chair Cross Legs No Wheels",
"brand_name": "Inbox Zero",
"price": "81.99",
"original_price": "93.99",
"currency_code": "USD",
"image_url": "https://assets.wfcdn.com/im/1/resize-h1000-w1000%5Ecompr-r85/3347/334778195/image.jpg",
"url": "https://www.wayfair.com/pdp/product-W110106074.html"
},
{
"product_id": "W100310398",
"product_name": "Ergonomic Mesh Task Chair with Lumbar Support",
"brand_name": "Latitude Run",
"price": "98.99",
"original_price": "98.99",
"currency_code": "USD",
"image_url": "https://assets.wfcdn.com/im/1/resize-h1000-w1000%5Ecompr-r85/2582/258279464/image.jpg",
"url": "https://www.wayfair.com/pdp/product-W100310398.html"
}
],
"source_url": "https://www.wayfair.com/furniture/sb0/office-chairs-c478390.html",
"fetched_at": "2026-08-24T11:30: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 a Wayfair category page's product grid, with real page-based pagination. category accepts a bare Wayfair category id ("478390"), a "c"-prefixed id ("c478390"), a category slug ("office-chairs-c478390"), or a full category URL copied from wayfair.com. The trailing category id is resolved to Wayfair's current canonical URL through its published sitemap. Returns normalized products with name, brand, pricing, and image.
{
"code": 200,
"msg": "OK",
"data": {
"category": "office-chairs-c478390",
"category_id": "478390",
"page": 1,
"count": 2,
"total_count": 19734,
"has_more": true,
"products": [
{
"product_id": "W110106074",
"product_name": "Huba Wide Seat Leisure Office Chair Cross Legs No Wheels",
"brand_name": "Inbox Zero",
"price": "81.99",
"original_price": "93.99",
"currency_code": "USD",
"image_url": "https://assets.wfcdn.com/im/1/resize-h1000-w1000%5Ecompr-r85/3347/334778195/image.jpg",
"url": "https://www.wayfair.com/pdp/product-W110106074.html"
},
{
"product_id": "W100310398",
"product_name": "Ergonomic Mesh Task Chair with Lumbar Support",
"brand_name": "Latitude Run",
"price": "98.99",
"original_price": "98.99",
"currency_code": "USD",
"image_url": "https://assets.wfcdn.com/im/1/resize-h1000-w1000%5Ecompr-r85/2582/258279464/image.jpg",
"url": "https://www.wayfair.com/pdp/product-W100310398.html"
}
],
"source_url": "https://www.wayfair.com/furniture/sb0/office-chairs-c478390.html",
"fetched_at": "2026-08-24T11:30:00Z"
}
}curl "https://api.crawlora.net/api/v1/wayfair/category?category=<category>" \
-H "x-api-key: $CRAWLORA_API_KEY"