$API_TOKEN=<YOUR_API_TOKEN>
$cat > input.json << 'EOF'
<{
< "schemaVersion": "1.0",
< "snapshotAt": "2026-08-05T00:00:00Z",
< "title": "Nike US signal brief",
< "rows": [
< {
< "eventId": "nike-launch-001",
< "severity": "HIGH",
< "sourceName": "Brand newsroom",
< "summary": "New running product announced",
< "status": "active"
< },
< {
< "eventId": "nike-price-001",
< "severity": "MEDIUM",
< "sourceName": "Retail monitor",
< "summary": "List price changed for a tracked SKU",
< "status": "resolved"
< },
< {
< "eventId": "nike-review-001",
< "severity": "LOW",
< "sourceName": "Retail monitor",
< "summary": "Review volume moved above the watch threshold",
< "status": "active"
< }
< ]
<}
<EOF
$curl "https://api.apify.com/v2/actors/zinin~us-brand-signal-brief-composer/runs?token=$API_TOKEN" \
< -X POST \
< -d @input.json \
< -H 'Content-Type: application/json'