1import { ApifyClient } from 'apify-client';
2
3
4
5const client = new ApifyClient({
6 token: '<YOUR_API_TOKEN>',
7});
8
9
10const input = {
11 "queries": [
12 "https://jobs.lever.co/spotify",
13 "https://boards.greenhouse.io/anthropic",
14 "https://jobs.ashbyhq.com/ramp",
15 "https://apply.workable.com/ometria",
16 "https://career.teamtailor.com",
17 "https://personio-gmbh.jobs.personio.de",
18 "https://jobs.smartrecruiters.com/BoschGroup",
19 "https://freshworks.bamboohr.com/careers/list",
20 "https://nvidia.wd5.myworkdayjobs.com/NVIDIAExternalCareerSite",
21 "https://everdrop.recruitee.com",
22 "https://join.com/companies/agicap",
23 "https://edenred.pinpointhq.com",
24 "https://ats.rippling.com/rippling/jobs",
25 "https://agatlaboratories.applytojob.com/apply",
26 "https://www.comeet.com/jobs/fiverr/60.002"
27 ],
28 "maxJobsPerCompany": 500,
29 "includeDescription": true
30};
31
32
33const run = await client.actor("santamaria-automations/career-site-jobs-scraper").call(input);
34
35
36console.log('Results from dataset');
37console.log(`πΎ Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
38const { items } = await client.dataset(run.defaultDatasetId).listItems();
39items.forEach((item) => {
40 console.dir(item);
41});
42
43