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": "secEntity",
14 "recordId": "sec-entity:0000320193",
15 "parser": { "name": "sec-entity-identifier-registry" },
16 "time": { "filedAt": "2026-07-20" },
17 "data": {
18 "entity": {
19 "cik": "0000320193",
20 "name": "Example Issuer",
21 },
22 "evidence": ["ev:entity-1"],
23 },
24 }],
25 },
26 "subjectFilters": ["0000320193"],
27 "maxInputRecords": 1,
28 "maxOutputRecords": 1,
29 "maxResults": 1,
30 "maxSourceRequests": 1,
31 "maxDownloadBytes": 1048576,
32}
33
34
35run = client.actor("bb-tradetec/sec-company-dossier-aggregator").call(run_input=run_input)
36
37
38print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
39for item in client.dataset(run.default_dataset_id).iterate_items():
40 print(item)
41
42