
Linkedin jobs scraper
Pricing
$22.00/month + usage

Linkedin jobs scraper
Linkedin job scraper. Extract linkedin job postings with company and recruiter details. Parser linkedin jobs at scale. Get data like hiring team, company infos (employees, industry, followers ...), job infos (description, salary, remote, views, applies ..) and more
0.0 (0)
Pricing
$22.00/month + usage
1
Total users
57
Monthly users
13
Runs succeeded
97%
Last modified
2 months ago
You can access the Linkedin jobs scraper programmatically from your own applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in Integrations settings in Apify Console.
1from apify_client import ApifyClient2
3# Initialize the ApifyClient with your Apify API token4# Replace '<YOUR_API_TOKEN>' with your token.5client = ApifyClient("<YOUR_API_TOKEN>")6
7# Prepare the Actor input8run_input = {9 "url": "https://www.linkedin.com/jobs/search/?geoId=106383538&keywords=python&origin=JOB_SEARCH_PAGE_KEYWORD_AUTOCOMPLETE&refresh=true",10 "cookies": [{11 "domain": ".linkedin.com",12 "expirationDate": 1742798742.32278,13 "hostOnly": False,14 "httpOnly": False,15 "name": "test",16 "path": "/",17 "sameSite": "no_restriction",18 "secure": True,19 "session": False,20 "storeId": "0",21 "value": "To be changed. Check readme on how to extract cookie session from browser",22 "id": 1,23 }],24}25
26# Run the Actor and wait for it to finish27run = client.actor("saswave/linkedin-jobs-scraper").call(run_input=run_input)28
29# Fetch and print Actor results from the run's dataset (if there are any)30print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])31for item in client.dataset(run["defaultDatasetId"]).iterate_items():32 print(item)33
34# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start
Linkedin jobs scraper API in Python
The Apify API client for Python is the official library that allows you to use Linkedin jobs scraper API in Python, providing convenience functions and automatic retries on errors.
Install the apify-client
$pip install apify-client
Other API clients include: