1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "leads": [
10 {
11 "companyName": "Notion",
12 "website": "https://www.notion.com",
13 },
14 {
15 "companyName": "Linear",
16 "website": "https://linear.app",
17 },
18 ],
19 "icpDescription": "We sell an AI-powered QA testing tool for B2B SaaS engineering teams of 10-200 people. Our ideal customer is a CTO or VP of Engineering at a fast-growing startup who is spending too much time on manual regression testing before each software release.",
20}
21
22
23run = client.actor("aarya_2/coldbrief-ai").call(run_input=run_input)
24
25
26print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
27for item in client.dataset(run.default_dataset_id).iterate_items():
28 print(item)
29
30