# Verify a bulk email list for deliverability

**Use case:** 

Verify emails in bulk - syntax, MX, disposable & role detection with a deliverability score. Clean cold-email lists. No API key. CSV/Excel.

## Input

```json
{
  "emails": [
    "john@apify.com",
    "info@stripe.com",
    "noreply@gmail.com",
    "test@mailinator.com"
  ],
  "concurrency": 20,
  "dedupe": true,
  "includeInvalid": true
}
```

## Output

```json
{
  "email": {
    "label": "Email",
    "format": "text"
  },
  "status": {
    "label": "Status",
    "format": "text"
  },
  "score": {
    "label": "Score",
    "format": "number"
  },
  "reason": {
    "label": "Reason",
    "format": "text"
  },
  "domain": {
    "label": "Domain",
    "format": "text"
  },
  "mx_found": {
    "label": "MX",
    "format": "boolean"
  },
  "is_disposable": {
    "label": "Disposable",
    "format": "boolean"
  },
  "is_role": {
    "label": "Role",
    "format": "boolean"
  },
  "is_free": {
    "label": "Free",
    "format": "boolean"
  }
}
```

## About this Actor

This example demonstrates how to use [Bulk Email Verifier - Deliverability Score, No API Key](https://apify.com/flash_scraper/email-verifier) with a specific input configuration. Visit the [Actor detail page](https://apify.com/flash_scraper/email-verifier) to learn more, explore other use cases, and run it yourself.