Catch All Email Verification (Gmail & Gsuite Only)
Pricing
$5.00 / 1,000 verfications
Go to Apify Store
Under maintenance
Catch All Email Verification (Gmail & Gsuite Only)
Verify Catch All Email Address.
Pricing
$5.00 / 1,000 verfications
Rating
0.0
(0)
Developer
Beast Mode
Maintained by Community
Actor stats
0
Bookmarked
1
Total users
0
Monthly active users
4 days ago
Last modified
Categories
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):trueif the account exists,falseotherwise.nullwhen email is not gmail/gsuitestatus(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 ifstatusisERROR.
Example Output:
{"valid": true,"email": "example@gmail.com","status": "EXISTS"}