Linkedin jobs scraper
3 days trial then $22.00/month - No credit card required now
Linkedin jobs scraper
3 days trial then $22.00/month - No credit card required now
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
You can access the Linkedin jobs scraper programmatically from your own JavaScript 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 "url": "https://www.linkedin.com/jobs/search/?geoId=106383538&keywords=python&origin=JOB_SEARCH_PAGE_KEYWORD_AUTOCOMPLETE&refresh=true",
12 "cookies": [
13 {
14 "domain": ".linkedin.com",
15 "expirationDate": 1742798742.32278,
16 "hostOnly": false,
17 "httpOnly": false,
18 "name": "test",
19 "path": "/",
20 "sameSite": "no_restriction",
21 "secure": true,
22 "session": false,
23 "storeId": "0",
24 "value": "To be changed. Check readme on how to extract cookie session from browser",
25 "id": 1
26 }
27 ]
28};
29
30// Run the Actor and wait for it to finish
31const run = await client.actor("saswave/linkedin-jobs-scraper").call(input);
32
33// Fetch and print Actor results from the run's dataset (if any)
34console.log('Results from dataset');
35console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
36const { items } = await client.dataset(run.defaultDatasetId).listItems();
37items.forEach((item) => {
38 console.dir(item);
39});
40
41// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs
Linkedin jobs scraper API in JavaScript
The Apify API client for JavaScript is the official library that allows you to use 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:
Actor Metrics
13 monthly users
-
1 star
93% runs succeeded
Created in Oct 2024
Modified 22 days ago