Verify a single email address. PAYGO credits never expire; result is ok, catch_all, unknown, invalid, or disposable.
643 matches
Marketing/MillionVerifier
Verify email
v1.0.0Input
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
{
"type": "object",
"required": [
"email"
],
"additionalProperties": false,
"properties": {
"email": {
"type": "string",
"description": "Email address to verify."
},
"timeout": {
"type": "integer",
"description": "Verification timeout in seconds (default 10)."
}
}
}Output
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
{
"type": "object",
"additionalProperties": true,
"properties": {
"email": {
"type": "string"
},
"result": {
"type": "string",
"description": "ok, catch_all, unknown, invalid, disposable, etc."
},
"resultcode": {
"type": "integer"
},
"quality": {
"type": "string"
},
"free": {
"type": "boolean"
},
"role": {
"type": "boolean"
}
}
}