$API_TOKEN=<YOUR_API_TOKEN>
$cat > input.json << 'EOF'
<{
< "urls": [
< "https://www.vrbo.com/search?destination=London%20%28and%20vicinity%29%2C%20England%2C%20United%20Kingdom®ionId=178279&latLong=51.507538%2C-0.127804&flexibility=0_DAY&adults=2&isInvalidatedDate=false&theme=&userIntent=&semdtl=&sort=RECOMMENDED"
< ],
< "ignore_url_failures": true,
< "max_items_per_url": 20,
< "max_retries_per_url": 2,
< "proxy": {
< "useApifyProxy": true,
< "apifyProxyGroups": [
< "RESIDENTIAL"
< ],
< "apifyProxyCountry": "US"
< }
<}
<EOF
$curl "https://api.apify.com/v2/acts/ecomscrape~vrbo-property-search-scraper/runs?token=$API_TOKEN" \
< -X POST \
< -d @input.json \
< -H 'Content-Type: application/json'