$API_TOKEN=<YOUR_API_TOKEN>
$cat > input.json << 'EOF'
<{
< "mode": "search",
< "locations": [
< "San Francisco, CA, USA"
< ],
< "serviceType": "overnight-boarding",
< "petType": "dog",
< "urls": [
< "https://www.rover.com/san-francisco--ca--dog-boarding/"
< ],
< "minRating": 0,
< "minPrice": 0,
< "maxPrice": 0,
< "starSitter": false,
< "fetchDetails": true,
< "fetchReviews": true,
< "maxReviewsPerSitter": 0,
< "maxItems": 20,
< "maxPages": 0,
< "incrementalMode": false,
< "emitUnchanged": false,
< "emitExpired": false,
< "maxNotifyListings": 50,
< "proxyConfiguration": {
< "useApifyProxy": true
< }
<}
<EOF
$curl "https://api.apify.com/v2/actors/abotapi~rover-pet-care-scraper/runs?token=$API_TOKEN" \
< -X POST \
< -d @input.json \
< -H 'Content-Type: application/json'