Jobs/Search Jobs
GET/api/job/search/guest

Search Jobs

Search for job listings using LinkedIn's public API. No authentication required. Returns up to 25 jobs per request.

1 credit
No authentication
Parameters
NameTypeRequiredDescription
keywordsstringRequiredJob search keywords
locationstringOptionalLocation filter (e.g., 'United States')
startintegerOptionalPagination offset (0, 25, 50, ...)Default: 0
experiencestringOptionalExperience level: 1=Intern, 2=Entry, 3=Associate, 4=Mid-Senior, 5=Director, 6=Executive
job_typestringOptionalJob type: F=Full-time, P=Part-time, C=Contract, T=Temporary, V=Volunteer, I=Internship, O=Other
remotestringOptionalRemote filter: 1=On-site, 2=Remote, 3=Hybrid
postedstringOptionalPosted time: r86400=24h, r604800=week, r2592000=month
Response Example
{
  "keywords": "python",
  "location": "United States",
  "total_results": 25,
  "jobs": [
    {
      "job_id": "4364654484",
      "title": "Jr. Python Developer",
      "company_name": "EarthCam",
      "location": "Upper Saddle River, NJ",
      "posted_date": "2026-01-20",
      "posted_text": "4 days ago",
      "is_actively_hiring": true
    }
  ]
}
Try it out

No API keys found. Create a key to use the playground.

Job search keywords

Location filter (e.g., 'United States')

Pagination offset (0, 25, 50, ...)

Experience level: 1=Intern, 2=Entry, 3=Associate, 4=Mid-Senior, 5=Director, 6=Executive

Job type: F=Full-time, P=Part-time, C=Contract, T=Temporary, V=Volunteer, I=Internship, O=Other

Remote filter: 1=On-site, 2=Remote, 3=Hybrid

Posted time: r86400=24h, r604800=week, r2592000=month

Code Examples
curl -X GET "https://api.heyscraper.io/api/job/search/guest?keywords=%3Ckeywords%3E" \
  -H "X-API-Key: hs_live_your_api_key"