1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "currentItems": [
10 {
11 "filingId": "F1",
12 "property": "12 Main St",
13 "county": "Clark",
14 "lender": "Bank A",
15 "debtAmount": 240000,
16 "filingDate": "2026-09-01",
17 },
18 {
19 "filingId": "F2",
20 "property": "22 Oak St",
21 "county": "Clark",
22 "lender": "Bank A",
23 "debtAmount": 310000,
24 "filingDate": "2026-09-03",
25 },
26 {
27 "filingId": "F3",
28 "property": "44 Pine St",
29 "county": "Clark",
30 "lender": "Bank B",
31 "debtAmount": 280000,
32 "filingDate": "2026-09-05",
33 },
34 ],
35 "previousItems": [{
36 "filingId": "P1",
37 "property": "12 Main St",
38 "county": "Clark",
39 "lender": "Bank A",
40 "debtAmount": 220000,
41 "filingDate": "2026-08-01",
42 }],
43}
44
45
46run = client.actor("quanmatrix/foreclosure-filing-acceleration-intelligence").call(run_input=run_input)
47
48
49print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
50for item in client.dataset(run.default_dataset_id).iterate_items():
51 print(item)
52
53