# Bulk Verify Emails from a Google Sheet — Validation

**Use case:** 

Point the Actor at a shared Google Sheet and bulk-verify the email column. Get a verified, deliverability-scored list
  back — no downloads, no setup.

## Input

```json
{
  "emails": [
    "deliverable@example.com",
    "risky@example.com",
    "undeliverable@example.com"
  ],
  "fileUrl": "https://docs.google.com/spreadsheets/d/1uyEeLxO2rVFCZd1e2jhEl7ZXq1U-tY0e1j6qAnT14Ys/edit?usp=sharing",
  "emailColumn": "Email"
}
```

## Output

```json
{
  "email": {
    "label": "Email",
    "format": "string"
  },
  "status": {
    "label": "Status",
    "format": "string"
  },
  "overall_score": {
    "label": "Quality score",
    "format": "integer"
  },
  "is_safe_to_send": {
    "label": "Safe to send",
    "format": "boolean"
  },
  "is_deliverable": {
    "label": "Deliverable",
    "format": "boolean"
  },
  "is_valid_syntax": {
    "label": "Valid syntax",
    "format": "boolean"
  },
  "is_disabled": {
    "label": "Disabled",
    "format": "boolean"
  },
  "is_disposable": {
    "label": "Disposable",
    "format": "boolean"
  },
  "is_role_account": {
    "label": "Role account",
    "format": "boolean"
  },
  "is_catch_all": {
    "label": "Catch-all",
    "format": "boolean"
  },
  "has_inbox_full": {
    "label": "Inbox full",
    "format": "boolean"
  },
  "is_spamtrap": {
    "label": "Spam trap",
    "format": "boolean"
  },
  "is_free_email": {
    "label": "Free provider",
    "format": "boolean"
  },
  "can_connect_smtp": {
    "label": "SMTP reachable",
    "format": "boolean"
  },
  "mx_accepts_mail": {
    "label": "MX accepts mail",
    "format": "boolean"
  },
  "username": {
    "label": "Username",
    "format": "string"
  },
  "domain": {
    "label": "Domain",
    "format": "string"
  },
  "mx_records": {
    "label": "MX records",
    "format": "array"
  }
}
```

## About this Actor

This example demonstrates how to use [Bulk Email Verifier & Validator | Email Checker API & MCP](https://apify.com/zenisbit.com/bulk-email-verifier) with a specific input configuration. Visit the [Actor detail page](https://apify.com/zenisbit.com/bulk-email-verifier) to learn more, explore other use cases, and run it yourself.