$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,
< "maxRequests": 12000,
< "maxSourceBytes": 1000000000,
< "maxRuntimeSecs": 3600,
< "maxArchiveCompressedBytes": 75000000,
< "maxArchiveInflatedBytes": 350000000,
< "maxArchiveEntryBytes": 200000000,
< "maxArchiveEntries": 8,
< "maxArchiveExpansionRatio": 25,
< "maxParseMemoryBytes": 600000000
<}
<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'