$API_TOKEN=<YOUR_API_TOKEN>
$cat > input.json << 'EOF'
<{
< "datasetIds": [],
< "rows": [
< {
< "email": "support@apify.com",
< "company_domain": "apify.com"
< },
< {
< "email": "support@stripe.com",
< "company_domain": "stripe.com"
< },
< {
< "email": "support@shopify.com",
< "company_domain": "shopify.com"
< },
< {
< "email": "support@dropbox.com",
< "company_domain": "dropbox.com"
< },
< {
< "email": "security@github.com",
< "company_domain": "github.com"
< },
< {
< "email": "security@mozilla.org",
< "company_domain": "mozilla.org"
< },
< {
< "email": "press@openai.com",
< "company_domain": "openai.com"
< },
< {
< "email": "support@notion.so",
< "company_domain": "notion.so"
< },
< {
< "email": "support@slack.com",
< "company_domain": "slack.com"
< },
< {
< "email": "support@atlassian.com",
< "company_domain": "atlassian.com"
< }
< ],
< "emailFields": [],
< "domainFields": [],
< "nameFields": [],
< "companyFields": [],
< "signals": [],
< "websitePaths": [
< "/about",
< "/team"
< ],
< "maxRows": [
< 10000
< ],
< "timeoutMs": [
< 7000
< ],
< "retryCounts": [
< 2
< ],
< "dedupKeys": [
< "email",
< "companyDomain"
< ],
< "disclaimerAck": [
< "accepted"
< ]
<}
<EOF
$curl "https://api.apify.com/v2/actors/ntriqpro~b2b-lead-list-verifier/runs?token=$API_TOKEN" \
< -X POST \
< -d @input.json \
< -H 'Content-Type: application/json'