Disposable email database
Is anonaddy.com a disposable email?
Quick answer
anonaddy.com is operated by AnonAddy, a disposable / temporary email service. Signups using this domain are almost always throwaway. Block at signup if your product depends on long-term email reachability.
About AnonAddy
AnonAddy (now operating as addy.io) is an open-source email-aliasing service designed for privacy. Users create unlimited per-service aliases that forward to a real inbox, with the ability to deactivate any alias if it starts receiving spam.
What it’s typically used for
Privacy-focused users who want to avoid sharing their real email address with every service they sign up for. Particularly popular with developers.
Other domains operated by AnonAddy
The same service runs additional alias domains. Block these alongside the main domain — otherwise users will simply switch to an alias to bypass your filter.
- addy.io
- anonaddy.me
Should you block anonaddy.com in your signup form?
More nuanced than pure throwaway services — these users do want long-term contact. Consider risk-tiering rather than hard-blocking unless your product has strict identity requirements.
How to detect anonaddy.com in code
You don’t need to maintain a hand-rolled list. Vouchley returns a disposable flag (and the rest of the signup score) on every check:
curl -X POST https://api.vouchley.getrevlio.com/v1/verify \
-H "Authorization: Bearer vch_live_..." \
-H "Content-Type: application/json" \
-d '{
"email": "anyone@anonaddy.com",
"ip_address": "203.0.113.10"
}'
# Response:
# {
# "score": 12,
# "recommendation": "block",
# "email": { "disposable": true, "valid": true },
# ...
# }Block disposable signups in one API call.
Vouchley keeps the disposable list current — including alias domains and new providers — so you never have to maintain it yourself.