$API_TOKEN=<YOUR_API_TOKEN>
$cat > input.json << 'EOF'
<{
< "operation": "search",
< "market": "sweden",
< "location": "Stockholm",
< "homeTypes": [],
< "maxResults": 100,
< "rentMin": 0,
< "rentMax": 0,
< "roomsMin": 0,
< "roomsMax": 0,
< "areaMin": 0,
< "areaMax": 0,
< "moveInFrom": "",
< "minRentalMonths": 0,
< "furnished": "any",
< "petsAllowed": false,
< "wheelchairAccessible": false,
< "sharedHomes": "any",
< "contractTypes": [],
< "householdSize": 0,
< "sort": "newest",
< "includeDetails": false,
< "listingUrls": [],
< "searchUrls": []
<}
<EOF
$curl "https://api.apify.com/v2/actors/sian.agency~qasa-property-scraper/runs?token=$API_TOKEN" \
< -X POST \
< -d @input.json \
< -H 'Content-Type: application/json'