$API_TOKEN=<YOUR_API_TOKEN>
$cat > input.json << 'EOF'
<{
< "scrapeMode": "scrape",
< "inputMode": "REMOTE",
< "outputMode": "jobs",
< "urls": [
< {
< "url": "https://wellfound.com/remote"
< },
< {
< "url": "https://wellfound.com/location/new-york"
< }
< ],
< "locations": [
< "New York",
< "San Francisco",
< "London"
< ],
< "pageLimit": 1,
< "maxItems": 80,
< "onlyRemoteJobs": false,
< "includeChangedJobs": true,
< "includeRemovedJobs": true,
< "resetMonitorState": false,
< "monitorStateStoreName": "wellfound-jobs-monitor-state",
< "maxRetries": 3,
< "proxyConfiguration": {
< "useApifyProxy": false
< }
<}
<EOF
$curl "https://api.apify.com/v2/acts/trakk~wellfound-jobs-scraper/runs?token=$API_TOKEN" \
< -X POST \
< -d @input.json \
< -H 'Content-Type: application/json'