# Bulk Email Verifier for Lead Lists

**Use case:** 

Verify lead-list email addresses with syntax, MX, provider, deliverability, catch-all, disposable, and risk checks.

## Input

```json
{
  "emails": [
    "hello@stripe.com",
    "support@shopify.com",
    "invalid@example.invalid"
  ],
  "contacts": [
    {
      "firstName": "John",
      "lastName": "Doe",
      "domain": "google.com"
    }
  ],
  "verificationLevel": "mx",
  "detectCatchAll": true,
  "maxPatternsToTest": 8,
  "checkDeliverability": true,
  "checkWebsite": false,
  "checkGitHub": false,
  "checkGravatar": false
}
```

## Output

```json
{
  "email": {
    "label": "Email",
    "format": "text"
  },
  "confidenceScore": {
    "label": "Confidence",
    "format": "number"
  },
  "isVerified": {
    "label": "Verified",
    "format": "boolean"
  },
  "provider": {
    "label": "Provider",
    "format": "text"
  },
  "verificationMethod": {
    "label": "Method",
    "format": "text"
  },
  "isCatchAll": {
    "label": "Catch-All",
    "format": "boolean"
  },
  "isDisposable": {
    "label": "Disposable",
    "format": "boolean"
  },
  "deliverabilityGrade": {
    "label": "Deliverability",
    "format": "text"
  },
  "deliverabilityScore": {
    "label": "Deliv. Score",
    "format": "number"
  }
}
```

## About this Actor

This example demonstrates how to use [Email Verifier, Finder & Deliverability Checker](https://apify.com/automation-lab/email-enrichment) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/email-enrichment) to learn more, explore other use cases, and run it yourself.