Houzz Products Scraper 🏠 avatar

Houzz Products Scraper 🏠

Try for free

2 hours trial then $19.99/month - No credit card required now

Go to Store
Houzz Products Scraper 🏠

Houzz Products Scraper 🏠

easyapi/houzz-products-scraper
Try for free

2 hours trial then $19.99/month - No credit card required now

Scrape product listings from Houzz.com including prices, descriptions, reviews, and images. Perfect for market research, price monitoring, and product analysis.

Developer
Maintained by Community

Actor Metrics

  • 3 Monthly users

  • No reviews yet

  • No bookmarks yet

  • >99% runs succeeded

  • Created in Feb 2025

  • Modified 3 days ago

Extract detailed product information from Houzz.com, one of the largest home improvement and interior design platforms.

Features ✨

  • Scrape product listings with complete details
  • Support for category and search URLs
  • Get pricing information including current and previous prices
  • Extract product descriptions, specifications, and features
  • Collect review scores and review counts
  • Download product images
  • Support for pagination and dynamic loading
  • Built-in proxy rotation support

Input Parameters 🎯

  • searchUrls: List of Houzz.com product listing URLs to scrape
  • maxItems: Maximum number of items to scrape (default: 100)
  • proxyConfiguration: Optional proxy settings for enhanced scraping reliability

Output Data Structure 📊

The actor outputs detailed product information including:

  • Product ID and title
  • Current and previous prices
  • Manufacturer information
  • Product description and specifications
  • Review scores and counts
  • Product images
  • Shipping information
  • Product badges and bestseller status
  • Availability and stock status

Use Cases 🎯

  • Price monitoring and competitive analysis
  • Market research for home furnishing industry
  • Product catalog building
  • Inventory tracking
  • Design trend analysis

Tips 💡

  • Use specific category URLs for better results
  • Adjust maxItems based on your needs
  • Enable proxy configuration for better reliability
  • Consider rate limiting to avoid blocking

Limitations ⚠️

  • Respects Houzz.com's robots.txt
  • Some product details may vary based on availability
  • Rate limiting may apply

Input Example

A full explanation of an input example in JSON.

1{
2    "searchUrls": [
3        "https://www.houzz.com/products/platform-beds/color--Brown/material--Wood"
4    ],
5    "maxItems": 50
6}

Output sample

The results will be wrapped into a dataset which you can always find in the Storage tab. Here's an excerpt from the data you'd get if you apply the input parameters above:

And here is the same data but in JSON. You can choose in which format to download your data: JSON, JSONL, Excel spreadsheet, HTML table, CSV, or XML.

1[
2    {
3        "searchUrl": "https://www.houzz.com/products/platform-beds/color--Brown/material--Wood",
4        "scrapedAt": "2025-02-02T07:01:46.326Z",
5        "product": {
6            "id": 155452104,
7            "title": "Modrest Soren Walnut Bed, Queen",
8            "listingPrice": {
9                "currency": "USD",
10                "basePrice": 849,
11                "previousPrice": 809,
12                "currentPrice": 809,
13                "hasPromotion": false
14            },
15            "preferredListing": {
16                "vendorListingId": 111856079,
17                "listingShippingInfo": {
18                    "shippingBadgeType": "TYPE_NO_SHIPPING_BADGE",
19                    "isFreeShipping": true
20                }
21            },
22            "isGiftCard": false,
23            "isBuyable": true,
24            "isTradeExclusive": false,
25            "quantity": 32,
26            "reviewScore": 44,
27            "numReviews": 11,
28            "manufacturer": "Vig Furniture Inc.",
29            "isExclusive": false,
30            "verifiedMPN": "76731",
31            "hasPromotion": false,
32            "moreOptionsText": "More Sizes",
33            "description": "The Soren Bed is a mid-century, farmhouse style bed. It is finished in a walnut veneer on the headboard and the legs are a solid walnut. The oversized, chevron patterened headboard makes a statement in any bedroom. The low platform style is expertly supported and it requires no box spring for a low profile an finished look.<br/><ul class=\"description-item-list\"><li class=\"description-item\">Walnut Veneer Finish</li><li class=\"description-item\">Chevron patterned Walnut finished veneer on headboard</li><li class=\"description-item\">Walnut finished solid wood legs and support frame</li><li class=\"description-item\">8\" Thick Mattress Recommended</li><li class=\"description-item\">No Box Spring Required - Slats Included</li><li class=\"description-item\">Some Assembly Required</li><li class=\"description-item\">Weight Capacity: 440 lbs.</li></ul>",
34            "productBadges": {
35                "bestSellerOfTopics": [
36                    {
37                        "topicId": 14213,
38                        "topicName": "Platform Beds",
39                        "rank": 38,
40                        "topicUrl": "https://www.houzz.com/products/platform-beds/best-sellers--best-sellers"
41                    }
42                ]
43            },
44            "url": "https://www.houzz.com/products/modrest-soren-walnut-bed-queen-prvw-vr~155452104",
45            "images": [
46                {
47                    "imageId": 594510385,
48                    "externalId": "8ab108e1072c5278",
49                    "contentModified": "4962",
50                    "whiteBg": 2
51                },
52                {
53                    "imageId": 590495892,
54                    "externalId": "e8215ce306da9dce",
55                    "contentModified": "8191",
56                    "whiteBg": 1
57                },
58                {
59                    "imageId": 260607105,
60                    "externalId": "977171680e5694af",
61                    "contentModified": "8191",
62                    "whiteBg": 2
63                },
64                {
65                    "imageId": 590495885,
66                    "externalId": "3951870d06da9dce",
67                    "contentModified": "8191",
68                    "whiteBg": 1
69                }
70            ]
71        }
72    },
73    ...
74]