# Verify B2B Sales Email Addresses

**Use case:** 

Validate B2B sales contact emails in bulk. Check deliverability and clean undeliverable leads from your CRM before outreach. Export to JSON, CSV, or Excel.

## Input

```json
{
  "emails": [
    "sales@datadoghq.com",
    "sales@salesforce.com",
    "sales@hubspot.com",
    "sales@oracle.com",
    "sales@zendesk.com",
    "sales@twilio.com"
  ]
}
```

## Output

```json
{
  "input_email": {
    "label": "Input Email",
    "format": "string"
  },
  "email": {
    "label": "Email",
    "format": "string"
  },
  "status": {
    "label": "Status",
    "format": "string"
  },
  "is_valid": {
    "label": "Valid",
    "format": "boolean"
  },
  "provider": {
    "label": "Provider",
    "format": "string"
  },
  "checked": {
    "label": "Checked",
    "format": "boolean"
  }
}
```

## About this Actor

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