1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "client_name": "John Smith",
10 "client_designation": "CEO",
11 "company_name": "TechCorp Inc",
12 "company_description": "B2B SaaS platform that helps teams collaborate more effectively with AI-powered project management tools.",
13 "gtm_challenge": "We're a B2B SaaS company struggling with enterprise customer acquisition. Our PLG motion works for SMBs but we can't crack the enterprise market. Sales cycle is too long and we lack proper reference customers for big deals.",
14 "business_stage": "bootstrapped-pmf",
15 "industry": "Technology",
16 "current_team_size": "16-50",
17 "budget_range": "$10K-$50K",
18 "specific_focus": "Customer acquisition optimization",
19 "confirm_new_consultation": True,
20}
21
22
23run = client.actor("shashghosh/gtm-alpha-consultant").call(run_input=run_input)
24
25
26print("πΎ Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
27for item in client.dataset(run["defaultDatasetId"]).iterate_items():
28 print(item)
29
30