Skip to content

Disposable email

Detects whether an email address or domain belongs to a known disposable / temporary email provider (Mailinator, Guerrilla Mail, 10MinuteMail, etc.).

Query paramTypeDescription
emailstringFull email address. Provide this or domain.
domainstringBare domain. Provide this or email.
Terminal window
curl "https://api.fender.ai/v1/disposable?email=test@mailinator.com"
{
"input": "test@mailinator.com",
"domain": "mailinator.com",
"disposable": true,
"matched": "mailinator.com",
"reason": "domain_on_blocklist"
}
FieldTypeDescription
disposablebooleanWhether the domain is a known throwaway provider.
domainstring | nullThe normalized domain checked.
matchedstring | nullThe blocklist entry that matched.
reasonstringdomain_on_blocklist, not_on_blocklist, invalid_email, …

Subdomains are resolved to their parent (e.g. inbox.mailinator.commailinator.com).

Check up to 100 items in one request.

Terminal window
curl -X POST "https://api.fender.ai/v1/disposable/batch" \
-H "Content-Type: application/json" \
-d '{"emails":["a@gmail.com","b@mailinator.com"]}'

Anonymous requests are rate limited to 30/min. No key required.

Result will appear here…