$API_TOKEN=<YOUR_API_TOKEN>
$cat > input.json << 'EOF'
<{
< "workflow": "CURRENT_PROFILE",
< "usdotNumbers": [
< "21800"
< ],
< "maxResults": 1,
< "maxBuyerChargeUsd": 0.25,
< "changeScope": "WATCHLIST",
< "maxEvents": 10,
< "maxStateTargets": 1000,
< "daysBack": 30,
< "activeOnly": false,
< "hazmatOnly": false,
< "minPowerUnits": 0,
< "maxPowerUnits": 1000000,
< "includeAuthority": true,
< "includeInsurance": true,
< "includeSafetySummary": true,
< "includeSafetyEvents": false,
< "includeSmsMeasures": true,
< "includePendingAuthorities": false,
< "safetyLookbackMonths": 24,
< "outputProfile": "STANDARD",
< "maxSourceRequests": 30000,
< "maxSourceBytes": 8000000000,
< "maxRuntimeSecs": 3300,
< "maxTemporaryDiskBytes": 8000000000,
< "maxEstimatedPlatformUsd": 3,
< "maxSourceRowsPerDataset": 15000000,
< "maxSocrataPagesPerDataset": 2000
<}
<EOF
$curl "https://api.apify.com/v2/actors/luminar~fmcsa-carrier-monitor/runs?token=$API_TOKEN" \
< -X POST \
< -d @input.json \
< -H 'Content-Type: application/json'