$API_TOKEN=<YOUR_API_TOKEN>
$cat > input.json << 'EOF'
<{
< "currentItems": [
< {
< "brand": "Acme",
< "engine": "Perplexity",
< "query": "best CRM for SMB",
< "citation_url": "https://acme.example/crm",
< "source_domain": "acme.example",
< "citationCount": 3,
< "mentionCount": 1,
< "observedAt": "2026-09-19"
< },
< {
< "brand": "RivalCo",
< "engine": "ChatGPT",
< "query": "best CRM for SMB",
< "citation_url": "https://rival.example/compare",
< "source_domain": "rival.example",
< "citationCount": 5,
< "mentionCount": 1,
< "observedAt": "2026-09-19"
< }
< ],
< "previousItems": [
< {
< "brand": "Acme",
< "engine": "Perplexity",
< "query": "best CRM for SMB",
< "citation_url": "https://acme.example/crm",
< "source_domain": "acme.example",
< "citationCount": 1,
< "mentionCount": 1,
< "observedAt": "2026-09-12"
< }
< ]
<}
<EOF
$curl "https://api.apify.com/v2/actors/quanmatrix~ai-answer-citation-share-of-voice-intelligence/runs?token=$API_TOKEN" \
< -X POST \
< -d @input.json \
< -H 'Content-Type: application/json'