
AI Linkedin Jobs Scraper
Pricing
Pay per event

AI Linkedin Jobs Scraper
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
7 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.
1import { ApifyClient } from 'apify-client';
2
3// Initialize the ApifyClient with your Apify API token
4// Replace the '<YOUR_API_TOKEN>' with your token
5const client = new ApifyClient({
6 token: '<YOUR_API_TOKEN>',
7});
8
9// Prepare Actor input
10const input = {
11 "keywords": "software engineer",
12 "extractJobDetails": false,
13 "geoId": "102713980",
14 "timePostedRange": "LAST_10_DAYS",
15 "experienceLevels": [],
16 "jobTypes": [],
17 "workplaceTypes": [],
18 "sortBy": "R",
19 "applyWithLinkedin": false,
20 "earlyApplicant": false,
21 "fairChanceEmployer": false,
22 "jobInYourNetwork": false,
23 "verifiedJob": false,
24 "startPosition": 0,
25 "maxResults": 50,
26 "proxySettings": {
27 "useApifyProxy": true
28 }
29};
30
31// Run the Actor and wait for it to finish
32const run = await client.actor("x5ud0kn1gh7x/ai-linkedin-jobs-scraper").call(input);
33
34// Fetch and print Actor results from the run's dataset (if any)
35console.log('Results from dataset');
36console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
37const { items } = await client.dataset(run.defaultDatasetId).listItems();
38items.forEach((item) => {
39 console.dir(item);
40});
41
42// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs
AI Linkedin Jobs Scraper API in JavaScript
The Apify API client for JavaScript is the official library that allows you to use AI Linkedin Jobs Scraper API in JavaScript or TypeScript, providing convenience functions and automatic retries on errors.
Install the apify-client
npm install apify-client
Other API clients include: