Facebook is probably the best known of the social networking sites. It allows registered users to create profiles, upload photos and video, send messages and keep in touch with friends, family and colleagues. Shared content can be made publicly accessible, or it can be shared only among a select group of friends or family, or with a single person. Facebook is user-friendly and open to everyone.

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.facebook.com/thesportingclubhtx/reviews",
"username":"test@outlook.com",
"password":"test25",
"dateFrom":"2018-08-01", *
"reviewLimit":"1" **
}

*  "dateFrom" is optional (retrieves only reviews posted after the specified date)

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

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

Parameter content type: application/json

Response

{
"ratingValue": "2.3",
"ratingCount": "3",
"success": true,
"wrongUrl": false,
"facebookReviews": [
{
"authorUrl": "https://www.facebook.com/andre.wagner?__cft__[0]=AZW8RcO4T1kOxDB64On1_Ki6ZcsplDTEB2NHQ6-OvcQWzYWcwOxDhyXHBCkGrF9AxtJki0nR-ayzZ3iywjYLtZVk-0tj9YE3UumJifJaK4bMQg&__tn__=-]C%2CP-R",
"author": "Andre Wagner",
"rating": "",
"reviewedOn": "2021-02-26",
"text": "I honestly came here to enjoy the food with a drink. Arrived and (...)",
"recommendation": "doesn't recommend",
"tags": "",
"identifier": 10101380622195035,
"replies": [],
"repliedTo": false
}

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

Request

{
"propertyUrl":"https://www.facebook.com/thesportingclubhtx/reviews",
"username":"test@outlook.com",
"password":"test25",
"datefrom":"2018-08-01" *
}

*  "datefrom" is optional (retrieves only reviews posted after specified date)

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

Parameter content type: application/json

Response

{
"ratingValue": "2.3",
"ratingCount": "3",
"success": true,
"wrongUrl": false,
"facebookReviews": [
{
"authorUrl": "https://www.facebook.com/andre.wagner?__cft__[0]=AZW8RcO4T1kOxDB64On1_Ki6ZcsplDTEB2NHQ6-OvcQWzYWcwOxDhyXHBCkGrF9AxtJki0nR-ayzZ3iywjYLtZVk-0tj9YE3UumJifJaK4bMQg&__tn__=-]C%2CP-R",
"author": "Andre Wagner",
"rating": "",
"reviewedOn": "2021-02-26",
"text": "I honestly came here to enjoy the food with a drink. Arrived and (...)",
"recommendation": "doesn't recommend",
"tags": "",
"identifier": 10101380622195035,
"replies": [],
"repliedTo": false
}

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.facebook.com/215dentist/"
}

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

Parameter content type: application/json

Response

{
    "success": true,
    "wrongURL": false,
    "propertyUrl": "https://www.facebook.com/215dentist/",
    "businessName": "Dr. Marcus' Total Dental Care",
    "pageID": "107364162743140",
    "fullAddress": "7215 Passyunk Ave Philadelphia, PA, US 19142",
    "telephone": "+1 215-365-2424",
    "websiteURL": "http://www.215dentist.com",
    "categories": "General dentist · Cosmetic dentist · Oral surgeon",
    "ratingValue": "4.8",
    "ratingCount": "83",
    "likes": "180",
    "follows": "188",
    "checkIns": "565"
}