$API_TOKEN=<YOUR_API_TOKEN>
$cat > input.json << 'EOF'
<{
< "startUrls": [
< "https://www.capterra.com/p/162035/Filestage/",
< "https://www.capterra.com/services/sp/178/accenture/",
< "https://www.capterra.com/services/data-analytics/",
< "https://www.capterra.com/business-intelligence-software/"
< ],
< "maxItems": 1,
< "endPage": 5,
< "endPageForReviews": 1,
< "proxy": {
< "useApifyProxy": true,
< "apifyProxyGroups": [
< "RESIDENTIAL"
< ]
< },
< "customMapFunction": "(object) => { return {...object} }"
<}
<EOF
$curl "https://api.apify.com/v2/acts/epctex~capterra-scraper/runs?token=$API_TOKEN" \
< -X POST \
< -d @input.json \
< -H 'Content-Type: application/json'