1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "startUrls": [{ "url": "https://example.com" }],
10 "targetKeywords": [
11 "B2B",
12 "SaaS",
13 "RevOps",
14 "GTM",
15 "automation",
16 "integration",
17 "lead scoring",
18 "CRM",
19 "ABM",
20 "account research",
21 "account scoring",
22 "lead prioritization",
23 "buying signals",
24 "website analysis",
25 "HubSpot",
26 "Salesforce",
27 "Pipedrive",
28 "Zoho",
29 "Clay",
30 "Apollo",
31 "Zapier",
32 "n8n",
33 "Make.com",
34 "Airtable",
35 "Google Sheets",
36 ],
37 "negativeKeywords": [
38 "casino",
39 "adult",
40 "crypto pump",
41 "personal blog",
42 ],
43}
44
45
46run = client.actor("jorokotev/public-website-lead-fit").call(run_input=run_input)
47
48
49print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
50for item in client.dataset(run["defaultDatasetId"]).iterate_items():
51 print(item)
52
53