1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "keyword": [
10 "Houston Ave, Fairhope, AL, 36532",
11 "47 W 13th St, New York, NY 10011",
12 ],
13 "filters": {
14 "propertyType": "condo",
15 "bedrooms": 3,
16 "bathrooms": 1,
17 "livingAreaSize": 1400,
18 },
19 "proxy": { "useApifyProxy": True },
20}
21
22
23run = client.actor("canadesk/rentcast-estimates-usa").call(run_input=run_input)
24
25
26print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
27for item in client.dataset(run["defaultDatasetId"]).iterate_items():
28 print(item)
29
30