What Is an Email Risk Score?

Email Risk·August 26, 2026·1 min read

An email risk score turns dozens of signals into one number you can act on. Learn what goes into it, how to read the level and signals, and how to use it at signup.

An email risk score condenses everything known about an address, deliverability, domain reputation, disposable status, alias tricks, history, into a single value you can act on. Instead of eyeballing a dozen fields, you get one number and a level, so your signup logic stays simple.

What goes into the score

A good risk score weighs many features, not one. The big contributors:

  • Deliverability, an undeliverable mailbox at signup is a strong negative.
  • Disposable / catch-all, throwaway and unconfirmable domains raise risk.
  • Domain age & reputation, young or low-reputation domains score worse.
  • Alias & gibberish signals, plus/dot tricks and random prefixes suggest abuse.
  • History, addresses seen before with good behavior score lower.

How to read it

Most APIs return a numeric or leveled score plus the named signals behind it. RiskUnified returns a risk.level of low, medium or high along with the exact signals that drove it, so you can log a clear reason for every decision instead of trusting a black box.

response
{
  "email": "signup@tempmail-vault.io",
  "risk": {
    "level": "high",
    "signals": ["disposable_domain", "email_not_deliverable"]
  }
}

Using it at signup

Map the level to graduated friction so real users pass and only risky ones get stopped:

  • Low, allow normally.
  • Medium, allow but add verification or hold rewards until later.
  • High, block or route to review on high-value actions.
Tip: a score is only as useful as the signals behind it. Prefer an API that shows its reasoning so you can tune thresholds to your own risk tolerance.

Frequently asked questions

What is an email risk score?

A single value that summarizes many signals about an address, deliverability, domain reputation, disposable status, alias tricks and history, so you can approve, review or block without reading every field.

What makes an email high risk?

Common drivers are an undeliverable mailbox, a disposable or catch-all domain, a very young or low-reputation domain, and alias or gibberish signals, especially in combination.

How should I use the score?

Map the risk level to graduated friction: allow low risk, add verification for medium, and block or review high risk on high-value actions like trials and payouts.

Try RiskUnified free

Score email, phone and IP risk from one API. 100 free credits every month, no credit card required.

Keep reading

What Is an Email Risk Score? | RiskUnified