$API_TOKEN=<YOUR_API_TOKEN>
$cat > input.json << 'EOF'
<{
< "runMode": "DEVELOPMENT",
< "startUrls": [
< {
< "url": "https://www.opentable.com/r/sample-restaurant"
< }
< ],
< "respectRobotsTxtFile": true,
< "linkSelector": "a[aria-label=\"Go to the next page\"]",
< "globs": [],
< "pseudoUrls": [],
< "excludes": [],
< "proxyConfiguration": {
< "useApifyProxy": true
< },
< "initialCookies": [],
< "waitUntil": [
< "networkidle2"
< ],
< "preNavigationHooks": "[]",
< "postNavigationHooks": "[]",
< "breakpointLocation": "NONE",
< "customData": {}
<}
<EOF
$curl "https://api.apify.com/v2/acts/vertivine~opentable-review-scraper/runs?token=$API_TOKEN" \
< -X POST \
< -d @input.json \
< -H 'Content-Type: application/json'