Disposable email database
Is harakirimail.com a disposable email?
Quick answer
harakirimail.com is operated by Harakiri Mail, 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 Harakiri Mail
Harakiri Mail is a disposable inbox service whose name describes its model: inboxes exist briefly and then self-destruct. Addresses work without registration and are intended for a single confirmation email.
What it’s typically used for
One-shot signups and download-gate confirmations where the user never intends to check the inbox again.
Should you block harakirimail.com in your signup form?
Self-destructing inboxes mean guaranteed future bounces and zero user relationship. Block at signup.
How to detect harakirimail.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@harakirimail.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.