LinkedIn Jobs Scraper - No Cookies avatar
LinkedIn Jobs Scraper - No Cookies

Pricing

$5.00 / 1,000 jobs

Go to Apify Store
LinkedIn Jobs Scraper - No Cookies

LinkedIn Jobs Scraper - No Cookies

Extract LinkedIn jobs data including description, titles, company info, application details... Features advanced filtering by location, experience, job type, and Easy Apply status.

Pricing

$5.00 / 1,000 jobs

Rating

3.8

(8)

Developer

API Maestro

API Maestro

Maintained by Community

Actor stats

95

Bookmarked

2K

Total users

181

Monthly active users

38 days

Issues response

a month ago

Last modified

Share

🚀 LinkedIn Jobs Scraper Actor

An Linkedin real-time scraper actor fetches real-time job listings on LinkedIn .

For other LinkedIn actors, check: https://apify.com/apimaestro

✨ Key Features

  • No account needed: Don't risk your account security by sharing your cookies and don't get your account restricted or banned!
  • Search jobs by keywords
  • Filter by location ID (geoId from LinkedIn)
  • Filter by workplace type (remote, on-site, hybrid)
  • Filter by experience level
  • Filter by sorting
  • Returns 50 most relevant job listings per search
  • Structured output with detailed job information

Input Parameters

Required Parameters:

Optional Parameters:

  • remote (string): Filter by workplace type

    • "" (Any)
    • "onsite" (On-site)
    • "remote" (Remote)
    • "hybrid" (Hybrid)
  • experienceLevel (string): Filter by experience level

    • "" (Any)
    • "internship" (Internship)
    • "entry" (Entry Level)
    • "associate" (Associate)
    • "mid_senior" (Mid-Senior Level)
    • "director" (Director)
    • "executive" (Executive)

Output Format

The actor saves results in the following format:

{
"status": "success",
"jobsFound": 50,
"searchParams": {
"keywords": "engineer",
"location_id": "103644278"
},
"results": [
{
"company": "Company Name",
"company_url": "LinkedIn Company URL",
"job_title": "Job Title",
"job_url": "LinkedIn Job URL",
"location": "Location",
"remote": "Remote/Hybrid status",
"posted_at": "Posting date",
"job_type": "Job type",
"is_easy_apply": true/false
}
// ... more jobs
]
}

Usage Examples

  1. Basic search for engineering jobs in the United States:
{
"keywords": "engineer",
"location_id": "103644278"
}
  1. Search for remote product manager jobs in the UK:
{
"keywords": "product manager",
"location_id": "101165590",
"remote": "remote"
}
  1. Search for entry-level marketing jobs in Australia:
{
"keywords": "marketing",
"location_id": "101452733",
"experienceLevel": "entry"
}