1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "businessName": "TechStartup Inc.",
10 "whatPromoting": "Our AI-powered project management tool that helps teams collaborate 3x faster with automated workflows and intelligent task prioritization.",
11 "benefits": "Save 10+ hours per week on project coordination, reduce miscommunication by 70%, increase team productivity, and get real-time insights into project progress.",
12 "goal": "Partnership",
13 "tone": "Professional yet approachable, confident but not pushy",
14 "additionalNotes": "Focus on the time-saving aspect. Avoid technical jargon. Include a soft CTA.",
15 "urlPromoting": "",
16 "whoYouPitchingTo": "",
17 "socialProof": "",
18 "nameOfRecipient": "",
19 "painPoint": "",
20 "language": "English",
21}
22
23
24run = client.actor("onescales/pitches-pro").call(run_input=run_input)
25
26
27print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
28for item in client.dataset(run["defaultDatasetId"]).iterate_items():
29 print(item)
30
31