Verify a single email address in real-time. Returns status, substatus, and enrichment data immediately. Costs 0.2 credits; cached results are free for 24 hours.
curl --request GET \
--url https://api.orbisearch.com/v1/verify \
--header 'X-API-Key: <api-key>'{
"email": "[email protected]",
"status": "safe",
"substatus": "deliverable",
"explanation": "Safe to email. The mailbox exists and is deliverable.",
"email_provider": "Google Workspace",
"is_disposable": false,
"is_role_account": false,
"is_free": false
}status, a detailed substatus, a plain-English explanation, and enrichment flags such as is_disposable and is_role_account.
See the response schema for the meaning of each status and substatus value.
429 Too Many Requests response. See errors for how to handle rate limit responses.API key for authentication
Timeout in seconds (3-90).
3 <= x <= 9070
Successful Response
Verification result for a single email address.
The email address that was verified.
Overall verification status: safe (deliverable), risky (uncertain), invalid (undeliverable), unknown (verification failed).
safe, risky, invalid, unknown ^(safe|risky|invalid|unknown)$"risky"
Plain-English explanation of the verification result.
"Risky to email. The mailbox may or may not exist, as the domain accepts all mail. Send with caution."
Email service provider (Google Workspace, Gmail, Microsoft Outlook, etc.).
"Google Workspace"
Specific reason for the status (e.g., catch_all, disposable, role_account, invalid_syntax).
"catch_all"
True if this is a temporary/disposable email service, false if not, null if unknown.
false
True if this is a generic role-based email (info@, support@, etc.), false if not, null if unknown.
true
True if this is from a free email provider (gmail.com, yahoo.com, etc.), false if not, null if unknown.
false
curl --request GET \
--url https://api.orbisearch.com/v1/verify \
--header 'X-API-Key: <api-key>'{
"email": "[email protected]",
"status": "safe",
"substatus": "deliverable",
"explanation": "Safe to email. The mailbox exists and is deliverable.",
"email_provider": "Google Workspace",
"is_disposable": false,
"is_role_account": false,
"is_free": false
}