$API_TOKEN=<YOUR_API_TOKEN>
$cat > input.json << 'EOF'
<{
< "currentItems": [
< {
< "releaseId": "p1",
< "company": "Acme Corp",
< "headline": "Acme expands AI platform in Europe",
< "topic": "AI Expansion",
< "geography": "Europe",
< "importanceScore": 95,
< "publishedAt": "2026-09-01"
< },
< {
< "releaseId": "p2",
< "company": "Acme Corp",
< "headline": "Acme launches enterprise agent suite",
< "topic": "AI Agents",
< "geography": "Global",
< "importanceScore": 90,
< "publishedAt": "2026-09-06"
< },
< {
< "releaseId": "p3",
< "company": "Beta Inc",
< "headline": "Beta opens new logistics hub",
< "topic": "Supply Chain",
< "geography": "US",
< "importanceScore": 72,
< "publishedAt": "2026-09-08"
< }
< ],
< "previousItems": [
< {
< "releaseId": "p0",
< "company": "Acme Corp",
< "headline": "Acme updates legacy analytics platform",
< "topic": "Analytics",
< "geography": "US",
< "importanceScore": 60,
< "publishedAt": "2026-06-01"
< },
< {
< "releaseId": "p3",
< "company": "Beta Inc",
< "headline": "Beta expands regional delivery",
< "topic": "Supply Chain",
< "geography": "US",
< "importanceScore": 68,
< "publishedAt": "2026-06-10"
< }
< ]
<}
<EOF
$curl "https://api.apify.com/v2/actors/quanmatrix~press-release-narrative-shift-intelligence/runs?token=$API_TOKEN" \
< -X POST \
< -d @input.json \
< -H 'Content-Type: application/json'