$API_TOKEN=<YOUR_API_TOKEN>
$cat > input.json << 'EOF'
<{
< "operation": "search",
< "propertyCategory": "apartments",
< "dealType": "sale",
< "region": "any",
< "cities": [],
< "maxResults": 200,
< "keyword": "",
< "currency": "USD",
< "minPrice": 0,
< "maxPrice": 0,
< "rooms": [],
< "minArea": 0,
< "maxArea": 0,
< "minPlotSotka": 0,
< "maxPlotSotka": 0,
< "minYearBuilt": 0,
< "maxYearBuilt": 0,
< "condition": "any",
< "sellerType": "any",
< "onlyWithPhoto": false,
< "newBuildingOnly": false,
< "minskDistricts": [],
< "metroStations": [],
< "sort": "newest",
< "includeDetails": false,
< "searchUrls": [],
< "listingUrls": []
<}
<EOF
$curl "https://api.apify.com/v2/actors/sian.agency~kufar-property-scraper/runs?token=$API_TOKEN" \
< -X POST \
< -d @input.json \
< -H 'Content-Type: application/json'