# Verify Business Contact Email Addresses

**Use case:** 

Validate business contact emails like hello@, info@, and support@ in bulk. Check deliverability and clean your list before you send. Export to JSON, CSV, Excel.

## Input

```json
{
  "emails": [
    "hello@stripe.com",
    "info@adobe.com",
    "support@paypal.com",
    "info@mailchimp.com",
    "contact@squarespace.com",
    "hello@notion.so"
  ]
}
```

## 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.