Skip to main content
GET
/
linkedin
/
job
Get the LinkedIn job details
curl --request GET \
  --url https://api.harvest-api.com/linkedin/job \
  --header 'X-API-Key: <api-key>'
{
  "status": "<string>",
  "error": "<string>",
  "query": {
    "jobId": "<string>",
    "url": "<string>"
  }
}
const params = new URLSearchParams({
  url: 'https://www.linkedin.com/jobs/view/4153069088/', // by URL
  // jobId: '4153069088', // by jobId alternatively
});

fetch(`https://api.harvest-api.com/linkedin/job?${params.toString()}`, {
  headers: { 'X-API-Key': '<api-key>' },
})
  .then((response) => response.json())
  .then((data) => console.log(data));

Authorizations

X-API-Key
string
header
required

Query Parameters

jobId
string

ID of the LinkedIn job (optional)

url
string<url>

URL of the LinkedIn job (optional)

Response

Job details response

element
object
status
string
error
string
query
object