1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = { "listings": [{
9 "listingId": "listing-101",
10 "listingUrl": "https://inventory.example.com/listing-101",
11 "title": "Two-bedroom apartment in Dubai Marina",
12 "price": 2450000,
13 "currency": "AED",
14 "dealType": "sale",
15 "propertyType": "Apartment",
16 "bedrooms": 2,
17 "areaSqm": 128.4,
18 "location": "Dubai Marina",
19 "latitude": 25.0805,
20 "longitude": 55.1403,
21 "listedAt": "2026-08-12T10:00:00Z",
22 "sourceName": "Licensed Gulf property export",
23 "sourceLicense": "Buyer confirms downstream processing and delivery rights",
24 "sourceRetrievedAt": "2026-08-12T12:00:00Z",
25 }] }
26
27
28run = client.actor("zinin/propertyfinder-gulf").call(run_input=run_input)
29
30
31print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
32for item in client.dataset(run.default_dataset_id).iterate_items():
33 print(item)
34
35