1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "companies": [
10 {
11 "name": "Robinhood",
12 "ats": "greenhouse",
13 "token": "robinhood",
14 },
15 {
16 "name": "Notion",
17 "ats": "ashby",
18 "token": "notion",
19 },
20 {
21 "name": "The Athletic",
22 "ats": "lever",
23 "token": "theathletic",
24 },
25 ],
26 "rolePatterns": [
27 "engineer",
28 "manager",
29 ],
30}
31
32
33run = client.actor("recruitops_hq/ats-hiring-signal").call(run_input=run_input)
34
35
36print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
37for item in client.dataset(run.default_dataset_id).iterate_items():
38 print(item)
39
40