Hunter · Schema
EmailVerifierResult
Contact DiscoveryEmailEmail VerificationLead GenerationProspectingSales Intelligence
Properties
| Name | Type | Description |
|---|---|---|
| status | string | The verification status of the email address. |
| result | string | Deprecated. The deliverability result. |
| score | integer | Deliverability score. |
| string | The email address that was verified. | |
| regexp | boolean | Whether the email matches a valid format. |
| gibberish | boolean | Whether the email appears to be gibberish. |
| disposable | boolean | Whether the email uses a disposable provider. |
| webmail | boolean | Whether the email is a webmail address. |
| mx_records | boolean | Whether MX records exist for the domain. |
| smtp_server | boolean | Whether an SMTP server was found. |
| smtp_check | boolean | Whether the SMTP check passed. |
| accept_all | boolean | Whether the mail server accepts all addresses. |
| block | boolean | Whether the email is blocked. |
| sources | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "EmailVerifierResult",
"type": "object",
"properties": {
"status": {
"type": "string",
"description": "The verification status of the email address."
},
"result": {
"type": "string",
"description": "Deprecated. The deliverability result."
},
"score": {
"type": "integer",
"description": "Deliverability score."
},
"email": {
"type": "string",
"description": "The email address that was verified."
},
"regexp": {
"type": "boolean",
"description": "Whether the email matches a valid format."
},
"gibberish": {
"type": "boolean",
"description": "Whether the email appears to be gibberish."
},
"disposable": {
"type": "boolean",
"description": "Whether the email uses a disposable provider."
},
"webmail": {
"type": "boolean",
"description": "Whether the email is a webmail address."
},
"mx_records": {
"type": "boolean",
"description": "Whether MX records exist for the domain."
},
"smtp_server": {
"type": "boolean",
"description": "Whether an SMTP server was found."
},
"smtp_check": {
"type": "boolean",
"description": "Whether the SMTP check passed."
},
"accept_all": {
"type": "boolean",
"description": "Whether the mail server accepts all addresses."
},
"block": {
"type": "boolean",
"description": "Whether the email is blocked."
},
"sources": {
"type": "array"
}
}
}