Disposable email database
Is moakt.com a disposable email?
Quick answer
moakt.com is operated by Moakt, 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 Moakt
Moakt is a disposable email service that lets users create a temporary address with a custom prefix. Addresses last for an hour by default; a paid tier offers longer-lived inboxes.
What it’s typically used for
Signup confirmations and one-time verifications. The custom-prefix feature makes Moakt addresses occasionally indistinguishable from real-looking ones at first glance.
Should you block moakt.com in your signup form?
Even with a custom prefix, the @moakt.com suffix is a clear disposable indicator. Block at signup.
How to detect moakt.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@moakt.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.