$API_TOKEN=<YOUR_API_TOKEN>
$cat > input.json << 'EOF'
<{
< "searchQueries": [],
< "slugs": [],
< "conditionIds": [],
< "includeTags": [],
< "excludeTags": [],
< "minLiquidity": 1000,
< "minVolume24h": 5000,
< "windowMinutes": 60,
< "minPriceMovePoints": 0.03,
< "minPriceMovePct": 15,
< "minVolumeSpikePct": 25,
< "minVolumeSpikeAbs": 5000,
< "minPriceForSignal": 0.05,
< "repeatSuppressMinutes": 30,
< "newMarketMaxAgeHours": 24,
< "newMarketMinLiquidity": 100,
< "maxMarkets": 300,
< "maxSignalsPerEvent": 2,
< "maxSignalsPerRun": 5,
< "signalTypes": [
< "price_move",
< "volume_spike"
< ],
< "stateKey": ""
<}
<EOF
$curl "https://api.apify.com/v2/actors/dmitrii_shifo~polymarket-monitor/runs?token=$API_TOKEN" \
< -X POST \
< -d @input.json \
< -H 'Content-Type: application/json'