1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "companyUrls": [
10 "https://www.notion.so",
11 "https://www.lemlist.com",
12 ],
13 "yourProductDescription": "We offer an AI-powered sales engagement platform that helps B2B SaaS companies automate personalized outreach, track prospect engagement, and close deals faster.",
14 "idealCustomerProfile": "B2B SaaS companies with 50-500 employees that are in a growth phase, have a sales team of 5+, and are actively hiring for sales/marketing roles.",
15 "maxResults": 2,
16 "proxyConfiguration": { "useApifyProxy": True },
17}
18
19
20run = client.actor("magicfingers/lead-qualifier").call(run_input=run_input)
21
22
23print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
24for item in client.dataset(run["defaultDatasetId"]).iterate_items():
25 print(item)
26
27