1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = { "dataRoom": {
9 "company": "Example Technology Inc.",
10 "stage": "seed",
11 "roundTarget": "Seed - USD 1.5M",
12 "flags": {
13 "regulated": False,
14 "physicalProduct": False,
15 "incentive": True,
16 },
17 "statuses": {
18 "01-01": {
19 "status": "have",
20 "date": "2026-03-10",
21 "note": "",
22 },
23 "01-02": {
24 "status": "have",
25 "date": "2026-03-10",
26 "note": "",
27 },
28 "01-05": {
29 "status": "missing",
30 "date": None,
31 "note": "",
32 },
33 "02-01": {
34 "status": "have",
35 "date": "2026-02-28",
36 "note": "Audited",
37 },
38 "02-04": {
39 "status": "partial",
40 "date": "2026-06-30",
41 "note": "Q2 pending",
42 },
43 "03-01": {
44 "status": "have",
45 "date": "2025-11-15",
46 "note": "Needs refresh",
47 },
48 "08-01": {
49 "status": "missing",
50 "date": None,
51 "note": "",
52 },
53 },
54 } }
55
56
57run = client.actor("bloom-consulting/investor-data-room-check").call(run_input=run_input)
58
59
60print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
61for item in client.dataset(run.default_dataset_id).iterate_items():
62 print(item)
63
64