$API_TOKEN=<YOUR_API_TOKEN>
$cat > input.json << 'EOF'
<{
< "searchQueries": [
< "dentists in Athens Greece"
< ],
< "startUrls": [],
< "maxPlacesPerQuery": 3,
< "language": "en",
< "enrichWebsites": false,
< "maxWebsitePages": 1,
< "minimumRating": 0,
< "minimumReviewCount": 0,
< "requireWebsite": false,
< "requirePhone": false,
< "excludeClosed": true,
< "monitorChanges": false,
< "onlyChanges": false,
< "forceRefresh": true,
< "cacheTtlMinutes": 0,
< "maxConcurrency": 1,
< "pageTimeoutSeconds": 30,
< "maxRequestsPerRun": 12,
< "maxRetries": 1,
< "retryBackoffSeconds": 1,
< "maxProxyRotations": 1,
< "proxyConfiguration": {
< "useApifyProxy": true
< }
<}
<EOF
$curl "https://api.apify.com/v2/actors/datahunter_labs~google-maps-lead-competitor-intelligence/runs?token=$API_TOKEN" \
< -X POST \
< -d @input.json \
< -H 'Content-Type: application/json'