1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "maxResults": 100,
10 "jobTitles": [
11 "Chief Executive Officer",
12 "VP of Sales",
13 "Head of Growth",
14 ],
15 "jobFunctions": [
16 "Sales",
17 "Marketing",
18 "Leadership",
19 ],
20 "seniority": [
21 "CXO",
22 "VP",
23 "Head",
24 ],
25 "companySizeMin": 10,
26 "companySizeMax": 500,
27 "industries": [
28 "Computer Software",
29 "Information Technology & Services",
30 ],
31 "countries": ["United States"],
32}
33
34
35run = client.actor("scalelist/leads-finder").call(run_input=run_input)
36
37
38print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
39for item in client.dataset(run.default_dataset_id).iterate_items():
40 print(item)
41
42