status and substatus for every verified address, along with additional flags that give you more detail about the nature of the mailbox. Knowing how to act on these values is the difference between a clean, high-performing list and one that damages your sender reputation. This guide walks you through the decision-making process for the most common workflows.
Understanding status and substatus
Every result has two primary fields:status— the top-level deliverability verdict. Use this for your primary decision.substatus— the specific reason behind the status. Use this for finer-grained filtering or to log more detail about why an address was flagged.
explanation field contains a plain-English description of the result — useful for logging, debugging, or displaying context in an internal tool.
Status values
Substatus values
Recommended actions by status
- safe
- risky
- invalid
- unknown
The address is deliverable. Include it in your outreach or workflow without restriction.Action: Proceed normally.Exception: A
safe address with is_role_account: true (e.g., info@company.com) may technically be deliverable but receive low engagement. Consider filtering role accounts for cold outreach.Use-case guidance
Different workflows call for different thresholds. Use the tabs below to find guidance for your situation.- Cold outreach
- Data enrichment / analytics
- Point-of-entry validation
Cold email campaigns are sensitive to bounce rates and spam complaints. A high bounce rate damages your sending domain’s reputation and can get your account suspended by your email service provider.Recommended approach: Only send to
safe addresses.- Include:
safe - Exclude:
risky,invalid,unknown
risky addresses with a catch_all substatus — these are common on corporate domains and often deliverable. Monitor bounce rates closely if you do this.Additional filters for cold outreach:- Exclude
is_role_account: true— role accounts rarely engage with cold email and often route to a shared inbox or spam filter. - Consider excluding
is_free: trueif you’re targeting businesses — free addresses may indicate personal rather than professional contacts.
Using the additional flags
Each result includes three boolean flags that give you more detail about the nature of the address. These are independent ofstatus and can be used to apply additional filters on top of the primary deliverability verdict.
These flags may be
null when OrbiSearch cannot determine the value with confidence — for example, when the domain is private or not well-known. Treat null the same as false unless you have a reason to be strict.What to do with unknown results
unknown results are almost always temporary. They typically occur because:
- The destination mail server was slow or temporarily unreachable (
smtp_unreachable,timeout) - The server applied greylisting (
greylisted) — a technique where the server temporarily rejects unknown senders and expects a retry - The verification was blocked at the network level (
verification_blocked,ip_blocked)
- Wait 24 hours before retrying — transient issues often resolve within 24 hours.
- Re-verify using
GET /v1/verifyor by resubmitting a bulk job containing only theunknownaddresses. - If an address returns
unknownconsistently across multiple retries over 24+ hours, treat it asriskyfor outreach purposes.
partial_complete_retrying status, wait for it to transition to complete before retrieving results — the final pass may resolve some unknown entries.
What to do when a safe email bounces
Asafe result means OrbiSearch confirmed the mailbox was accepting mail at the time of verification. However, mailboxes can be deleted or disabled after verification, or a sending issue may exist on your side.
If you receive a bounce for an address that was marked safe:
- Check the bounce type. A hard bounce (permanent failure) on a previously
safeaddress may mean the mailbox was closed after verification. A soft bounce (temporary failure) may be unrelated to deliverability. - Re-verify the address. Run it through
GET /v1/verifyagain to get a fresh result. If it now returnsinvalid, remove it from your list. - Check your sending setup. Bounces can also result from issues with your sending domain’s SPF, DKIM, or DMARC configuration — not just the recipient address.
- Contact support if you’re seeing a pattern of bounces on
safeaddresses that re-verify assafe. This may indicate a data issue that OrbiSearch support can investigate.