Does the LinkedIn API get all the employees in the company?

Can I get a list of all the employees in the company? Not only in the current network of users. How this search returns:

http://api.linkedin.com/v1/people-search?company-name=Apple 

This is possible on the main LinkedIn site, so I donโ€™t understand why it will not be in the API?

+4
source share
1 answer

You can use the 'company-name ' field selector and set the 'current-company' field selector to True to retrieve employees on your network:

 GET http://api.linkedin.com/v1/people-search?company-name=Apple&current-company=true 

This will bring all the Apple employees who currently work there.

But the People Search API is part of the LinkedIn Vetted API Access Program. You must apply here and get LinkedIn approval before using this API.

+7
source

Source: https://habr.com/ru/post/1502044/


All Articles