Catch All Email Verification (Gmail & Gsuite Only) avatar
Catch All Email Verification (Gmail & Gsuite Only)
Under maintenance

Pricing

$5.00 / 1,000 verfications

Go to Apify Store
Catch All Email Verification (Gmail & Gsuite Only)

Catch All Email Verification (Gmail & Gsuite Only)

Under maintenance

Verify Catch All Email Address.

Pricing

$5.00 / 1,000 verfications

Rating

0.0

(0)

Developer

Beast Mode

Beast Mode

Maintained by Community

Actor stats

0

Bookmarked

1

Total users

0

Monthly active users

4 days ago

Last modified

Share

Verify if a catchall email address is valid or not. Works only for gmail & gsuite hosted email address.

Input

The Actor accepts a JSON input object with the following properties:

  • email (String, Required): The email address you want to verify.

Example Input:

{
"email": "example@gmail.com"
}

Output

The Actor pushes a JSON object to the default dataset with the verification results.

Output Fields:

  • valid (Boolean): true if the account exists, false otherwise. null when email is not gmail/gsuite
  • status (String): The detailed result of the verification. Possible values:
    • EXISTS: The account was successfully found.
    • DOES_NOT_EXIST: Google explicitly stated the account could not be found.
    • NOT_GMAIL_GSUITE: The domain does not have Google MX records.
    • BLOCKED: The verification was blocked.
    • ERROR: An unexpected error occurred during processing.
  • email (String): The email address that was verified.
  • error (String, Optional): Error message if status is ERROR.

Example Output:

{
"valid": true,
"email": "example@gmail.com",
"status": "EXISTS"
}