1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "companyInputs": ["30898036"],
10 "aiJobKeywords": [
11 "AI",
12 "Artificial Intelligence",
13 "Machine Learning",
14 "ML",
15 "Deep Learning",
16 "Generative AI",
17 "GenAI",
18 "LLM",
19 "Large Language Model",
20 "Data Scientist",
21 "Data Science",
22 "NLP",
23 "Natural Language Processing",
24 "Computer Vision",
25 "Research Scientist",
26 "Applied Scientist",
27 "Prompt Engineer",
28 "Agentic AI",
29 "AI Agent",
30 ],
31}
32
33
34run = client.actor("schesds/ai-hiring-signals").call(run_input=run_input)
35
36
37print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
38for item in client.dataset(run["defaultDatasetId"]).iterate_items():
39 print(item)
40
41