1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "companyUrls": [
10 { "url": "https://www.owler.com/company/tpg" },
11 { "url": "https://www.owler.com/company/softbank" },
12 { "url": "https://www.owler.com/company/sequoiacap" },
13 ],
14 "companyDomains": [
15 "sequoiacap.com",
16 "kkr.com",
17 "tpg.com",
18 ],
19 "companyNames": [
20 "Sequoia Capital",
21 "Andreessen Horowitz",
22 "TPG",
23 ],
24 "maxResults": 50,
25 "maxConcurrency": 10,
26 "proxyConfiguration": {
27 "useApifyProxy": True,
28 "apifyProxyGroups": [],
29 },
30}
31
32
33run = client.actor("foxlabs/vc-investor-watchlist").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