# Verify Press & Media Email Addresses

**Use case:** 

Validate press and media contact emails in bulk. Check deliverability and remove invalid addresses before outreach. Export to JSON, CSV, or Excel.

## Input

```json
{
  "emails": [
    "press@tesla.com",
    "press@spotify.com",
    "press@airbnb.com",
    "press@uber.com",
    "press@shopify.com",
    "press@netflix.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.