$API_TOKEN=<YOUR_API_TOKEN>
$cat > input.json << 'EOF'
<{
< "items": [
< {
< "title": "Shopify",
< "categoryName": "Software company",
< "website": "https://www.shopify.com",
< "phone": "+1 888-746-7439",
< "url": "https://www.google.com/maps/place/Shopify"
< },
< {
< "name": "HubSpot",
< "email": "press@hubspot.com",
< "phoneNumber": "+1 888-482-7768",
< "link": "https://www.hubspot.com"
< },
< {
< "companyName": "Zoom Video Communications",
< "description": "Video conferencing platform. Contact us at info@zoom.us for enterprise sales.",
< "domain": "zoom.us"
< },
< {
< "title": "Shopify Inc",
< "website": "https://shopify.com",
< "phone": "+1 888-746-7439"
< },
< {
< "title": "Stripe",
< "categoryName": "Payment processor",
< "website": "https://stripe.com",
< "phone": "+1 888-926-2289",
< "emails": [
< "support@stripe.com"
< ]
< }
< ],
< "checks": [
< "dedupe",
< "email",
< "domain",
< "score"
< ]
<}
<EOF
$curl "https://api.apify.com/v2/actors/zinin~lead-list-cleaner/runs?token=$API_TOKEN" \
< -X POST \
< -d @input.json \
< -H 'Content-Type: application/json'