# Bulk Email Validation Service

**Use case:** 

Validate email addresses in bulk to identify invalid or risky addresses. Improve data quality and email deliverability with accurate results.

## Input

```json
{
  "emails": [
    "ahmed@scravity.com",
    "jakub@apify.com",
    "hello@anthropic.com"
  ]
}
```

## Output

```json
{
  "email": {
    "label": "Email address",
    "format": "string"
  },
  "domain": {
    "label": "Domain",
    "format": "string"
  },
  "provider": {
    "label": "Email provider",
    "format": "string"
  },
  "deliverable": {
    "label": "Deliverable",
    "format": "boolean"
  },
  "mx": {
    "label": "MX record exists",
    "format": "boolean"
  },
  "role": {
    "label": "Role-based",
    "format": "boolean"
  },
  "catchall": {
    "label": "Catch-all",
    "format": "boolean"
  },
  "disposable": {
    "label": "Disposable",
    "format": "boolean"
  },
  "privacy": {
    "label": "Privacy protected",
    "format": "boolean"
  }
}
```

## About this Actor

This example demonstrates how to use [Fast Email Validator](https://apify.com/dxbear/fast-email-validator) with a specific input configuration. Visit the [Actor detail page](https://apify.com/dxbear/fast-email-validator) to learn more, explore other use cases, and run it yourself.