Glassdoor is a website that offers users to anonymously submit reviews, salaries, read others as well as search and apply for jobs through the platform itself. It launched in 2007, in California, where it still has its headquarters. In April 2013, it won a Red Herring North America Award for Social Media Innovation.

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.glassdoor.com/Overview/Working-at-Science-Museum-Group-EI_IE37271.11,31.htm"}'

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.glassdoor.com/Overview/Working-at-Science-Museum-Group-EI_IE37271.11,31.htm",
"dateFrom": "2019-03-10", *
"reviewLimit" : "1" **
}

* "dateFrom" is optional

** "reviewLimit" is optional

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

Parameter content type: application/json

Response

{
    "propertyName": "Science Museum Group",
    "location": "",
    "ratingValue": "3.6",
    "ratingCount": "83",
    "reviews": [
        {
            "reviewId": null,
            "customer": {
                "username": "Jan 15, 2014 -",
                "location": "",
                "level": null
            },
            "title": "it was a great experience",
            "rating": "4",
            "text": "I was having a good time.i had a good time",
            "reviewedOn": null,
            "photos": null,
            "repliedTo": null,
            "externalSource": null,
            "replies": null,
            "followUpReviews": null,
            "comments": null,
            "selfReview": null,
            "commentsCount": null,
            "reviewerPhoto": null
        }
    ]
}
Glassdoor full