$API_TOKEN=<YOUR_API_TOKEN>
$cat > input.json << 'EOF'
<{
< "listings": [
< {
< "listingId": "listing-101",
< "listingUrl": "https://inventory.example.com/listing-101",
< "title": "Two-bedroom apartment in Dubai Marina",
< "price": 2450000,
< "currency": "AED",
< "dealType": "sale",
< "propertyType": "Apartment",
< "bedrooms": 2,
< "areaSqm": 128.4,
< "location": "Dubai Marina",
< "latitude": 25.0805,
< "longitude": 55.1403,
< "listedAt": "2026-08-12T10:00:00Z",
< "sourceName": "Licensed Gulf property export",
< "sourceLicense": "Buyer confirms downstream processing and delivery rights",
< "sourceRetrievedAt": "2026-08-12T12:00:00Z"
< }
< ]
<}
<EOF
$curl "https://api.apify.com/v2/actors/zinin~propertyfinder-gulf/runs?token=$API_TOKEN" \
< -X POST \
< -d @input.json \
< -H 'Content-Type: application/json'