1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "companyName": "Acme AI",
10 "tagline": "AI-powered solution for modern teams",
11 "problem": "Describe the specific problem your target customers face...",
12 "solution": "Explain how your solution addresses the problem...",
13 "traction": "List your key metrics and milestones...",
14 "marketSize": "Describe your target market...",
15 "businessModel": "Explain your revenue model...",
16 "competitors": "List competitors and your differentiators...",
17 "team": "Describe your team's background and expertise...",
18 "fundingAsk": "$500K to hire 3 engineers and reach product-market fit",
19}
20
21
22run = client.actor("okpoorav/yc-pitch-deck-generator").call(run_input=run_input)
23
24
25print("πΎ Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
26for item in client.dataset(run["defaultDatasetId"]).iterate_items():
27 print(item)
28
29