Indeed is a global employment website for job listings. It launched in 2014 in the United States but is now available in over 60 countries and 28 languages. The site aggregates job listings from thousands of websites, including job boards, staffing firms, associations, and company career pages. In 2011, Indeed began allowing job seekers to apply directly to jobs on Indeed's site and offering resume posting and storage.

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.indeed.com/cmp/Brooklyn-Chinese--american-Association/reviews"}'

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.indeed.com/cmp/Brooklyn-Chinese--american-Association/reviews",
"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": "Companies Brooklyn Chinese-American Association Employee Reviews",
    "location": null,
    "ratingValue": "3.3",
    "ratingCount": "72",
    "reviews": [
        {
            "reviewId": "1fjo2vtd8t4b9802",
            "customer": {
                "username": "Teacher",
                "location": "",
                "level": null
            },
            "title": "ok",
            "rating": "3",
            "text": "Not too bad. Good for (...)",
            "reviewedOn": "2021-11-05",
            "photos": null,
            "repliedTo": null,
            "externalSource": null,
            "replies": null,
            "followUpReviews": null,
            "comments": null,
            "selfReview": null,
            "commentsCount": null,
            "reviewerPhoto": null
        }
    ]
}