verify_email
Validate email addresses for validity using the 2ip.me API. Provides a JSON response indicating whether the email exists without requiring an API key.
Instructions
Verify an email address using the 2ip.me API.
Args:
email (str): The email address to verify
Returns:
str: "true" or "false" indicating if the email is valid
Input Schema
Name | Required | Description | Default |
---|---|---|---|
Yes |
Input Schema (JSON Schema)
{
"properties": {
"email": {
"title": "Email",
"type": "string"
}
},
"required": [
"email"
],
"title": "verify_emailArguments",
"type": "object"
}