Skip to main content

Search Jobs

POST /search-jobs

Search for job postings on LinkedIn with various filters.

Pricing

10 credits per call.

Parameters

ParameterTypeRequiredDescription
keywordstringNoSearch keyword
geo_idstringNoGeographic location ID
date_postedstringNoDate posted filter: past-24h, past-week, past-month
experience_levelstringNoExperience level filter
job_typestringNoJob type: full-time, part-time, contract, internship
remotestringNoRemote filter: on-site, remote, hybrid
company_idstringNoFilter by company ID
industry_idstringNoFilter by industry ID
startintegerNoStarting offset (default: 0)

Example Request

curl --request POST \
--url 'https://api.infoplug.io/search-jobs' \
--header 'X-INFOPLUG-API-KEY: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--data '{
"keyword": "software engineer",
"geo_id": "103644278",
"date_posted": "past-week",
"job_type": "full-time",
"remote": "remote"
}'

Example Response

{
"data": {
"jobs": [
{
"job_id": "3812345678",
"title": "Senior Software Engineer",
"company_name": "Tech Company",
"company_linkedin_url": "https://www.linkedin.com/company/techcompany/",
"location": "San Francisco, CA (Remote)",
"posted_at": "2024-01-15T10:30:00Z",
"job_url": "https://www.linkedin.com/jobs/view/3812345678"
}
],
"paging": {
"start": 0,
"count": 25,
"total": 500
}
}
}