Advanced Linkedin Job Scraper avatar
Advanced Linkedin Job Scraper
Try for free

3 days trial then $30.00/month - No credit card required now

View all Actors
Advanced Linkedin Job Scraper

Advanced Linkedin Job Scraper

curious_coder/linkedin-jobs-search-scraper
Try for free

3 days trial then $30.00/month - No credit card required now

Scrape linkedin job postings and get company and recruiter details. Supports boolean search and other advanced search filters. Success rate is > 98%

The code examples below show how to run the Actor and get its results. To run the code, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token, which you can find under Settings > Integrations in Apify Console. Learn more

1# Set API token
2API_TOKEN=<YOUR_API_TOKEN>
3
4# Prepare Actor input
5cat > input.json <<'EOF'
6{
7  "searchUrl": "https://www.linkedin.com/jobs/search/?keywords=&location=United%20States&locationId=&geoId=103644278&f_TPR=&f_C=1035&f_PP=104145663&f_JT=F&f_WT=3%2C2&f_SB2=1&position=1&pageNum=0",
8  "startPage": 1,
9  "count": 25,
10  "proxy": {
11    "useApifyProxy": true,
12    "apifyProxyGroups": [
13      "BUYPROXIES94952"
14    ],
15    "apifyProxyCountry": "US"
16  },
17  "minDelay": 2,
18  "maxDelay": 5
19}
20EOF
21
22# Run the Actor using an HTTP API
23# See the full API reference at https://docs.apify.com/api/v2
24curl "https://api.apify.com/v2/acts/curious_coder~linkedin-jobs-search-scraper/runs?token=$API_TOKEN" \
25  -X POST \
26  -d @input.json \
27  -H 'Content-Type: application/json'
Developer
Maintained by Community
Actor metrics
  • 161 monthly users
  • 8 stars
  • 98.3% runs succeeded
  • 17 hours response time
  • Created in Jul 2023
  • Modified 5 days ago