1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "currentItems": [
10 {
11 "parcelId": "P-100",
12 "address": "12 Main St",
13 "county": "Cook",
14 "lienAmount": 9200,
15 "filingDate": "2026-09-01",
16 },
17 {
18 "parcelId": "P-100",
19 "address": "12 Main St",
20 "county": "Cook",
21 "lienAmount": 3100,
22 "filingDate": "2026-08-01",
23 },
24 {
25 "parcelId": "P-200",
26 "address": "44 Oak Ave",
27 "county": "Cook",
28 "lienAmount": 7600,
29 "filingDate": "2026-09-03",
30 },
31 ],
32 "previousItems": [{
33 "parcelId": "P-100",
34 "address": "12 Main St",
35 "county": "Cook",
36 "lienAmount": 3100,
37 "filingDate": "2026-08-01",
38 }],
39}
40
41
42run = client.actor("quanmatrix/property-tax-lien-distress-intelligence").call(run_input=run_input)
43
44
45print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
46for item in client.dataset(run.default_dataset_id).iterate_items():
47 print(item)
48
49