Zillow is the leading real estate and rental marketplace dedicated to empowering consumers with data, inspiration and knowledge around the place they call home, and connecting them with the best local professionals who can help. Zillow serves the full lifecycle of owning and living in a home: buying, selling, renting, financing, remodeling and more. It starts with Zillow’s living database of more than 110 million U.S. homes – including homes for sale, homes for rent and homes not currently on the market, as well as Zestimate home values, Rent Zestimates and other home-related information. Zillow operates the most popular suite of mobile real estate apps, with more than two dozen apps across all major platforms.

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.zillow.com/profile/Treeium/"}'

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.zillow.com/profile/Treeium/",
"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": "Treeium Inc",
    "location": "Treeium 5352 Laurel Canyon Blvd. #200 Valley Village, CA 91607",
    "ratingValue": "4.9",
    "ratingCount": "33",
    "reviews": [
        {
            "reviewId": "5320049",
            "customer": {
                "username": "Ameech846",
                "location": null,
                "level": null
            },
            "title": null,
            "rating": "5.0",
            "text": "We just finished our project of adding a 2nd (...)",
            "reviewedOn": "2019-09-27",
            "photos": [],
            "repliedTo": false,
            "externalSource": null,
            "replies": [],
            "followUpReviews": null,
            "comments": null,
            "selfReview": null,
            "commentsCount": null,
            "reviewerPhoto": null
        }
    ]
}

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.zillow.com/profile/Treeium/"
}

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

Parameter content type: application/json

Response

{
    "valid": true,
    "title": "Treeium Inc",
    "address": "Treeium, 5352 Laurel Canyon Blvd. #200, Valley Village, CA 91607",
    "phoneNumber": "(855) 833-8733",
    "websiteURL": "http://www.treeium.com",
    "categories": "General Contracting, Interior Design, Painting, Builder",
    "description": null,
    "reviewCount": 33,
    "rating": 4.9,
    "openingHours": null,
    "specialities": null
}
zillow