1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = { "description": "We're a 4-person B2B SaaS startup. CEO does strategy and fundraising. CTO builds the product solo with AI tools. One marketer does content, one ops person handles finance, legal and HR. CEO makes all final calls. Pre-seed, raising a seed round in 6 months, planning to grow to 8-10 people within a year." }
9
10
11run = client.actor("resomnium/organization-gap-analysis").call(run_input=run_input)
12
13
14print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
15for item in client.dataset(run.default_dataset_id).iterate_items():
16 print(item)
17
18