Jobs/Search Jobs
GET
/api/job/search/guestSearch 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
| Name | Type | Required | Description |
|---|---|---|---|
| keywords | string | Required | Job search keywords |
| location | string | Optional | Location filter (e.g., 'United States') |
| start | integer | Optional | Pagination offset (0, 25, 50, ...)Default: 0 |
| experience | string | Optional | Experience level: 1=Intern, 2=Entry, 3=Associate, 4=Mid-Senior, 5=Director, 6=Executive |
| job_type | string | Optional | Job type: F=Full-time, P=Part-time, C=Contract, T=Temporary, V=Volunteer, I=Internship, O=Other |
| remote | string | Optional | Remote filter: 1=On-site, 2=Remote, 3=Hybrid |
| posted | string | Optional | Posted 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"