Free Linkedin Job Scraper avatar
Free Linkedin Job Scraper
Try for free

No credit card required

View all Actors
Free Linkedin Job Scraper

Free Linkedin Job Scraper

forward_dinosaur/linkedin-job-scraper
Try for free

No credit card required

A simple Linkedin Job Scraper to find new job opportunities.

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

1import { ApifyClient } from 'apify-client';
2
3// Initialize the ApifyClient with your Apify API token
4const client = new ApifyClient({
5    token: '<YOUR_API_TOKEN>',
6});
7
8// Prepare Actor input
9const input = {
10    "query": "Engineer",
11    "location": "United States",
12    "remote": [
13        "1"
14    ],
15    "contract_type": [
16        "F"
17    ],
18    "time_interval": "ANY",
19    "li_at_cookie": "",
20    "proxyConfiguration": {
21        "useApifyProxy": true,
22        "apifyProxyCountry": "US"
23    }
24};
25
26(async () => {
27    // Run the Actor and wait for it to finish
28    const run = await client.actor("forward_dinosaur/linkedin-job-scraper").call(input);
29
30    // Fetch and print Actor results from the run's dataset (if any)
31    console.log('Results from dataset');
32    console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
33    const { items } = await client.dataset(run.defaultDatasetId).listItems();
34    items.forEach((item) => {
35        console.dir(item);
36    });
37})();
38
39// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs
Developer
Maintained by Community
Actor metrics
  • 78 monthly users
  • 9 stars
  • 99.9% runs succeeded
  • Created in Feb 2024
  • Modified 5 months ago