$API_TOKEN=<YOUR_API_TOKEN>
$cat > input.json << 'EOF'
<{
< "currentItems": [
< {
< "jurisdiction": "Austin TX",
< "ruleId": "AUS-2026-09",
< "ruleType": "license",
< "restrictionValue": 1,
< "effectiveDate": "2026-10-01"
< },
< {
< "jurisdiction": "Austin TX",
< "ruleId": "AUS-NIGHT",
< "ruleType": "night cap",
< "restrictionValue": 90,
< "effectiveDate": "2026-10-01"
< },
< {
< "jurisdiction": "Miami Beach FL",
< "ruleId": "MIA-ZONE",
< "ruleType": "zoning restriction",
< "restrictionValue": 1,
< "effectiveDate": "2026-09-15"
< }
< ],
< "previousItems": [
< {
< "jurisdiction": "Austin TX",
< "ruleId": "AUS-2026-06",
< "ruleType": "license",
< "restrictionValue": 0,
< "effectiveDate": "2026-06-01"
< },
< {
< "jurisdiction": "Austin TX",
< "ruleId": "AUS-NIGHT",
< "ruleType": "night cap",
< "restrictionValue": 180,
< "effectiveDate": "2026-06-01"
< }
< ]
<}
<EOF
$curl "https://api.apify.com/v2/actors/quanmatrix~short-term-rental-regulation-change-intelligence/runs?token=$API_TOKEN" \
< -X POST \
< -d @input.json \
< -H 'Content-Type: application/json'