Endpoints
Person 3
Companies 5
Jobs 2
Posts 2
What is the LinkedIn API?
Read-only REST API for LinkedIn people, company, job, and post data.
LinkedIn API is available on the JoJ API marketplace. Subscribe with a single JoJ API key, call it through one gateway, and pay from one wallet — no separate account or contract with the provider.
LinkedIn API endpoints
- GET
/person-profileGet a person's profile
Returns a full profile including experience, education, and skills. Obtain a `memberId` from `/people/search` or `/company/{companyId}/employees`. Note that profiles which are private or outside your network cannot be retrieved; these appear in listings with the name `LinkedIn Member`.
- GET
/person-profile/postsList a person's posts
Returns an empty list if the person has not posted.
- GET
/people/searchSearch people
All filters are optional and can be combined. Returns the same person structure as `/company/{companyId}/employees`. Returns an empty list when nothing matches.
- GET
/companyGet a company profile
Provide either `slug` or `companyId`. If neither is given, the request fails with `400 VALIDATION_ERROR`. Take the `slug` from a `/company/search` result rather than guessing it from the company name — a company's slug often differs from its display name.
- GET
/company/searchSearch companies
Use the `slug` or `companyId` from a result to fetch full details from `/company`, the employee list, or the job list.
- GET
/company/{companyId}/employeesList a company's employees
Returns people who list this company as their employer. Results may include private or out-of-network profiles, which appear with the name `LinkedIn Member`. Full profiles cannot be retrieved for those records, so check the name before calling `/person-profile` with the returned `memberId`.
- GET
/company/{companyId}/jobsList a company's open jobs
Returns an empty list if the company has no open postings. Use the `jobId` from a result with `/jobs/detail/{jobId}`.
- GET
/company/postsList a company's posts
Returns the same post structure as `/person-profile/posts`. This endpoint is addressed by `slug` only.
- GET
/jobs/searchSearch job postings
Use the `jobId` from a result with `/jobs/detail/{jobId}`.
- GET
/jobs/detail/{jobId}Get a job posting
Returns the full description for a posting. Several fields are only present on some postings; the company name is most reliably taken from the search result that provided the `jobId`.
- GET
/posts/{postId}/commentsList comments on a post
Returns an empty list when the post has no comments.
- GET
/posts/{postId}/reactionsList reactions on a post
Returns an empty list when the post has no reactions.