1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = { "targets": [
9 {
10 "ats": "greenhouse",
11 "token": "stripe",
12 "company": "Stripe",
13 },
14 {
15 "ats": "lever",
16 "token": "palantir",
17 "company": "Palantir",
18 },
19 {
20 "ats": "ashby",
21 "token": "ramp",
22 "company": "Ramp",
23 },
24 {
25 "ats": "workday",
26 "token": "salesforce",
27 "company": "Salesforce",
28 "workday": {
29 "host": "salesforce.wd12.myworkdayjobs.com",
30 "tenant": "salesforce",
31 "site": "External_Career_Site",
32 },
33 },
34 ] }
35
36
37run = client.actor("pentababy/ats-job-board-scraper").call(run_input=run_input)
38
39
40print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
41for item in client.dataset(run["defaultDatasetId"]).iterate_items():
42 print(item)
43
44