$API_TOKEN=<YOUR_API_TOKEN>
$cat > input.json << 'EOF'
<{
< "workflow": "search_properties",
< "location": "Austin, TX",
< "listingStatus": "for_sale",
< "maxProperties": 10,
< "detailLevel": "search_cards",
< "sort": "source_order",
< "stateNamespace": "default",
< "includeUnchanged": false,
< "maxBuyerChargeUsd": 1,
< "maxPagesPerTarget": 1,
< "maxRequests": 12000,
< "maxSourceBytes": 1500000000,
< "maxRuntimeSecs": 7200,
< "maxEstimatedPlatformUsd": 1
<}
<EOF
$curl "https://api.apify.com/v2/actors/luminar~realtor-property-change-monitor/runs?token=$API_TOKEN" \
< -X POST \
< -d @input.json \
< -H 'Content-Type: application/json'