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 "platform": "phenom",
29 "company": "https://jobs.cvshealth.com/us/en"
30 }
31 ],
32 "maxJobsPerCompany": 10,
33 "includeDescription": true
34};
35
36
37const run = await client.actor("santamaria-automations/career-site-jobs-scraper").call(input);
38
39
40console.log('Results from dataset');
41console.log(`๐พ Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
42const { items } = await client.dataset(run.defaultDatasetId).listItems();
43items.forEach((item) => {
44 console.dir(item);
45});
46
47