LinkedIn can be best described as an online, employment-oriented service. It launched in 2003., and grew to have a base of 774+ million registered members from over 200 countries and territories. It operates both via websites and mobile apps, being available in 24 different languages. It's by far the most popular employment-oriented web service and its popularity only seems to increase each year.

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.linkedin.com/company/warehouse/people/"}'

Read operations

Get method will pull in profile data, for each profile. It will be ordered by date and can include information from the code example below:

Request

{
"propertyUrl":""https://www.linkedin.com/company/warehouse/people/",
"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

{
"ratingValue": "",
"ratingCount": "",
"success": true,
"wrongUrl": false,
"peopleYouMayKnow": [
{
"authorUrl": "",
"author": "LinkedIn Member",
"rating": "",
"reviewedOn": "",
"text": "Apparel & Fashion London, London",
"recommendation": "",
"tags": "",
"identifier": "",
"replies": "",
"repliedTo": false,
"imageUrl": "https://media-exp1.licdn.com/dms/image/C560BAQExJH-LXtN58Q/company-logo_200_200/0/1604332667815?e=1643846400&v=beta&t=Pf4jIRclqg_ZVSj68FXWF0cd7DOU9qlCRaIvRthD-PA"
}

]
}

Linkedin review jla final