AI Linkedin Jobs Scraper avatar
AI Linkedin Jobs Scraper

Under maintenance

Pricing

Pay per event

Go to Store
AI Linkedin Jobs Scraper

AI Linkedin Jobs Scraper

Under maintenance

Developed by

Sudo Knight

Sudo Knight

Maintained by Community

Extract structured data from LinkedIn job listings with AI-powered analysis. Filter by job type, experience level, location, and posting date. Get detailed information including responsibilities, skills required, and application methods. Supports proxy and provides clean JSON output.

5.0 (1)

Pricing

Pay per event

0

Total users

2

Monthly users

2

Last modified

16 hours ago

You can access the AI 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 ApifyClient
2
3# Initialize the ApifyClient with your Apify API token
4# Replace '<YOUR_API_TOKEN>' with your token.
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7# Prepare the Actor input
8run_input = {
9    "keywords": "software engineer",
10    "extractJobDetails": False,
11    "geoId": "102713980",
12    "timePostedRange": "LAST_10_DAYS",
13    "experienceLevels": [],
14    "jobTypes": [],
15    "workplaceTypes": [],
16    "sortBy": "R",
17    "applyWithLinkedin": False,
18    "earlyApplicant": False,
19    "fairChanceEmployer": False,
20    "jobInYourNetwork": False,
21    "verifiedJob": False,
22    "startPosition": 0,
23    "maxResults": 50,
24    "proxySettings": { "useApifyProxy": True },
25}
26
27# Run the Actor and wait for it to finish
28run = client.actor("x5ud0kn1gh7x/ai-linkedin-jobs-scraper").call(run_input=run_input)
29
30# Fetch and print Actor results from the run's dataset (if there are any)
31print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
32for item in client.dataset(run["defaultDatasetId"]).iterate_items():
33    print(item)
34
35# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

AI Linkedin Jobs Scraper API in Python

The Apify API client for Python is the official library that allows you to use AI 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: