1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "workflow": "baseline",
10 "outputMode": "raw",
11 "discovery": "market",
12 "daysBack": 30,
13 "amendmentFilter": "all",
14 "issuerScope": "all",
15 "nonAccreditedInvestor": "any",
16 "minOfferingAmount": 0,
17 "minAmountSold": 0,
18 "minInvestment": 0,
19 "minInvestors": 0,
20 "sortBy": "newest",
21 "maxResults": 100,
22 "maxTrackedAccessions": 1000,
23 "maxFilingsScanned": 5000,
24 "includeUnchanged": False,
25 "maxBuyerChargeUsd": 5,
26 "maxRequests": 12000,
27 "maxSourceBytes": 1000000000,
28 "maxRuntimeSecs": 3600,
29 "maxArchiveCompressedBytes": 75000000,
30 "maxArchiveInflatedBytes": 350000000,
31 "maxArchiveEntryBytes": 200000000,
32 "maxArchiveEntries": 8,
33 "maxArchiveExpansionRatio": 25,
34 "maxParseMemoryBytes": 600000000,
35}
36
37
38run = client.actor("luminar/sec-form-d-funding-monitor").call(run_input=run_input)
39
40
41print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
42for item in client.dataset(run.default_dataset_id).iterate_items():
43 print(item)
44
45