RealSelf is a healthcare marketplace where consumers research aesthetic treatments and connect with physicians. The website primarily targets plastic surgery, dermatology and minimally-invasive treatments. There are 20,000 registered doctors and practices. The site has more than 2 million reviews and had 94 million visitors in 2017. RealSelf’s website has been compared in the media to Yelp, Avvo and Trip Advisor due to its emphasis on user-generated content and connecting consumers to businesses through its marketplace.

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.realself.com/dr/finny-george-new-york-ny"}'

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.realself.com/dr/finny-george-new-york-ny",
"dateFrom":"2018-03-10" *

"reviewLimit":10 **

}

*  "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": "Finny George, MD",
"location": "New York, New York",
"ratingValue": "5.0",
"ratingCount": "89",
"reviews": [
{
"reviewId": "11768019",
"customer": {
"username": "Energetic124403",
"location": null,
"level": null
},
"title": "3 months post-op and I am so elated with my results",
"rating": "5",
"text": "I had a wonderful experience with Dr George (...).",
"reviewedOn": "2022-01-16",
"photos": null,
"repliedTo": null,
"externalSource": null,
"replies": null,
"followUpReviews": [],
"comments": null,
"selfReview": {
"reviewId": null,
"name": null,
"reviewedOn": null,
"text": "",
"helpful": null,
"commentCount": null,
"rating": null,
"comments": 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.realself.com/dr/finny-george-new-york-ny"
}

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

Parameter content type: application/json

Response

{
"valid": true,
"title": "Dr. Finny George, MD",
"address": "535 Fifth Ave., 33rd Floor, New York, NY",
"phoneNumber": "(646) 974-9982",
"websiteURL": "https://www.lipsg.com/doctors/plastic-surgeon-dr-finny-george-new-york-nyc/",
"categories": "Board Certified Plastic Surgeon",
"description": "Every patient encounter is an (...)",
"reviewCount": 101,
"rating": 5.0,
"openingHours": null,
"specialities": "Mommy Makeover, Breast Enhancement, Butt Enhancement"
}