You can do this in several different ways. Anyway you need
Using job search, as you noted, you can do this:
http://api.linkedin.com/v1/job-search:(jobs:(id,company:(id,name),position:(title,location,job-functions))&company-name=LinkedIn
Note that job searching is a fuzzy match in this case, so if you're close, it's probably good enough. However, you do not want to include "Inc" if you are looking for a company. The documentation for the job search API is here: https://developer.linkedin.com/documents/job-search-api
Check the hacker summary at the top of the page to see all the fields that you can get with one call (no need to make subsequent calls to get more details).
However, if you received a company identifier, you can receive jobs directly from the job search API: https://developer.linkedin.com/documents/job-lookup-api-and-fields
http://api.linkedin.com/v1/jobs/1337:(id,company:(id,name),position:(title,location,job-functions)
Again, the same field selectors are used here. You can request job details in the same query that you use to find jobs in the first place.
Kirsten jones
source share