$API_TOKEN=<YOUR_API_TOKEN>
$cat > input.json << 'EOF'
<{
< "observations": [
< {
< "location_identifier": "REGION^87490",
< "deal_type": "sale",
< "found": true,
< "price": 450000,
< "currency": "GBP",
< "property_type": "Terraced",
< "rooms": 3,
< "area_sqm": 90,
< "posted_date": "2026-08-01T09:00:00Z",
< "partial": false,
< "source_portal": "rightmove"
< },
< {
< "location_identifier": "REGION^87490",
< "deal_type": "sale",
< "found": true,
< "price": 475000,
< "currency": "GBP",
< "property_type": "Terraced",
< "rooms": 3,
< "area_sqm": 95,
< "posted_date": "2026-08-02T09:00:00Z",
< "partial": false,
< "source_portal": "rightmove"
< },
< {
< "location_identifier": "REGION^87490",
< "deal_type": "sale",
< "found": true,
< "price": 525000,
< "currency": "GBP",
< "property_type": "Terraced",
< "rooms": 3,
< "area_sqm": 100,
< "posted_date": "2026-08-03T09:00:00Z",
< "partial": false,
< "source_portal": "rightmove"
< }
< ],
< "reportLabel": "London asking-price sample",
< "minimumSegmentSize": 3,
< "acknowledgeBuyerAuthority": true
<}
<EOF
$curl "https://api.apify.com/v2/actors/zinin~rightmove-market-comps-analyzer/runs?token=$API_TOKEN" \
< -X POST \
< -d @input.json \
< -H 'Content-Type: application/json'