Disposable email database

Is minuteinbox.com a disposable email?

Yes — minuteinbox.com is a disposable / temporary email service.

Quick answer

minuteinbox.com is operated by MinuteInbox, 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 MinuteInbox

MinuteInbox is a timer-based disposable inbox in the 10MinuteMail mold: visitors get an address with a countdown clock and can extend the timer if they need the inbox a little longer. When the clock runs out, the address is gone.

What it’s typically used for

One-time email confirmations where the user wants the inbox to disappear immediately afterward.

Should you block minuteinbox.com in your signup form?

The address is unreachable within minutes of signup, so there is no deliverability value and no ongoing user relationship. Block at signup.

How to detect minuteinbox.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@minuteinbox.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.