1import { ApifyClient } from 'apify-client';
2
3
4
5const client = new ApifyClient({
6 token: '<YOUR_API_TOKEN>',
7});
8
9
10const input = {
11 "companyInputs": [
12 "30898036"
13 ],
14 "aiJobKeywords": [
15 "AI",
16 "Artificial Intelligence",
17 "Machine Learning",
18 "ML",
19 "Deep Learning",
20 "Generative AI",
21 "GenAI",
22 "LLM",
23 "Large Language Model",
24 "Data Scientist",
25 "Data Science",
26 "NLP",
27 "Natural Language Processing",
28 "Computer Vision",
29 "Research Scientist",
30 "Applied Scientist",
31 "Prompt Engineer",
32 "Agentic AI",
33 "AI Agent"
34 ]
35};
36
37
38const run = await client.actor("schesds/ai-hiring-signals").call(input);
39
40
41console.log('Results from dataset');
42console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
43const { items } = await client.dataset(run.defaultDatasetId).listItems();
44items.forEach((item) => {
45 console.dir(item);
46});
47
48