$API_TOKEN=<YOUR_API_TOKEN>
$cat > input.json << 'EOF'
<{
< "operation": "search",
< "board": "rent",
< "region": "any",
< "city": "תל אביב יפו",
< "propertyType": "",
< "dealType": "",
< "maxResults": 100,
< "minPrice": 0,
< "maxPrice": 0,
< "minRooms": 0,
< "maxRooms": 0,
< "minFloor": 0,
< "maxFloor": 0,
< "keywords": "",
< "isFurnished": false,
< "hasAirConditioning": false,
< "hasElevator": false,
< "hasParking": false,
< "hasBalcony": false,
< "suitableForRoommates": false,
< "flatmateGender": "",
< "smokingPreference": "",
< "hasBars": false,
< "searchUrls": [],
< "listingUrls": []
<}
<EOF
$curl "https://api.apify.com/v2/actors/sian.agency~homeless-property-scraper/runs?token=$API_TOKEN" \
< -X POST \
< -d @input.json \
< -H 'Content-Type: application/json'