Disposable email database
Is spamgourmet.com a disposable email?
Quick answer
spamgourmet.com is operated by Spamgourmet, 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 Spamgourmet
Spamgourmet is one of the original alias-based disposable services. Users register a master account and then create disposable forwarding addresses on the fly using a `word.count.user@spamgourmet.com` syntax.
Operating since 2000.
What it’s typically used for
Privacy-conscious users who want disposable per-service email aliases that forward to their real inbox for a fixed number of messages.
Should you block spamgourmet.com in your signup form?
Spamgourmet addresses are explicitly disposable, even when forwarding works. Block at signup unless your product audience is dominated by privacy-first power users.
How to detect spamgourmet.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@spamgourmet.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.