Healthgrades is an American company in the health care industry. It provides information about more than 3 million U.S health care providers. It was founded in 1998. and it is based in Denver, Colorado. It represents the first comprehensive physician rating and comparison database.

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.healthgrades.com/physician/dr-matthew-benz-27px4"}'

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.healthgrades.com/physician/dr-matthew-benz-27px4",
"dateFrom": "2018-03-10", *
"reviewLimit" : "1" **
}

* "dateFrom" is optional

** "reviewLimit" is optional

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

Parameter content type: application/json

Response

{
    "doctorName": "Dr. Matthew Benz, MD",
    "location": "Retina Consultants of Houston
Pllc 6560 Fannin St Ste 750 Houston, TX 77030",
    "reviews": [
        {
            "reviewId": "bb991fe3-0662-4b90-b5f7-cc4699d1db0c",
            "customer": {
                "username": "Steve Menegaz –",
                "location": null,
                "level": null
            },
            "text": "I have been a patient of Dr. Benz since (...)",
            "reviewedOn": "2021-06-22",
        }
    ],
    "reviewContent": "Dr. Matthew Benz, MD is a Vitreoretinal Disease  (...)",
    "platformName": "Healthgrades",
    "listingUrl": "https://www.healthgrades.com/physician/dr-matthew-benz-27px4",
    "score": "4.40625",
    "reviewDate": null,
    "value": "4.4",
    "ratingCount": "32"
}
HealthgradesReviewJLA