$API_TOKEN=<YOUR_API_TOKEN>
$cat > input.json << 'EOF'
<{
< "workflow": "baseline",
< "outputMode": "raw",
< "discovery": "market",
< "daysBack": 30,
< "amendmentFilter": "all",
< "issuerScope": "all",
< "nonAccreditedInvestor": "any",
< "minOfferingAmount": 0,
< "minAmountSold": 0,
< "minInvestment": 0,
< "minInvestors": 0,
< "sortBy": "newest",
< "maxResults": 100,
< "maxTrackedAccessions": 1000,
< "maxFilingsScanned": 5000,
< "includeUnchanged": false,
< "maxBuyerChargeUsd": 5,
< "maxRuntimeSecs": 3600
<}
<EOF
$curl "https://api.apify.com/v2/actors/luminar~sec-form-d-funding-monitor/runs?token=$API_TOKEN" \
< -X POST \
< -d @input.json \
< -H 'Content-Type: application/json'