$API_TOKEN=<YOUR_API_TOKEN>
$cat > input.json << 'EOF'
<{
< "prospects": [
< {
< "name": "Sarah Connor",
< "title": "VP of Engineering",
< "company": "CloudScale Data",
< "website": "https://cloudscaledata.com",
< "industry": "SaaS & Cloud",
< "intent_score": 85,
< "referral_tier": "strong",
< "signals": [
< "Series B Funding",
< "Hiring 10+ Engineers"
< ]
< },
< {
< "name": "Alex Vance",
< "title": "Head of Product",
< "company": "Finova Capital",
< "website": "https://finovacapital.com",
< "industry": "Fintech",
< "intent_score": 75,
< "referral_tier": "moderate",
< "signals": [
< "New Payment Gateway Launch"
< ]
< }
< ]
<}
<EOF
$curl "https://api.apify.com/v2/actors/eternallabs~ai-cold-email-sales-outreach-writer-laya-jev-ai/runs?token=$API_TOKEN" \
< -X POST \
< -d @input.json \
< -H 'Content-Type: application/json'