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,
"data": {
"category": "sample",
"category_id": "sample-id",
"count": 1,
"fetched_at": "sample",
"has_more": true,
"page": 1,
"products": [
{
"brand_name": "sample",
"currency_code": "sample",
"image_url": "https://example.com/resource",
"original_price": "sample",
"price": "sample",
"product_id": "sample-id",
"product_name": "sample",
"url": "https://example.com/resource"
}
],
"source_url": "https://example.com/resource",
"total_count": 1
},
"msg": "OK"
}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 -- only the trailing category id is used. Returns normalized products with name, brand, pricing, and image.
{
"code": 200,
"data": {
"category": "sample",
"category_id": "sample-id",
"count": 1,
"fetched_at": "sample",
"has_more": true,
"page": 1,
"products": [
{
"brand_name": "sample",
"currency_code": "sample",
"image_url": "https://example.com/resource",
"original_price": "sample",
"price": "sample",
"product_id": "sample-id",
"product_name": "sample",
"url": "https://example.com/resource"
}
],
"source_url": "https://example.com/resource",
"total_count": 1
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/wayfair/category?category=<category>" \
-H "x-api-key: $CRAWLORA_API_KEY"