$API_TOKEN=<YOUR_API_TOKEN>
$cat > input.json << 'EOF'
<{
< "operation": "search",
< "location": "Ciudad de México",
< "locations": [
< "Monterrey",
< "Guadalajara"
< ],
< "agencyUrls": [],
< "transactionType": "sale",
< "propertyType": "all",
< "minPrice": 0,
< "maxPrice": 0,
< "priceCurrency": "MXN",
< "minBedrooms": 0,
< "minBathrooms": 0,
< "minParking": 0,
< "minSurface": 0,
< "maxSurface": 0,
< "surfaceType": "land",
< "publisherType": "all",
< "propertyAge": "any",
< "publishedWithin": "any",
< "requiredMedia": "any",
< "sortBy": "relevance",
< "maxResults": 90
<}
<EOF
$curl "https://api.apify.com/v2/actors/sian.agency~inmuebles24-property-scraper/runs?token=$API_TOKEN" \
< -X POST \
< -d @input.json \
< -H 'Content-Type: application/json'