Houzz is a website and online community about architecture, interior design and decorating, landscape design and home improvement. The Houzz platform and mobile apps feature photos, articles, product recommendations, and a user forum. Houzz connects homeowners to home improvement professionals, to other renovating homeowners who can support them, to education materials they need to renovate with confidence, and to an amazing universe of products and materials to transform their homes – all through innovative and user-friendly technology.

Submitting the API request

This is sample CURL request you can use to test JustLikeAPI features.

Please make sure to replace:
- YOUR_API_KEY with the one you received from our support team
- PAGE_SPECIFIC_URL - with the endpoint of the method you're trying to invoke
- JSON payload - with the contents of your request (the sample payload for each request is given below)

 

curl -X POST https://api.justlikeapi.io/reviews/get -H 'authorization: Bearer YOUR_API_KEY' -H 'cache-control: no-cache' -H 'content-type: application/json' -d '{ "propertyUrl": "https://www.houzz.com/products/madison-pure-white-bathroom-vanity-60-no-mirror-no-faucet-prvw-vr~44070122"}'

Read operations

Get method will pull in reviews for platform of your choice. Reviews will be ordered by date and can include information from the code example bellow:

Request

{
"propertyUrl":"https://www.houzz.com/products/madison-pure-white-bathroom-vanity-60-no-mirror-no-faucet-prvw-vr~44070122",
“username”:”housedeco”,
“password”:”b234dfe2y”,
"dateFrom":"2018-03-10", *
“reviewLimit”:”1″ **
}

*  "dateFrom" is optional

** “reviewLimit” is also optional (retrieves a specified number of reviews)

Base URL : https://justlikeapi.io/reviews/get

Parameter content type: application/json

Response

{
    "propertyName": "Madison Pure White Bathroom Vanity, 60\", No Mirror, No Faucet",
    "location": null,
    "ratingValue": null,
    "ratingCount": null,
    "reviews": [
        {
            "reviewId": "natasasokolovich20210309176",
            "customer": {
                "username": "Natasa Sokolovich",
                "location": null,
                "level": null
            },
            "title": "",
            "rating": "2",
            "text": "The product itself is good (...)",
            "reviewedOn": "2021-03-09",
            "photos": [
                {
                    "photoUrl": "https://st.hzcdn.com/fimgs/533126a4013206e2_8840-w130-h130-b0-p0--.jpg"
                },
                {
                    "photoUrl": "https://st.hzcdn.com/fimgs/76a189f9013206c3_8799-w130-h130-b0-p0--.jpg"
                }
            ],
            "repliedTo": null,
            "externalSource": null,
            "replies": null,
            "followUpReviews": null,
            "comments": null,
            "selfReview": null,
            "commentsCount": null,
            "reviewerPhoto": {
                "photoUrl": "https://st.hzcdn.com/fimgs/04d342f309cafcb0_5188-w40-h40-b0-p0--.jpg"
            }
        }
    ]
}

Verify method will return propertyURL. This would be general information of that property. Bellow is a code example of request and response for Verify method:

Request

{
"propertyUrl":"https://www.houzz.com/products/madison-pure-white-bathroom-vanity-60-no-mirror-no-faucet-prvw-vr~44070122"
}

Base URL : https://justlikeapi.io/reviews/verify

Parameter content type: application/json

Response

{
    "valid": true,
    "title": "Madison Pure White Bathroom Vanity, 60\", No Mirror, No Faucet",
    "address": null,
    "phoneNumber": null,
    "websiteURL": null,
    "categories": "Bathroom Vanities and Sink Consoles",
    "description": null,
    "reviewCount": 263,
    "rating": 4.4,
    "openingHours": null,
    "specialities": null
}