HomeAdvisor  is a digital marketplace that connects homeowners with prescreened, local service professionals to complete home improvement, maintenance and remodeling projects. HomeAdvisor also offers homeowners home improvement project planning resources like True Cost Guide, where customers can view average project costs. HomeAdvisor is a free resource for homeowners, and a paid network for service professionals .

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.homeadvisor.com/rated.HomeWarrantyofAmerica.53286947.html"}'

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.homeadvisor.com//rated.NewEnglandBoilerWorks.36262675.html",
"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": "New England Boiler Works",
    "location": "270 Hopkins Hill Road, Coventry, RI 02816",
    "ratingValue": "4.9",
    "ratingCount": "34",
    "reviews": [
        {
            "reviewId": "17532427",
            "customer": {
                "username": "Kevin O.",
                "location": "West Warwick, RI",
                "level": null
            },
            "title": "Install or Replace Furnace or Forced Air Heating System",
            "rating": "5.0",
            "text": "Very professional and knowledgeable. Answered all (...)",
            "reviewedOn": "2021-11-19",
            "photos": null,
            "repliedTo": null,
            "externalSource": null,
            "replies": null,
            "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.homeadvisor.com/rated.PICHomeProsLLC.41341732.html",
}

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

Parameter content type: application/json

Response

{
    "valid": true,
    "title": "PIC Home Pros, LLC",
    "address": "73 Rockingham Rd, Londonderry, NH 03053",
    "phoneNumber": "603-458-6904",
    "websiteURL": "http://pichomepros.com",
    "categories": "Plumber",
    "description": null,
    "reviewCount": 105,
    "rating": 4.21,
    "openingHours": null,
    "specialities": null
}

Get leads method will return all active leads from the HomeAdvisor. Leads will be ordered by date and can include information from the code example bellow:

Request:

{
"propertyUrl":"https://www.homeadvisor.com"
"username":"justIG",
"password":"asdw123",
"datefrom":"2017-10-10" *
}

*  "datefrom" is optional

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

Parameter content type: application/json

Response:

{
   "propertyName": "Construction",
   "leads": [
         {
               "leadId": "555",
               "name": " Name",
               "email": "email@justlikeapi.io",
                "cellPhone": "555-555",
               "dayTime": "555-555",
               "evening": null,
                "job": "123456",
                "jobFree": "10",
                "address": "5th Avenue",
                "dateCreated": "2017-10-10",
        }

]

}