1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "sources": [
10 "greenhouse",
11 "lever",
12 "ashby",
13 "smartrecruiters",
14 "recruitee",
15 ],
16 "greenhouseCompanies": [
17 "airbnb",
18 "stripe",
19 "figma",
20 "cloudflare",
21 "coinbase",
22 "databricks",
23 "discord",
24 "dropbox",
25 "gitlab",
26 "robinhood",
27 "doordash",
28 "instacart",
29 ],
30 "leverCompanies": [
31 "openai",
32 "anthropic",
33 "anduril",
34 "scale",
35 "verkada",
36 "rippling",
37 "mistral",
38 "includedhealth",
39 "gohighlevel",
40 ],
41 "ashbyCompanies": [
42 "notion",
43 "vanta",
44 "linear",
45 "posthog",
46 "ramp",
47 ],
48 "smartrecruitersCompanies": [
49 "Visa",
50 "WesternDigital",
51 "PublicStorage",
52 ],
53 "recruiteeCompanies": [
54 "bunq",
55 "channable",
56 ],
57 "keywords": ["engineer"],
58}
59
60
61run = client.actor("benthepythondev/ats-jobs-aggregator").call(run_input=run_input)
62
63
64print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
65for item in client.dataset(run["defaultDatasetId"]).iterate_items():
66 print(item)
67
68