$API_TOKEN=<YOUR_API_TOKEN>
$cat > input.json << 'EOF'
<{
< "schemaVersion": "1.0",
< "rows": [
< {
< "evidenceId": "evidence-001",
< "brandName": "Northstar Coffee",
< "eventType": "price_change",
< "observedAt": "2026-07-31T09:30:00Z",
< "sourceName": "Buyer newsroom note",
< "sourceUrl": "https://example.com/northstar-price-note",
< "excerpt": "The buyer-supplied note says the seasonal blend price changed on July 31."
< },
< {
< "evidenceId": "evidence-002",
< "brandName": "Northstar Coffee",
< "eventType": "product_launch",
< "observedAt": "2026-08-01T12:00:00Z",
< "sourceName": "Buyer product page",
< "sourceUrl": "https://example.com/northstar-seasonal",
< "excerpt": "The buyer-supplied excerpt describes a seasonal blend launch for August."
< },
< {
< "evidenceId": "evidence-003",
< "brandName": "Harbor Supply",
< "eventType": "campaign",
< "observedAt": "2026-08-02T15:45:00Z",
< "sourceName": "Buyer campaign brief",
< "sourceUrl": "https://example.com/harbor-campaign",
< "excerpt": "The buyer-supplied brief names a back-to-school campaign and its stated launch date."
< }
< ]
<}
<EOF
$curl "https://api.apify.com/v2/actors/zinin~us-brand-evidence-citation-table/runs?token=$API_TOKEN" \
< -X POST \
< -d @input.json \
< -H 'Content-Type: application/json'