1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "recordInput": {
10 "mode": "inline",
11 "records": [{
12 "schemaVersion": "1.0",
13 "recordType": "secForm4Transaction",
14 "recordId": "example-form4",
15 "parser": { "name": "sec.ownership.form4" },
16 "time": { "filedAt": "2026-07-09T12:00:00Z" },
17 "data": {
18 "issuer": { "cik": "0000320193" },
19 "securityKey": "CUSIP-037833100",
20 "reportingParty": "0001214128",
21 "transaction": {
22 "transactionDate": "2026-07-08",
23 "acquiredDisposedCode": "A",
24 "amount": "10",
25 },
26 "evidence": ["ev-form4"],
27 },
28 }],
29 },
30 "subjectFilters": ["0000320193"],
31}
32
33
34run = client.actor("bb-tradetec/sec-ownership-intelligence-aggregator").call(run_input=run_input)
35
36
37print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
38for item in client.dataset(run.default_dataset_id).iterate_items():
39 print(item)
40
41