1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "currentItems": [
10 {
11 "listingId": "L1",
12 "property": "Tower A",
13 "market": "Austin",
14 "monthlyRent": 2200,
15 "concessionValue": 300,
16 "date": "2026-09-10",
17 },
18 {
19 "listingId": "L2",
20 "property": "Tower A",
21 "market": "Austin",
22 "monthlyRent": 2300,
23 "concessionValue": 400,
24 "date": "2026-09-10",
25 },
26 {
27 "listingId": "L3",
28 "property": "Park B",
29 "market": "Austin",
30 "monthlyRent": 2100,
31 "concessionValue": 100,
32 "date": "2026-09-10",
33 },
34 ],
35 "previousItems": [
36 {
37 "listingId": "P1",
38 "property": "Tower A",
39 "market": "Austin",
40 "monthlyRent": 2250,
41 "concessionValue": 100,
42 "date": "2026-08-01",
43 },
44 {
45 "listingId": "P2",
46 "property": "Park B",
47 "market": "Austin",
48 "monthlyRent": 2100,
49 "concessionValue": 0,
50 "date": "2026-08-01",
51 },
52 ],
53}
54
55
56run = client.actor("quanmatrix/multifamily-rent-concession-drift-intelligence").call(run_input=run_input)
57
58
59print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
60for item in client.dataset(run.default_dataset_id).iterate_items():
61 print(item)
62
63