$API_TOKEN=<YOUR_API_TOKEN>
$cat > input.json << 'EOF'
<{
< "currentItems": [
< {
< "accession": "D1",
< "issuer": "Acme Labs",
< "industry": "Software",
< "offeringAmount": 12000000,
< "filingDate": "2026-09-01"
< },
< {
< "accession": "D2",
< "issuer": "Acme Labs",
< "industry": "Software",
< "offeringAmount": 5000000,
< "filingDate": "2026-09-08"
< },
< {
< "accession": "D3",
< "issuer": "Beta Bio",
< "industry": "Biotech",
< "offeringAmount": 20000000,
< "filingDate": "2026-09-07"
< }
< ],
< "previousItems": [
< {
< "accession": "P1",
< "issuer": "Acme Labs",
< "industry": "Software",
< "offeringAmount": 3000000,
< "filingDate": "2026-06-01"
< }
< ]
<}
<EOF
$curl "https://api.apify.com/v2/actors/quanmatrix~form-d-fundraising-velocity-intelligence/runs?token=$API_TOKEN" \
< -X POST \
< -d @input.json \
< -H 'Content-Type: application/json'