$API_TOKEN=<YOUR_API_TOKEN>
$cat > input.json << 'EOF'
<{
< "leads": [
< {
< "name": "Sarah Chen",
< "email": "sarah.chen@acmecorp.com",
< "phone": "+1-415-555-0182",
< "company": "Acme Corp",
< "title": "VP of Sales",
< "domain": "acmecorp.com"
< },
< {
< "name": "Bob Smith",
< "email": "bob@mailinator.com",
< "phone": "5550199",
< "company": "Unknown Co",
< "title": "",
< "domain": ""
< },
< {
< "name": "Maria Lopez",
< "email": "m.lopez@betasoft.io",
< "phone": "+44 20 7946 0958",
< "company": "BetaSoft",
< "title": "CTO",
< "domain": "betasoft.io"
< }
< ]
<}
<EOF
$curl "https://api.apify.com/v2/acts/ryanclinton~enrichment-quality-auditor/runs?token=$API_TOKEN" \
< -X POST \
< -d @input.json \
< -H 'Content-Type: application/json'